order_details.go 246 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 package domain // OrderDetails 订单明细 type OrderDetails struct { // 订单金额统计 OrderAmount float64 `json:"orderAmount"` // 具体订单类型的金额明细 OrderAmountByTypes []*OrderAmountByType `json:"orderAmountByTypes"` }