company.go 358 B

1234567891011121314151617
  1. package response
  2. import (
  3. "eta/eta_api/models/company"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  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. }