promo.go 537 B

123456789101112131415161718192021
  1. package consts
  2. //拼团常量
  3. const (
  4. PromoWaitShelf int16 = 1 //待上架
  5. PromoUpShelf int16 = 2 //已上架
  6. PromoDelShelf int16 = 3 //废弃
  7. PromoFinishShelf int16 = 4 //已结束
  8. DoUpShelf int16 = 1 //上架
  9. DoDelShelf int16 = 2 //废弃
  10. GroupDoing int16 = 0 //拼团中
  11. GroupSuccess int16 = 1 //拼团成功
  12. GroupFailed int16 = 2 //拼团失败
  13. PromoOrderUnpaid int16 = 1 //待支付
  14. PromoOrderPaid int16 = 2 //已支付
  15. PromoOrderRefund int16 = 3 //已退款
  16. PromoOrderCancel int16 = 4 //已取消
  17. )