新增获取处方列表-分页

This commit is contained in:
2023-09-19 17:49:20 +08:00
parent dbbf44edb0
commit efde711eaa
11 changed files with 422 additions and 39 deletions
+14 -8
View File
@@ -2,14 +2,15 @@ package controller
// Api api接口
type Api struct {
sysSetting // 系统设置
userDoctorManage // 医生管理
Admin // 公共方法-验证权限
Public // 公共方法-不验证权限
basic // 基础数据
order // 订单管理
userPatientManage // 患者管理
caseManage // 病例管理
sysSetting // 系统设置
userDoctorManage // 医生管理
Admin // 公共方法-验证权限
Public // 公共方法-不验证权限
basic // 基础数据
order // 订单管理
userPatientManage // 患者管理
caseManage // 病例管理
orderPrescriptionManage // 处方管理
}
// SysSetting 系统设置
@@ -53,3 +54,8 @@ type userPatientManage struct {
type caseManage struct {
Case // 患者列表
}
// 处方管理
type orderPrescriptionManage struct {
OrderPrescription // 处方列表
}