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