coupon.go 645 B

1234567891011121314151617181920212223
  1. package model
  2. // VideoCouponSalaryLog videl coupon salary log.
  3. type VideoCouponSalaryLog struct {
  4. ID int64 `json:"id"`
  5. Mid int64 `json:"mid"`
  6. CouponCount int64 `json:"coupon_count"`
  7. CouponType int8 `json:"coupon_type"`
  8. State int8 `json:"state"`
  9. Type int8 `json:"type"`
  10. ExpireTime int64 `json:"expire_time"`
  11. StartTime int64 `json:"start_time"`
  12. Ver int64 `json:"ver"`
  13. }
  14. // OldSalaryLog def.
  15. type OldSalaryLog struct {
  16. ID int64 `json:"id"`
  17. Mid int64 `json:"mid"`
  18. CouponCount int64 `json:"coupon_count"`
  19. State int8 `json:"state"`
  20. Type int8 `json:"type"`
  21. }