mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
18 lines
247 B
Go
18 lines
247 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// coupon state.
|
||
|
|
const (
|
||
|
|
CouponNotUsed = iota
|
||
|
|
CouponInUse
|
||
|
|
CouponUsed
|
||
|
|
CouponExpire
|
||
|
|
)
|
||
|
|
|
||
|
|
// coupon remark
|
||
|
|
const (
|
||
|
|
CouponUseRemark = "大会员券消费"
|
||
|
|
)
|
||
|
|
|
||
|
|
// MapProdLlimRenewal .
|
||
|
|
var MapProdLlimRenewal = map[int8]int8{0: 2, 1: 1}
|