新增简介审核-医生详情、简介审核-审核医生
This commit is contained in:
@@ -382,6 +382,19 @@ func privateRouter(r *gin.Engine, api controller.Api) {
|
||||
// 获取医生账户关联订单列表-分页
|
||||
accountGroup.GET("/order", api.OrderInquiry.GetOrderInquiryForAccountPage)
|
||||
}
|
||||
|
||||
// 简介审核列表
|
||||
doctorIntroductionGroup := doctorGroup.Group("/introduction")
|
||||
{
|
||||
// 简介审核-获取医生列表-分页
|
||||
doctorIntroductionGroup.GET("", api.UserDoctor.GetDoctorIntroductionPage)
|
||||
|
||||
// 简介审核-医生详情
|
||||
doctorIntroductionGroup.GET("/:doctor_id", api.UserDoctor.GetUserDoctorIntroduction)
|
||||
|
||||
// 简介审核-审核医生
|
||||
doctorIntroductionGroup.PUT("/:doctor_id", api.UserDoctor.PutDoctorIntroduction)
|
||||
}
|
||||
}
|
||||
|
||||
// 订单管理
|
||||
|
||||
Reference in New Issue
Block a user