order.go 451 B

1234567891011121314151617181920212223
  1. package response
  2. import (
  3. "eta/eta_mini_crm_ht/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ProductOrderListResp struct {
  7. List []*models.ProductOrderView
  8. Paging *paging.PagingItem
  9. }
  10. type TradeOrderListResp struct {
  11. List []*models.TradeOrderView
  12. Paging *paging.PagingItem
  13. }
  14. type RefundResp struct {
  15. RealName string
  16. RefundAmount string
  17. RefundFinishTime string
  18. Account string
  19. Remark string
  20. }