company.go 363 B

1234567891011121314151617
  1. package response
  2. import (
  3. "github.com/rdlucklib/rdluck_tools/paging"
  4. "hongze/hz_crm_api/models/company"
  5. )
  6. //客户所属销售列表
  7. type CompanySellerListResp struct {
  8. List []*company.CompanySellers
  9. }
  10. // TryOutCompanyListResp 正式转试用客户列表
  11. type TryOutCompanyListResp struct {
  12. List []*company.TryOutCompanyList
  13. Paging *paging.PagingItem
  14. }