| package userimport "github.com/shopspring/decimal"type AdminOrderAmountRequest struct {	OpenId string `json:"openId"`}type AdminOrderAmountResponse struct {	UserNum           int             `json:"userNum"`	OrderNum          int             `json:"orderNum"`	AdminAmount       decimal.Decimal `json:"adminAmount"`	PlatformAmount    decimal.Decimal `json:"platformAmount"`	AdminAmountSel    decimal.Decimal `json:"adminAmountSel"`	PlatformAmountSel decimal.Decimal `json:"platformAmountSel"`}
 |