coupon.go 247 B

1234567891011121314151617
  1. package model
  2. // coupon state.
  3. const (
  4. CouponNotUsed = iota
  5. CouponInUse
  6. CouponUsed
  7. CouponExpire
  8. )
  9. // coupon remark
  10. const (
  11. CouponUseRemark = "大会员券消费"
  12. )
  13. // MapProdLlimRenewal .
  14. var MapProdLlimRenewal = map[int8]int8{0: 2, 1: 1}