package dto
// CooperationModeStatisticsDto 共创模式统计
type CooperationModeStatisticsDto struct {
// 共创人数统计
CooperationPeople float64 `json:"cooperationPeople"`
// 分红预算统计
DividendsEstimate float64 `json:"dividendsEstimate"`
// 订单金额统计
OrderAmount float64 `json:"orderAmount"`
}