...
|
...
|
@@ -562,7 +562,7 @@ type MiniUsersListRequest struct { |
|
|
ArticleId int64 `json:"articleId,optional"` // 按文章ID(返回文章可见的用户)
|
|
|
RoleId int64 `json:"roleId,optional"` // 按角色角色关联的用户
|
|
|
Keywords string `json:"keywords,optional"` // 按关键字搜索(名称)
|
|
|
DepartmentId int64 `json:"departmentId,optional"` // 按部门过滤
|
|
|
DepartmentId *int64 `json:"departmentId,optional"` // 按部门过滤
|
|
|
}
|
|
|
|
|
|
type MiniUserNewsRequest struct {
|
...
|
...
|
@@ -632,11 +632,11 @@ type Account struct { |
|
|
}
|
|
|
|
|
|
type Department struct {
|
|
|
Id int64 `json:"id,omitempty"` // 部门ID
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
ParentId int64 `json:"parentId"` // 父级ID
|
|
|
Name string `json:"name"` // 部门名称
|
|
|
UserIds []int64 `json:"userIds"` // 部门下的用户
|
|
|
Id int64 `json:"id"` // 部门ID
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
ParentId int64 `json:"parentId"` // 父级ID
|
|
|
Name string `json:"name"` // 部门名称
|
|
|
UserIds []int64 `json:"userIds"` // 部门下的用户
|
|
|
}
|
|
|
|
|
|
type UserSearchRequest struct {
|
...
|
...
|
@@ -1727,8 +1727,9 @@ type DepartmentUpdateRequest struct { |
|
|
}
|
|
|
|
|
|
type DepartmentListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
IncludeRootCompany bool `json:"includeRootCompany,optional"` // 包含公司(把公司当作部门作为顶级节点 部门ID:0)
|
|
|
}
|
|
|
|
|
|
type DepartmentListResponse struct {
|
...
|
...
|
|