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.

23 lines
423 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <?php
  2. namespace App\Model;
  3. use App\Model\Model;
  4. class CouponRec extends Model
  5. {
  6. /* 状态 */
  7. // 未使用
  8. const STATE_UNUSED = 0;
  9. // 使用部分
  10. const STATE_SOME = 1;
  11. // 已用完
  12. const STATE_FINISH = 2;
  13. protected $table = 'ims_system_coupon_user_receive';
  14. public function coupon()
  15. {
  16. return $this->hasOne('App\Models\CouponUser','id','system_coupon_user_id');
  17. }
  18. }