其余文件

This commit is contained in:
2026-04-14 17:46:22 +08:00
parent 294b68fe37
commit 3691f4db22
1343 changed files with 189847 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace app\common\enum;
class BargainEnum
{
const STATUS_NORMAL = 0;//进行中
const STATUS_SUCCESS = 1;//成功
const STATUS_FAIL = 2;//失败
const STATUS_FINISH = 3;//提前结束
const TO_BE_REVIEWED = 0; //待审核
const AUDIT_PASS = 1; //审核通过
const AUDIT_REFUND = 2; //审核拒绝
}