This commit is contained in:
2023-07-06 11:17:57 +08:00
parent 1c108f8a1f
commit 2cf45830ff
4 changed files with 35 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
package requests
type DepartmentRequest struct {
GetDepartmentCustomList // 获取自定义科室列表
}
// GetDepartmentCustomList 获取自定义科室列表
type GetDepartmentCustomList struct {
DepartmentId string `json:"department_id" form:"department_id" label:"医院科室-标准id"`
DepartmentCustomName string `json:"department_custom_name" form:"department_custom_name" label:"科室名称-自定义"`
DepartmentName string `json:"department_name" form:"department_name" label:"科室名称-标准"`
DepartmentCode string `json:"department_code" form:"department_code" label:"科室编码-标准"`
DepartmentStatus int `json:"department_status" form:"department_status" label:"状态"` // 1:正常 2:删除)
}