admin.order.amount.go 508 B

12345678910111213141516
  1. package user
  2. import "github.com/shopspring/decimal"
  3. type AdminOrderAmountRequest struct {
  4. OpenId string `json:"openId"`
  5. }
  6. type AdminOrderAmountResponse struct {
  7. UserNum int `json:"userNum"`
  8. OrderNum int `json:"orderNum"`
  9. AdminAmount decimal.Decimal `json:"adminAmount"`
  10. PlatformAmount decimal.Decimal `json:"platformAmount"`
  11. AdminAmountSel decimal.Decimal `json:"adminAmountSel"`
  12. PlatformAmountSel decimal.Decimal `json:"platformAmountSel"`
  13. }