@@ -736,8 +736,8 @@ func NineDimensionalSpace(c *gin.Context) { | |||||
} | } | ||||
list = append(list, md.SpaceListNode{ | list = append(list, md.SpaceListNode{ | ||||
Name: utils.IntToStr(i) + "维", | Name: utils.IntToStr(i) + "维", | ||||
MaxCount: utils.Float64ToStr(maxCount), | |||||
NowCount: utils.Int64ToStr(nowUserCount), | |||||
MaxCount: int(maxCount), | |||||
NowCount: int(nowUserCount), | |||||
}) | }) | ||||
spaceTotalNums += maxCount | spaceTotalNums += maxCount | ||||
} | } | ||||
@@ -750,11 +750,11 @@ func NineDimensionalSpace(c *gin.Context) { | |||||
resp := md.NineDimensionalSpaceResp{ | resp := md.NineDimensionalSpaceResp{ | ||||
Rows: utils.IntToStr(row), | Rows: utils.IntToStr(row), | ||||
Times: utils.IntToStr(times), | Times: utils.IntToStr(times), | ||||
SpaceTotalNums: utils.Float64ToStr(spaceTotalNums), | |||||
SpaceNums: utils.Int64ToStr(hasUserCount), | |||||
SpaceTotalNums: int(spaceTotalNums), | |||||
SpaceNums: int(hasUserCount), | |||||
SpaceList: list, | SpaceList: list, | ||||
ALotOfNums: utils.Float64ToStr(spaceTotalNums), | |||||
DayNum: utils.IntToStr(setting.SystemPunishReplaceValue), | |||||
ALotOfNums: int(spaceTotalNums), | |||||
DayNum: setting.SystemPunishReplaceValue, | |||||
} | } | ||||
e.OutSuc(c, resp, nil) | e.OutSuc(c, resp, nil) | ||||
@@ -313,7 +313,7 @@ func RealTimePrice(c *gin.Context) { | |||||
} | } | ||||
resp := md.RealTimePriceResp{ | resp := md.RealTimePriceResp{ | ||||
UserCount: utils.AnyToString(userCount), | |||||
UserCount: utils.AnyToInt64(userCount), | |||||
NowPrice: utils.AnyToString(nowPrice), | NowPrice: utils.AnyToString(nowPrice), | ||||
IsRises: isRisesResp, | IsRises: isRisesResp, | ||||
Rises: utils.AnyToString(risesValue), | Rises: utils.AnyToString(risesValue), | ||||
@@ -746,7 +746,16 @@ func GetEggPointRecord(c *gin.Context) { | |||||
list, nowScore, indexNum, err := svc.GetEggPointRecordBase(now, user.Id, page, limit) | list, nowScore, indexNum, err := svc.GetEggPointRecordBase(now, user.Id, page, limit) | ||||
if err != nil { | if err != nil { | ||||
e.OutErr(c, e.ERR_DB_ORM, err.Error()) | |||||
resp := md.GetEggPointRecordResp{ | |||||
NowScore: "0", | |||||
List: nil, | |||||
Paginate: md.Paginate{ | |||||
Limit: limit, | |||||
Page: page, | |||||
Total: 0, | |||||
}, | |||||
} | |||||
e.OutSuc(c, resp, nil) | |||||
return | return | ||||
} | } | ||||
@@ -72,18 +72,18 @@ type MyFansUserListResp struct { | |||||
type SpaceListNode struct { | type SpaceListNode struct { | ||||
Name string `json:"name"` // 维度 | Name string `json:"name"` // 维度 | ||||
MaxCount string `json:"max_count"` // 最大容纳人数 | |||||
NowCount string `json:"now_count"` // 当前人数 | |||||
MaxCount int `json:"max_count"` // 最大容纳人数 | |||||
NowCount int `json:"now_count"` // 当前人数 | |||||
} | } | ||||
type NineDimensionalSpaceResp struct { | type NineDimensionalSpaceResp struct { | ||||
Rows string `json:"rows"` // 行数 | Rows string `json:"rows"` // 行数 | ||||
Times string `json:"times"` // 排数 | Times string `json:"times"` // 排数 | ||||
SpaceTotalNums string `json:"space_total_nums"` // 空间总数 | |||||
SpaceNums string `json:"space_nums"` // 空间人数 | |||||
SpaceTotalNums int `json:"space_total_nums"` // 空间总数 | |||||
SpaceNums int `json:"space_nums"` // 空间人数 | |||||
SpaceList []SpaceListNode `json:"space_list"` // 数据列表 | SpaceList []SpaceListNode `json:"space_list"` // 数据列表 | ||||
ALotOfNums string `json:"a_lot_of_nums"` // 全网至多用户数 | |||||
DayNum string `json:"day_num"` // 连续x天不活跃 | |||||
ALotOfNums int `json:"a_lot_of_nums"` // 全网至多用户数 | |||||
DayNum int `json:"day_num"` // 连续x天不活跃 | |||||
} | } | ||||
type BasalRateResp struct { | type BasalRateResp struct { | ||||
@@ -19,7 +19,7 @@ type HomePageWatchAdRuleResp struct { | |||||
} | } | ||||
type RealTimePriceResp struct { | type RealTimePriceResp struct { | ||||
UserCount string `json:"user_count"` // 用户数 | |||||
UserCount int64 `json:"user_count"` // 用户数 | |||||
NowPrice string `json:"now_price"` // 当前价格 | NowPrice string `json:"now_price"` // 当前价格 | ||||
IsRises bool `json:"is_rises"` // 是否涨/跌价 | IsRises bool `json:"is_rises"` // 是否涨/跌价 | ||||
Rises string `json:"rises"` // 涨价幅度(百分比) | Rises string `json:"rises"` // 涨价幅度(百分比) | ||||
@@ -3642,11 +3642,11 @@ const docTemplate = `{ | |||||
"properties": { | "properties": { | ||||
"a_lot_of_nums": { | "a_lot_of_nums": { | ||||
"description": "全网至多用户数", | "description": "全网至多用户数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"day_num": { | "day_num": { | ||||
"description": "连续x天不活跃", | "description": "连续x天不活跃", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"rows": { | "rows": { | ||||
"description": "行数", | "description": "行数", | ||||
@@ -3661,11 +3661,11 @@ const docTemplate = `{ | |||||
}, | }, | ||||
"space_nums": { | "space_nums": { | ||||
"description": "空间人数", | "description": "空间人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"space_total_nums": { | "space_total_nums": { | ||||
"description": "空间总数", | "description": "空间总数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"times": { | "times": { | ||||
"description": "排数", | "description": "排数", | ||||
@@ -3745,7 +3745,7 @@ const docTemplate = `{ | |||||
}, | }, | ||||
"user_count": { | "user_count": { | ||||
"description": "用户数", | "description": "用户数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -3995,7 +3995,7 @@ const docTemplate = `{ | |||||
"properties": { | "properties": { | ||||
"max_count": { | "max_count": { | ||||
"description": "最大容纳人数", | "description": "最大容纳人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"name": { | "name": { | ||||
"description": "维度", | "description": "维度", | ||||
@@ -4003,7 +4003,7 @@ const docTemplate = `{ | |||||
}, | }, | ||||
"now_count": { | "now_count": { | ||||
"description": "当前人数", | "description": "当前人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -3636,11 +3636,11 @@ | |||||
"properties": { | "properties": { | ||||
"a_lot_of_nums": { | "a_lot_of_nums": { | ||||
"description": "全网至多用户数", | "description": "全网至多用户数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"day_num": { | "day_num": { | ||||
"description": "连续x天不活跃", | "description": "连续x天不活跃", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"rows": { | "rows": { | ||||
"description": "行数", | "description": "行数", | ||||
@@ -3655,11 +3655,11 @@ | |||||
}, | }, | ||||
"space_nums": { | "space_nums": { | ||||
"description": "空间人数", | "description": "空间人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"space_total_nums": { | "space_total_nums": { | ||||
"description": "空间总数", | "description": "空间总数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"times": { | "times": { | ||||
"description": "排数", | "description": "排数", | ||||
@@ -3739,7 +3739,7 @@ | |||||
}, | }, | ||||
"user_count": { | "user_count": { | ||||
"description": "用户数", | "description": "用户数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -3989,7 +3989,7 @@ | |||||
"properties": { | "properties": { | ||||
"max_count": { | "max_count": { | ||||
"description": "最大容纳人数", | "description": "最大容纳人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
}, | }, | ||||
"name": { | "name": { | ||||
"description": "维度", | "description": "维度", | ||||
@@ -3997,7 +3997,7 @@ | |||||
}, | }, | ||||
"now_count": { | "now_count": { | ||||
"description": "当前人数", | "description": "当前人数", | ||||
"type": "string" | |||||
"type": "integer" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -769,10 +769,10 @@ definitions: | |||||
properties: | properties: | ||||
a_lot_of_nums: | a_lot_of_nums: | ||||
description: 全网至多用户数 | description: 全网至多用户数 | ||||
type: string | |||||
type: integer | |||||
day_num: | day_num: | ||||
description: 连续x天不活跃 | description: 连续x天不活跃 | ||||
type: string | |||||
type: integer | |||||
rows: | rows: | ||||
description: 行数 | description: 行数 | ||||
type: string | type: string | ||||
@@ -783,10 +783,10 @@ definitions: | |||||
type: array | type: array | ||||
space_nums: | space_nums: | ||||
description: 空间人数 | description: 空间人数 | ||||
type: string | |||||
type: integer | |||||
space_total_nums: | space_total_nums: | ||||
description: 空间总数 | description: 空间总数 | ||||
type: string | |||||
type: integer | |||||
times: | times: | ||||
description: 排数 | description: 排数 | ||||
type: string | type: string | ||||
@@ -842,7 +842,7 @@ definitions: | |||||
type: string | type: string | ||||
user_count: | user_count: | ||||
description: 用户数 | description: 用户数 | ||||
type: string | |||||
type: integer | |||||
type: object | type: object | ||||
md.RedPackageDetailResp: | md.RedPackageDetailResp: | ||||
properties: | properties: | ||||
@@ -1017,13 +1017,13 @@ definitions: | |||||
properties: | properties: | ||||
max_count: | max_count: | ||||
description: 最大容纳人数 | description: 最大容纳人数 | ||||
type: string | |||||
type: integer | |||||
name: | name: | ||||
description: 维度 | description: 维度 | ||||
type: string | type: string | ||||
now_count: | now_count: | ||||
description: 当前人数 | description: 当前人数 | ||||
type: string | |||||
type: integer | |||||
type: object | type: object | ||||
md.TotalRateResp: | md.TotalRateResp: | ||||
properties: | properties: | ||||