fix proto

This commit is contained in:
lwl0608 2024-04-11 17:51:41 +08:00
parent 1aa8641cd2
commit aff4682096
2 changed files with 4 additions and 4 deletions

View File

@ -14,6 +14,7 @@ type ApiZoneMomentVO struct {
IsSuperfanshipUnlocked int64 `json:"is_superfanship_unlocked"`
IsZoneMomentUnlocked int64 `json:"is_zone_moment_unlocked"`
Expenditure int64 `json:"expenditure"`
BuyerCnt int64 `json:"buyer_cnt"` // 动态购买人数
}
func (vo *ApiZoneMomentVO) CopyZoneMoment(zonemoment *dbstruct.ZoneMoment) {

View File

@ -108,7 +108,6 @@ type ApiListByZidData struct {
List []*ApiZoneMomentVO `json:"list"`
Offset int `json:"offset"`
More int `json:"more"`
BuyerCnt int `json:"buyer_cnt"` // 购买人数
}
type ApiListByZidResp struct {