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.
42 lines
623 B
42 lines
623 B
package model |
|
|
|
// associate bind state. |
|
const ( |
|
AssociateBindStateNone int32 = iota |
|
AssociateBindStateNotPurchase |
|
AssociateBindStatePurchased |
|
) |
|
|
|
// associate prize type. |
|
const ( |
|
AssociatePrizeTypeCode int8 = iota + 1 |
|
AssociatePrizeTypeEleBag |
|
) |
|
|
|
// associate appid. |
|
const ( |
|
EleAppID = 32 |
|
) |
|
|
|
// month type. |
|
const ( |
|
UnionOneMonth int32 = 1 |
|
UnionOneYear int32 = 12 |
|
) |
|
|
|
// ele vip type |
|
const ( |
|
EleMonthVip int32 = 2 |
|
EleYearVip int32 = 4 |
|
) |
|
|
|
// eleme grant remark. |
|
const ( |
|
ElemeGrantRemark = "宅e块联合会员" |
|
) |
|
|
|
// EleGrantVipDays eleme grant vip days. |
|
var EleGrantVipDays = map[int32]int64{ |
|
1: 31, |
|
12: 366, |
|
}
|
|
|