cooperation_goods_statistics_dto.go 914 字节
package domain

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

type CooperationModeStatisticsDto struct {
	// 共创人数
	CooperationPeople float64 `json:"cooperationPeople"`
	// 分红预算
	DividendsEstimate string `json:"dividendsEstimate"`
	// 订单金额
	OrderAmount float64 `json:"orderAmount"`
	// 共创模式编号
	CooperationModeNumber string `json:"cooperationModeNumber"`
	// 共创模式
	// cooperationMode *CooperationMode
}

type DividendStatisticsDto struct {
	// 分红预算
	DividendsEstimate float64 `json:"dividendsEstimate"`
	// 订单金额
	OrderAmount float64 `json:"orderAmount"`
}