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.

15 lines
236 B

  1. <?php
  2. namespace App\Model;
  3. class CouponUserUse extends Model
  4. {
  5. /* 状态 */
  6. // 正常使用
  7. const STATE_USE = 1;
  8. // 已退回用户
  9. const STATE_REFUND = 2;
  10. protected $table = 'ims_system_coupon_user_use';
  11. }