company_seller.go 928 B

12345678910111213141516171819202122232425
  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. }