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.
 
 
 

17 lines
247 B

package model
// coupon state.
const (
CouponNotUsed = iota
CouponInUse
CouponUsed
CouponExpire
)
// coupon remark
const (
CouponUseRemark = "大会员券消费"
)
// MapProdLlimRenewal .
var MapProdLlimRenewal = map[int8]int8{0: 2, 1: 1}