1234567891011121314151617 |
- package response
- import (
- "github.com/rdlucklib/rdluck_tools/paging"
- "hongze/hz_crm_api/models/company"
- )
- type CompanySellerListResp struct {
- List []*company.CompanySellers
- }
- type TryOutCompanyListResp struct {
- List []*company.TryOutCompanyList
- Paging *paging.PagingItem
- }
|