Browse Source

会员加入回收站

会员删除
master
huangjiajun 6 days ago
parent
commit
05ef4ce1c1
3 changed files with 43 additions and 5 deletions
  1. +16
    -2
      docs/docs.go
  2. +16
    -2
      docs/swagger.json
  3. +11
    -1
      docs/swagger.yaml

+ 16
- 2
docs/docs.go View File

@@ -6847,7 +6847,7 @@ const docTemplate = `{
"in": "body", "in": "body",
"required": true, "required": true,
"schema": { "schema": {
"$ref": "#/definitions/md.UserManagementUserInfoReq"
"$ref": "#/definitions/md.UserManagementUserInfoCancelReq"
} }
} }
], ],
@@ -16227,11 +16227,25 @@ const docTemplate = `{
} }
} }
}, },
"md.UserManagementUserInfoCancelReq": {
"type": "object",
"properties": {
"uid": {
"type": "string",
"example": "多个逗号隔开"
}
}
},
"md.UserManagementUserInfoReq": { "md.UserManagementUserInfoReq": {
"type": "object", "type": "object",
"properties": { "properties": {
"parent_uid": {
"type": "string",
"example": "参考下智莺 保留关系时候的选择用户"
},
"uid": { "uid": {
"type": "string"
"type": "string",
"example": "多个逗号隔开"
} }
} }
}, },


+ 16
- 2
docs/swagger.json View File

@@ -6839,7 +6839,7 @@
"in": "body", "in": "body",
"required": true, "required": true,
"schema": { "schema": {
"$ref": "#/definitions/md.UserManagementUserInfoReq"
"$ref": "#/definitions/md.UserManagementUserInfoCancelReq"
} }
} }
], ],
@@ -16219,11 +16219,25 @@
} }
} }
}, },
"md.UserManagementUserInfoCancelReq": {
"type": "object",
"properties": {
"uid": {
"type": "string",
"example": "多个逗号隔开"
}
}
},
"md.UserManagementUserInfoReq": { "md.UserManagementUserInfoReq": {
"type": "object", "type": "object",
"properties": { "properties": {
"parent_uid": {
"type": "string",
"example": "参考下智莺 保留关系时候的选择用户"
},
"uid": { "uid": {
"type": "string"
"type": "string",
"example": "多个逗号隔开"
} }
} }
}, },


+ 11
- 1
docs/swagger.yaml View File

@@ -4899,9 +4899,19 @@ definitions:
description: 微信号 description: 微信号
type: string type: string
type: object type: object
md.UserManagementUserInfoCancelReq:
properties:
uid:
example: 多个逗号隔开
type: string
type: object
md.UserManagementUserInfoReq: md.UserManagementUserInfoReq:
properties: properties:
parent_uid:
example: 参考下智莺 保留关系时候的选择用户
type: string
uid: uid:
example: 多个逗号隔开
type: string type: string
type: object type: object
md.UserRealName: md.UserRealName:
@@ -9802,7 +9812,7 @@ paths:
name: req name: req
required: true required: true
schema: schema:
$ref: '#/definitions/md.UserManagementUserInfoReq'
$ref: '#/definitions/md.UserManagementUserInfoCancelReq'
produces: produces:
- application/json - application/json
responses: responses:


Loading…
Cancel
Save