const.go 672 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. // 票价
  3. // 额外属性字段名
  4. const (
  5. TkBuyNumLimitNormal = "buy_limit_0"
  6. TkBuyNumLimitVip = "buy_limit_1"
  7. TkBuyNumLimitAnnualVip = "buy_limit_2"
  8. // TimeNull 空时间:0000-00-00 00:00:00
  9. TimeNull = -62135596800
  10. // 版本类型
  11. //VerTypeProject = 1
  12. VerTypeBulletin = 2
  13. //VerTypePjCancel = 3
  14. VerTypeBanner = 4
  15. //版本状态
  16. VerStatusOffShelfManual = -1
  17. VerStatusOffShelfForced = -2
  18. VerStatusNotReviewed = 0
  19. VerStatusReadyForReview = 1
  20. VerStatusRejected = 2
  21. VerStatusReadyForSale = 3
  22. VerStatusOnShelf = 4
  23. VerStatusNoSalesinfo = 5
  24. //版本审核操作
  25. VerReviewReject = 0
  26. VerReviewPass = 1
  27. )