cooperation_goods_statistics_dto.go
361 字节
package domain
// CooperationGoodsStatisticsDto 共创产品统计
type CooperationGoodsStatisticsDto struct {
// 共创产品总金额统计
GoodAmount float64 `json:"goodAmount"`
// 共创产品名称
GoodName string `json:"goodName"`
// 共创产品在TOP5中的占比统计
GoodRatio float64 `json:"goodRatio"`
// 排名
Rank int32 `json:"rank"`
}