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
1009 B

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // CouponUsers is the golang structure for table coupon_users.
  6. type CouponUsers struct {
  7. Id uint `json:"id" orm:"id" description:""` //
  8. Jwcode int `json:"jwcode" orm:"jwcode" description:""` //
  9. Time int `json:"time" orm:"time" description:"领取时间"` // 领取时间
  10. CouponId int `json:"couponId" orm:"coupon_id" description:"优惠券id"` // 优惠券id
  11. Code string `json:"code" orm:"code" description:""` //
  12. State int `json:"state" orm:"state" description:"0 未使用 1 已使用"` // 0 未使用 1 已使用
  13. Record string `json:"record" orm:"record" description:"武器记录"` // 武器记录
  14. }