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.

22 lines
370 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 $fillable = [
  11. 'status',
  12. 'return_time',
  13. 'update_time'
  14. ];
  15. protected $table = 'ims_system_coupon_user_use';
  16. }