- package response
- import (
- "eta/eta_mini_crm_ht/models"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type ProductOrderListResp struct {
- List []*models.ProductOrderView
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type TradeOrderListResp struct {
- List []*models.TradeOrderView
- Paging *paging.PagingItem `description:"分页数据"`
- }
|