order_details.go 246 字节
package domain

// OrderDetails 订单明细
type OrderDetails struct {
	// 订单金额统计
	OrderAmount float64 `json:"orderAmount"`
	// 具体订单类型的金额明细
	OrderAmountByTypes []*OrderAmountByType `json:"orderAmountByTypes"`
}