新增问诊病例,患者列表(未完成)

This commit is contained in:
2023-09-15 15:16:58 +08:00
parent 95769e6e90
commit 744fb8d067
15 changed files with 705 additions and 50 deletions
+17 -5
View File
@@ -2,11 +2,13 @@ package controller
// Api api接口
type Api struct {
sysSetting // 系统设置
userDoctorManage // 医生管理
Admin // 公共方法
basic // 基础数据
order // 订单管理
sysSetting // 系统设置
userDoctorManage // 医生管理
Admin // 公共方法
basic // 基础数据
order // 订单管理
userPatientManage // 患者管理
caseManage // 病例管理
}
// SysSetting 系统设置
@@ -39,3 +41,13 @@ type order struct {
OrderInquiry // 问诊订单
OrderProduct // 药品订单
}
// 患者管理
type userPatientManage struct {
UserPatient // 患者列表
}
// 病例管理
type caseManage struct {
Case // 患者列表
}