This commit is contained in:
laodaming
2023-11-14 14:00:00 +08:00
parent 420829cec3
commit 79a6c3fa24
4 changed files with 28 additions and 26 deletions

View File

@@ -35,10 +35,12 @@ type DepartmentsItem {
}
//保存部门信息
type SaveDepartmentReq {
Id int64 `json:"id"`
Name string `json:"name"`
Remark string `json:"remark"`
Type string `json:"type"`
ParentId int64 `json:"parent_id"`
Dn string `json:"dn"`
Id int64 `json:"id"`
Name string `json:"name"`
Remark string `json:"remark"`
Type string `json:"type"`
ParentId int64 `json:"parent_id"`
Dn string `json:"dn"`
SyncState int64 `json:"sync_state"`
Sort int64 `json:"sort"`
}