2023-07-06 11:17:57 +08:00

15 lines
762 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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:删除)
}