@@ -6655,6 +6655,53 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/api/memberCenter/userManagement/addUser": { | |||||
"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/balanceDetail": { | "/api/memberCenter/userManagement/balanceDetail": { | ||||
"get": { | "get": { | ||||
"description": "会员明细(余额获取)", | "description": "会员明细(余额获取)", | ||||
@@ -11177,6 +11224,13 @@ const docTemplate = `{ | |||||
"description": "头像", | "description": "头像", | ||||
"type": "string" | "type": "string" | ||||
}, | }, | ||||
"avatar_url": { | |||||
"description": "头像", | |||||
"type": "string" | |||||
}, | |||||
"custom_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"levelId": { | "levelId": { | ||||
"description": "会员等级 ID", | "description": "会员等级 ID", | ||||
"type": "integer" | "type": "integer" | ||||
@@ -11221,6 +11275,9 @@ const docTemplate = `{ | |||||
"description": "账号状态 1正常,2冻结", | "description": "账号状态 1正常,2冻结", | ||||
"type": "integer" | "type": "integer" | ||||
}, | }, | ||||
"system_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"tag": { | "tag": { | ||||
"description": "标签名称", | "description": "标签名称", | ||||
"type": "array", | "type": "array", | ||||
@@ -11231,6 +11288,9 @@ const docTemplate = `{ | |||||
"union_id": { | "union_id": { | ||||
"description": "微信号", | "description": "微信号", | ||||
"type": "string" | "type": "string" | ||||
}, | |||||
"wechat_account": { | |||||
"type": "string" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -13781,6 +13841,17 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.InviteCodeReq": { | |||||
"type": "object", | |||||
"properties": { | |||||
"custom_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"id": { | |||||
"type": "string" | |||||
} | |||||
} | |||||
}, | |||||
"md.JPushGetLevelListResp": { | "md.JPushGetLevelListResp": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -14988,6 +15059,35 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.RegisterReq": { | |||||
"type": "object", | |||||
"required": [ | |||||
"mobile" | |||||
], | |||||
"properties": { | |||||
"avatar": { | |||||
"type": "string" | |||||
}, | |||||
"mobile": { | |||||
"type": "string" | |||||
}, | |||||
"nickname": { | |||||
"type": "string" | |||||
}, | |||||
"parent_uid": { | |||||
"type": "string", | |||||
"example": "上级用户" | |||||
}, | |||||
"password": { | |||||
"type": "string", | |||||
"example": "密码 如 123" | |||||
}, | |||||
"type": { | |||||
"type": "string", | |||||
"example": "app:APP注册、h5:H5注册 admin 后台" | |||||
} | |||||
} | |||||
}, | |||||
"md.ReleaseDynamicReq": { | "md.ReleaseDynamicReq": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -16975,6 +17075,9 @@ const docTemplate = `{ | |||||
"union_id": { | "union_id": { | ||||
"description": "微信号", | "description": "微信号", | ||||
"type": "string" | "type": "string" | ||||
}, | |||||
"wechat_account": { | |||||
"type": "string" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -6647,6 +6647,53 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/api/memberCenter/userManagement/addUser": { | |||||
"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/balanceDetail": { | "/api/memberCenter/userManagement/balanceDetail": { | ||||
"get": { | "get": { | ||||
"description": "会员明细(余额获取)", | "description": "会员明细(余额获取)", | ||||
@@ -11169,6 +11216,13 @@ | |||||
"description": "头像", | "description": "头像", | ||||
"type": "string" | "type": "string" | ||||
}, | }, | ||||
"avatar_url": { | |||||
"description": "头像", | |||||
"type": "string" | |||||
}, | |||||
"custom_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"levelId": { | "levelId": { | ||||
"description": "会员等级 ID", | "description": "会员等级 ID", | ||||
"type": "integer" | "type": "integer" | ||||
@@ -11213,6 +11267,9 @@ | |||||
"description": "账号状态 1正常,2冻结", | "description": "账号状态 1正常,2冻结", | ||||
"type": "integer" | "type": "integer" | ||||
}, | }, | ||||
"system_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"tag": { | "tag": { | ||||
"description": "标签名称", | "description": "标签名称", | ||||
"type": "array", | "type": "array", | ||||
@@ -11223,6 +11280,9 @@ | |||||
"union_id": { | "union_id": { | ||||
"description": "微信号", | "description": "微信号", | ||||
"type": "string" | "type": "string" | ||||
}, | |||||
"wechat_account": { | |||||
"type": "string" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -13773,6 +13833,17 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.InviteCodeReq": { | |||||
"type": "object", | |||||
"properties": { | |||||
"custom_invite_code": { | |||||
"type": "string" | |||||
}, | |||||
"id": { | |||||
"type": "string" | |||||
} | |||||
} | |||||
}, | |||||
"md.JPushGetLevelListResp": { | "md.JPushGetLevelListResp": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -14980,6 +15051,35 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.RegisterReq": { | |||||
"type": "object", | |||||
"required": [ | |||||
"mobile" | |||||
], | |||||
"properties": { | |||||
"avatar": { | |||||
"type": "string" | |||||
}, | |||||
"mobile": { | |||||
"type": "string" | |||||
}, | |||||
"nickname": { | |||||
"type": "string" | |||||
}, | |||||
"parent_uid": { | |||||
"type": "string", | |||||
"example": "上级用户" | |||||
}, | |||||
"password": { | |||||
"type": "string", | |||||
"example": "密码 如 123" | |||||
}, | |||||
"type": { | |||||
"type": "string", | |||||
"example": "app:APP注册、h5:H5注册 admin 后台" | |||||
} | |||||
} | |||||
}, | |||||
"md.ReleaseDynamicReq": { | "md.ReleaseDynamicReq": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -16967,6 +17067,9 @@ | |||||
"union_id": { | "union_id": { | ||||
"description": "微信号", | "description": "微信号", | ||||
"type": "string" | "type": "string" | ||||
}, | |||||
"wechat_account": { | |||||
"type": "string" | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
@@ -1035,6 +1035,11 @@ definitions: | |||||
avatar: | avatar: | ||||
description: 头像 | description: 头像 | ||||
type: string | type: string | ||||
avatar_url: | |||||
description: 头像 | |||||
type: string | |||||
custom_invite_code: | |||||
type: string | |||||
level_name: | level_name: | ||||
description: 会员等级名称 | description: 会员等级名称 | ||||
type: string | type: string | ||||
@@ -1068,6 +1073,8 @@ definitions: | |||||
state: | state: | ||||
description: 账号状态 1正常,2冻结 | description: 账号状态 1正常,2冻结 | ||||
type: integer | type: integer | ||||
system_invite_code: | |||||
type: string | |||||
tag: | tag: | ||||
description: 标签名称 | description: 标签名称 | ||||
items: | items: | ||||
@@ -1076,6 +1083,8 @@ definitions: | |||||
union_id: | union_id: | ||||
description: 微信号 | description: 微信号 | ||||
type: string | type: string | ||||
wechat_account: | |||||
type: string | |||||
type: object | type: object | ||||
md.BatchAddVirtualCoinsReq: | md.BatchAddVirtualCoinsReq: | ||||
properties: | properties: | ||||
@@ -2836,6 +2845,13 @@ definitions: | |||||
content_image_url: | content_image_url: | ||||
type: string | type: string | ||||
type: object | type: object | ||||
md.InviteCodeReq: | |||||
properties: | |||||
custom_invite_code: | |||||
type: string | |||||
id: | |||||
type: string | |||||
type: object | |||||
md.JPushGetLevelListResp: | md.JPushGetLevelListResp: | ||||
properties: | properties: | ||||
list: | list: | ||||
@@ -3690,6 +3706,26 @@ definitions: | |||||
description: 高于x元 | description: 高于x元 | ||||
type: string | type: string | ||||
type: object | type: object | ||||
md.RegisterReq: | |||||
properties: | |||||
avatar: | |||||
type: string | |||||
mobile: | |||||
type: string | |||||
nickname: | |||||
type: string | |||||
parent_uid: | |||||
example: 上级用户 | |||||
type: string | |||||
password: | |||||
example: 密码 如 123 | |||||
type: string | |||||
type: | |||||
example: app:APP注册、h5:H5注册 admin 后台 | |||||
type: string | |||||
required: | |||||
- mobile | |||||
type: object | |||||
md.ReleaseDynamicReq: | md.ReleaseDynamicReq: | ||||
properties: | properties: | ||||
content: | content: | ||||
@@ -5067,6 +5103,8 @@ definitions: | |||||
union_id: | union_id: | ||||
description: 微信号 | description: 微信号 | ||||
type: string | type: string | ||||
wechat_account: | |||||
type: string | |||||
type: object | type: object | ||||
md.UserManagementUserInfoCancelReq: | md.UserManagementUserInfoCancelReq: | ||||
properties: | properties: | ||||
@@ -9870,6 +9908,37 @@ paths: | |||||
summary: 制度中心-会员中心-标签管理(更新) | summary: 制度中心-会员中心-标签管理(更新) | ||||
tags: | tags: | ||||
- 会员中心 | - 会员中心 | ||||
/api/memberCenter/userManagement/addUser: | |||||
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/balanceDetail: | /api/memberCenter/userManagement/balanceDetail: | ||||
get: | get: | ||||
consumes: | consumes: | ||||