This commit is contained in:
2024-08-19 08:58:58 +08:00
parent 9aded38adc
commit 32fde535f5
6 changed files with 224 additions and 10 deletions
+6
View File
@@ -174,6 +174,12 @@ func privateRouter(r *gin.Engine, api controller.Api) {
{
// 获取用户数据-基本信息
centerGroup.GET("", api.User.GetUser)
// 获取用户数据-详情信息
centerGroup.GET("/info", api.User.GetUserInfo)
// 修改用户数据-基本信息
centerGroup.PUT("", api.User.PutUser)
}
// 优惠卷