新增审核-医生列表-详情

This commit is contained in:
2023-07-12 17:57:49 +08:00
parent 8b0589af51
commit 54feddd429
15 changed files with 469 additions and 24 deletions
+9 -13
View File
@@ -143,19 +143,19 @@ func basicRouter(r *gin.Engine, api controller.Api) {
// 新增银行
}
// 省市区管理-基础数据
// 区管理-基础数据
areaGroup := basicGroup.Group("/area")
{
// 获取省市区列表
areaGroup.GET("/list", api.Bank.GetBankList)
// 获取区列表
areaGroup.GET("/list", api.Area.GetAreaList)
// 获取银行列表-分页
// 获取地区列表-分页
// 银行详情
// 地区详情
// 修改银行
// 修改地区
// 新增银行
// 新增地区
}
}
@@ -325,12 +325,8 @@ func privateRouter(r *gin.Engine, api controller.Api) {
// 审核-医生详情
doctorPendingGroup.GET("/:doctor_id", api.UserDoctor.GetUserDoctorPending)
// 修改医生
doctorPendingGroup.PUT("/:doctor_id", api.UserDoctor.PutUserDoctor)
// 新增医生
doctorPendingGroup.POST("", api.UserDoctor.AddUserDoctor)
// 审核-审核医生
doctorPendingGroup.PUT("/:doctor_id", api.UserDoctor.PutUserDoctorPending)
}
//
// // 医生详情