This commit is contained in:
2023-07-06 11:01:47 +08:00
parent 2944d42281
commit 1c108f8a1f
27 changed files with 1034 additions and 222 deletions
+7 -1
View File
@@ -2,9 +2,10 @@ package controller
// Api api接口
type Api struct {
Basic // 基础数据
sysSetting // 系统设置
userDoctorManage // 医生管理
Admin // 公共方法
basic // 基础数据
}
// SysSetting 系统设置
@@ -21,3 +22,8 @@ type sysSetting struct {
type userDoctorManage struct {
UserDoctor // 医生列表
}
// Basic 基础数据
type basic struct {
Department // 科室
}