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.

17 lines
284 B

  1. <?php
  2. namespace App\Model;
  3. class CouponUserRec extends Model
  4. {
  5. /* 状态 */
  6. // 未使用
  7. const STATE_UNUSED = 0;
  8. // 使用部分
  9. const STATE_SOME = 1;
  10. // 已用完
  11. const STATE_FINISH = 2;
  12. protected $table = 'ims_system_coupon_user_receive';
  13. }