智慧食堂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB

  1. package md
  2. type CentralKitchenForSchoolOrderListReq struct {
  3. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  4. Limit int `json:"limit"`
  5. Page int `json:"page" `
  6. OrdState int `json:"ord_state" `
  7. }
  8. type CentralKitchenForSchoolOrderRefundReq struct {
  9. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  10. Id int `json:"id" binding:"required" label:"就餐记录id"`
  11. }
  12. type CentralKitchenForSchoolOrderRefundListReq struct {
  13. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  14. Limit int `json:"limit"`
  15. Page int `json:"page" `
  16. State int `json:"state" `
  17. }
  18. type CentralKitchenForSchoolOrderRefundListResp struct {
  19. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  20. OutRequestNo string `json:"out_request_no" label:"退款请求号"`
  21. Kind int `json:"kind" label:"预定类型"`
  22. CreateAt string `json:"create_at" label:"退款时间"`
  23. Date string `json:"date" label:"预定时间"`
  24. State int `json:"state" label:"退款状态"`
  25. Memo string `json:"memo" label:"备注"`
  26. Amount string `json:"amount" label:"退款金额"`
  27. }