截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BargainEnum.php 339B

123456789101112131415
  1. <?php
  2. namespace app\common\enum;
  3. class BargainEnum
  4. {
  5. const STATUS_NORMAL = 0;//进行中
  6. const STATUS_SUCCESS = 1;//成功
  7. const STATUS_FAIL = 2;//失败
  8. const STATUS_FINISH = 3;//提前结束
  9. const TO_BE_REVIEWED = 0; //待审核
  10. const AUDIT_PASS = 1; //审核通过
  11. const AUDIT_REFUND = 2; //审核拒绝
  12. }