新增获取处方列表-分页
This commit is contained in:
+14
-8
@@ -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 // 处方列表
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user