代码初始化
This commit is contained in:
11
consts/market/market_status.go
Normal file
11
consts/market/market_status.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package market
|
||||
|
||||
// MarketStatus 市场物品状态
|
||||
type MarketStatus int
|
||||
|
||||
const (
|
||||
MarketStatusActive MarketStatus = 1 // 活跃(上架中)
|
||||
MarketStatusSold MarketStatus = 2 // 已售出
|
||||
MarketStatusInactive MarketStatus = 3 // 已下架
|
||||
MarketStatusExpired MarketStatus = 4 // 已过期
|
||||
)
|
||||
Reference in New Issue
Block a user