1234567891011121314151617 |
- package response
- import (
- "github.com/rdlucklib/rdluck_tools/paging"
- "hongze/hz_crm_api/models/company"
- )
- //客户所属销售列表
- type CompanySellerListResp struct {
- List []*company.CompanySellers
- }
- // TryOutCompanyListResp 正式转试用客户列表
- type TryOutCompanyListResp struct {
- List []*company.TryOutCompanyList
- Paging *paging.PagingItem
- }
|