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.

16 lines
271 B

  1. <?php
  2. namespace App\Model;
  3. class CouponUserUse extends Model
  4. {
  5. // 正常使用
  6. const COUPON_USE_STATE_USED = 1;
  7. // 退回用户
  8. const COUPON_USE_STATE_CANCEL = 2;
  9. public $timestamps = false;
  10. protected $table = 'ims_system_coupon_user_use';
  11. }