WechatVideoShopGoodsAuditStatusEnums.php 322 B

1234567891011121314
  1. <?php
  2. namespace addons\WechatVideoShop\common\enums;
  3. class WechatVideoShopGoodsAuditStatusEnums
  4. {
  5. const AUDIT_STATUS_REJECT = 2;
  6. const AUDIT_STATUS_AGREE = 3;
  7. const AUDIT_STATUS_REMARKS = [
  8. self::AUDIT_STATUS_REJECT => '审核拒绝',
  9. self::AUDIT_STATUS_AGREE => '审核通过',
  10. ];
  11. }