...
|
...
|
@@ -21,7 +21,7 @@ type ResponseListData struct { |
|
|
type DepartmentBase struct {
|
|
|
Id int64 `json:"id" orm:"column(id)"`
|
|
|
Name string `json:"name" orm:"column(name)"`
|
|
|
ParentId int64 `json:"parentId" orm:"column(parent_id)"`
|
|
|
ParentId int64 `json:"parent_id" orm:"column(parent_id)"`
|
|
|
}
|
|
|
|
|
|
//RoleBase 下拉选择列表-角色
|
...
|
...
|
@@ -37,7 +37,7 @@ type RoleBase struct { |
|
|
type PositionBase struct {
|
|
|
Id int64 `json:"id" orm:"column(id)"`
|
|
|
Name string `json:"name" orm:"column(name)"`
|
|
|
ParentId int64 `json:"parentId" orm:"column(parent_id)"`
|
|
|
ParentId int64 `json:"parent_id" orm:"column(parent_id)"`
|
|
|
}
|
|
|
|
|
|
//DepartUserBase 下拉选择列表-部门下的人员
|
...
|
...
|
|