2021-06-30 02:12:05 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
const (
|
|
|
|
VmNotEnough = "能量不足,去走走获取更多能量"
|
|
|
|
RmNotEnough = "钻石不足,去购物或邀请,获取更多钻石"
|
|
|
|
StockNotEnough = "库存不足"
|
|
|
|
InviteNotEnough = "邀请人数不足"
|
|
|
|
CheckinDaysNotEnough = "签到天数不足"
|
|
|
|
InBlackList = "请稍后重试~"
|
|
|
|
MemberLevelNotEnough = "会员等级不够"
|
|
|
|
)
|
2025-09-11 10:06:20 +00:00
|
|
|
|
|
|
|
type Response struct {
|
|
|
|
Code int `json:"code" example:"200"`
|
|
|
|
Msg string `json:"msg" example:"success"`
|
|
|
|
Data interface{} `json:"data"`
|
|
|
|
}
|