fix proto
This commit is contained in:
parent
1aa8641cd2
commit
aff4682096
|
@ -14,6 +14,7 @@ type ApiZoneMomentVO struct {
|
||||||
IsSuperfanshipUnlocked int64 `json:"is_superfanship_unlocked"`
|
IsSuperfanshipUnlocked int64 `json:"is_superfanship_unlocked"`
|
||||||
IsZoneMomentUnlocked int64 `json:"is_zone_moment_unlocked"`
|
IsZoneMomentUnlocked int64 `json:"is_zone_moment_unlocked"`
|
||||||
Expenditure int64 `json:"expenditure"`
|
Expenditure int64 `json:"expenditure"`
|
||||||
|
BuyerCnt int64 `json:"buyer_cnt"` // 动态购买人数
|
||||||
}
|
}
|
||||||
|
|
||||||
func (vo *ApiZoneMomentVO) CopyZoneMoment(zonemoment *dbstruct.ZoneMoment) {
|
func (vo *ApiZoneMomentVO) CopyZoneMoment(zonemoment *dbstruct.ZoneMoment) {
|
||||||
|
|
|
@ -105,10 +105,9 @@ type ApiListByZidReq struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ApiListByZidData struct {
|
type ApiListByZidData struct {
|
||||||
List []*ApiZoneMomentVO `json:"list"`
|
List []*ApiZoneMomentVO `json:"list"`
|
||||||
Offset int `json:"offset"`
|
Offset int `json:"offset"`
|
||||||
More int `json:"more"`
|
More int `json:"more"`
|
||||||
BuyerCnt int `json:"buyer_cnt"` // 购买人数
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ApiListByZidResp struct {
|
type ApiListByZidResp struct {
|
||||||
|
|
Loading…
Reference in New Issue