company_seller.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package company
  2. type CompanySellers struct {
  3. AdminId int `description:"系统用户id"`
  4. AdminName string `description:"系统用户名称"`
  5. RealName string `description:"用户真实名称"`
  6. }
  7. type CompanySellerResp struct {
  8. List []*CompanySellers
  9. }
  10. // DepartmentGroupSellersResp 销售列表(根据部门、分组来)
  11. type DepartmentGroupSellersResp struct {
  12. List []DepartmentGroupSellers
  13. }
  14. type DepartmentGroupSellers struct {
  15. AdminId string `description:"系统用户id"`
  16. //AdminName string `description:"系统用户名称"`
  17. RealName string `description:"用户真实名称"`
  18. ChildrenList []DepartmentGroupSellers `description:"销售列表"`
  19. RoleTypeCode string `description:"角色编码"`
  20. Authority int `description:"管理权限,0:无,1:部门负责人,2:小组负责人,或者ficc销售主管,4:ficc销售组长"`
  21. }
  22. type DepartmentGroupAdmins struct {
  23. AdminId string `description:"系统用户id"`
  24. //AdminName string `description:"系统用户名称"`
  25. RealName string `description:"用户真实名称"`
  26. ChildrenList []*DepartmentGroupAdmins `description:"角色列表"`
  27. RoleTypeCode string `description:"角色编码"`
  28. Authority int `description:"管理权限,0:无,1:部门负责人,2:小组负责人,或者ficc销售主管,4:ficc销售组长"`
  29. }