bilibili-backup/app/service/openplatform/ticket-item/model/const.go
2019-04-22 02:59:20 +00:00

34 lines
672 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package model
// 票价
// 额外属性字段名
const (
TkBuyNumLimitNormal = "buy_limit_0"
TkBuyNumLimitVip = "buy_limit_1"
TkBuyNumLimitAnnualVip = "buy_limit_2"
// TimeNull 空时间0000-00-00 00:00:00
TimeNull = -62135596800
// 版本类型
//VerTypeProject = 1
VerTypeBulletin = 2
//VerTypePjCancel = 3
VerTypeBanner = 4
//版本状态
VerStatusOffShelfManual = -1
VerStatusOffShelfForced = -2
VerStatusNotReviewed = 0
VerStatusReadyForReview = 1
VerStatusRejected = 2
VerStatusReadyForSale = 3
VerStatusOnShelf = 4
VerStatusNoSalesinfo = 5
//版本审核操作
VerReviewReject = 0
VerReviewPass = 1
)