admin.order.amount.go 704 B

123456789101112131415161718
  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. AvailableAmount decimal.Decimal `json:"availableAmount"` //平台待结算金额--管理员可提现金额
  14. WithdrawalAmount decimal.Decimal `json:"withdrawalAmount"` //平台已结算金额
  15. }