package response type DepartmentSellers struct { SysUserId int `description:"系统用户id"` SysRealName string `description:"用户真实名称"` SysDepartmentId int `description:"系统部门id"` SysDepartmentName string `description:"部门名称"` ChildrenList []*DepartmentSellers `description:"销售列表"` } type DepartmentGroupSellersResp struct { List []*DepartmentSellers }