@@ -289,7 +289,7 @@ func UserManagementAddUser(c *gin.Context) { | |||||
// @Param req body md.InviteCodeReq true "分页信息必填" | // @Param req body md.InviteCodeReq true "分页信息必填" | ||||
// @Success 200 {string} "具体数据" | // @Success 200 {string} "具体数据" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /api/memberCenter/userManagement/addUser [post] | |||||
// @Router /api/memberCenter/userManagement/setCustomInviteCode [post] | |||||
func UserManagementSetCustomInviteCode(c *gin.Context) { | func UserManagementSetCustomInviteCode(c *gin.Context) { | ||||
var req *md.InviteCodeReq | var req *md.InviteCodeReq | ||||
if err := c.ShouldBindJSON(&req); err != nil { | if err := c.ShouldBindJSON(&req); err != nil { | ||||
@@ -6657,7 +6657,7 @@ const docTemplate = `{ | |||||
}, | }, | ||||
"/api/memberCenter/userManagement/addUser": { | "/api/memberCenter/userManagement/addUser": { | ||||
"post": { | "post": { | ||||
"description": "用户自定义邀请码修改", | |||||
"description": "用户添加", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -6667,7 +6667,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"会员中心" | "会员中心" | ||||
], | ], | ||||
"summary": "制度中心-会员中心-用户管理-用户自定义邀请码修改", | |||||
"summary": "制度中心-会员中心-用户管理-用户添加", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -6682,7 +6682,7 @@ const docTemplate = `{ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.InviteCodeReq" | |||||
"$ref": "#/definitions/md.RegisterReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -6940,6 +6940,53 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/api/memberCenter/userManagement/setCustomInviteCode": { | |||||
"post": { | |||||
"description": "用户自定义邀请码修改", | |||||
"consumes": [ | |||||
"application/json" | |||||
], | |||||
"produces": [ | |||||
"application/json" | |||||
], | |||||
"tags": [ | |||||
"会员中心" | |||||
], | |||||
"summary": "制度中心-会员中心-用户管理-用户自定义邀请码修改", | |||||
"parameters": [ | |||||
{ | |||||
"type": "string", | |||||
"description": "验证参数Bearer和token空格拼接", | |||||
"name": "Authorization", | |||||
"in": "header", | |||||
"required": true | |||||
}, | |||||
{ | |||||
"description": "分页信息必填", | |||||
"name": "req", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.InviteCodeReq" | |||||
} | |||||
} | |||||
], | |||||
"responses": { | |||||
"200": { | |||||
"description": "具体数据", | |||||
"schema": { | |||||
"type": "string" | |||||
} | |||||
}, | |||||
"400": { | |||||
"description": "具体错误", | |||||
"schema": { | |||||
"$ref": "#/definitions/md.Response" | |||||
} | |||||
} | |||||
} | |||||
} | |||||
}, | |||||
"/api/memberCenter/userManagement/updateUserInfo": { | "/api/memberCenter/userManagement/updateUserInfo": { | ||||
"post": { | "post": { | ||||
"description": "用户信息管理(更新)", | "description": "用户信息管理(更新)", | ||||
@@ -6649,7 +6649,7 @@ | |||||
}, | }, | ||||
"/api/memberCenter/userManagement/addUser": { | "/api/memberCenter/userManagement/addUser": { | ||||
"post": { | "post": { | ||||
"description": "用户自定义邀请码修改", | |||||
"description": "用户添加", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -6659,7 +6659,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"会员中心" | "会员中心" | ||||
], | ], | ||||
"summary": "制度中心-会员中心-用户管理-用户自定义邀请码修改", | |||||
"summary": "制度中心-会员中心-用户管理-用户添加", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -6674,7 +6674,7 @@ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.InviteCodeReq" | |||||
"$ref": "#/definitions/md.RegisterReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -6932,6 +6932,53 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/api/memberCenter/userManagement/setCustomInviteCode": { | |||||
"post": { | |||||
"description": "用户自定义邀请码修改", | |||||
"consumes": [ | |||||
"application/json" | |||||
], | |||||
"produces": [ | |||||
"application/json" | |||||
], | |||||
"tags": [ | |||||
"会员中心" | |||||
], | |||||
"summary": "制度中心-会员中心-用户管理-用户自定义邀请码修改", | |||||
"parameters": [ | |||||
{ | |||||
"type": "string", | |||||
"description": "验证参数Bearer和token空格拼接", | |||||
"name": "Authorization", | |||||
"in": "header", | |||||
"required": true | |||||
}, | |||||
{ | |||||
"description": "分页信息必填", | |||||
"name": "req", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.InviteCodeReq" | |||||
} | |||||
} | |||||
], | |||||
"responses": { | |||||
"200": { | |||||
"description": "具体数据", | |||||
"schema": { | |||||
"type": "string" | |||||
} | |||||
}, | |||||
"400": { | |||||
"description": "具体错误", | |||||
"schema": { | |||||
"$ref": "#/definitions/md.Response" | |||||
} | |||||
} | |||||
} | |||||
} | |||||
}, | |||||
"/api/memberCenter/userManagement/updateUserInfo": { | "/api/memberCenter/userManagement/updateUserInfo": { | ||||
"post": { | "post": { | ||||
"description": "用户信息管理(更新)", | "description": "用户信息管理(更新)", | ||||
@@ -9912,7 +9912,7 @@ paths: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
description: 用户自定义邀请码修改 | |||||
description: 用户添加 | |||||
parameters: | parameters: | ||||
- description: 验证参数Bearer和token空格拼接 | - description: 验证参数Bearer和token空格拼接 | ||||
in: header | in: header | ||||
@@ -9924,7 +9924,7 @@ paths: | |||||
name: req | name: req | ||||
required: true | required: true | ||||
schema: | schema: | ||||
$ref: '#/definitions/md.InviteCodeReq' | |||||
$ref: '#/definitions/md.RegisterReq' | |||||
produces: | produces: | ||||
- application/json | - application/json | ||||
responses: | responses: | ||||
@@ -9936,7 +9936,7 @@ paths: | |||||
description: 具体错误 | description: 具体错误 | ||||
schema: | schema: | ||||
$ref: '#/definitions/md.Response' | $ref: '#/definitions/md.Response' | ||||
summary: 制度中心-会员中心-用户管理-用户自定义邀请码修改 | |||||
summary: 制度中心-会员中心-用户管理-用户添加 | |||||
tags: | tags: | ||||
- 会员中心 | - 会员中心 | ||||
/api/memberCenter/userManagement/balanceDetail: | /api/memberCenter/userManagement/balanceDetail: | ||||
@@ -10100,6 +10100,37 @@ paths: | |||||
summary: 制度中心-会员中心-用户管理-会员明细(积分明细获取) | summary: 制度中心-会员中心-用户管理-会员明细(积分明细获取) | ||||
tags: | tags: | ||||
- 会员中心 | - 会员中心 | ||||
/api/memberCenter/userManagement/setCustomInviteCode: | |||||
post: | |||||
consumes: | |||||
- application/json | |||||
description: 用户自定义邀请码修改 | |||||
parameters: | |||||
- description: 验证参数Bearer和token空格拼接 | |||||
in: header | |||||
name: Authorization | |||||
required: true | |||||
type: string | |||||
- description: 分页信息必填 | |||||
in: body | |||||
name: req | |||||
required: true | |||||
schema: | |||||
$ref: '#/definitions/md.InviteCodeReq' | |||||
produces: | |||||
- application/json | |||||
responses: | |||||
"200": | |||||
description: 具体数据 | |||||
schema: | |||||
type: string | |||||
"400": | |||||
description: 具体错误 | |||||
schema: | |||||
$ref: '#/definitions/md.Response' | |||||
summary: 制度中心-会员中心-用户管理-用户自定义邀请码修改 | |||||
tags: | |||||
- 会员中心 | |||||
/api/memberCenter/userManagement/updateUserInfo: | /api/memberCenter/userManagement/updateUserInfo: | ||||
post: | post: | ||||
consumes: | consumes: | ||||