package response import ( "eta/eta_mini_crm_ht/models" "github.com/rdlucklib/rdluck_tools/paging" ) type ProductOrderListResp struct { List []*models.ProductOrderView Paging *paging.PagingItem } type TradeOrderListResp struct { List []*models.TradeOrderView Paging *paging.PagingItem } type RefundResp struct { RealName string RefundAmount string RefundFinishTime string Account string Remark string }