mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-21 04:29:32 +00:00
更新插件仓库
This commit is contained in:
+52
-102
@@ -8,108 +8,6 @@
|
||||
},
|
||||
"basePath": "/",
|
||||
"paths": {
|
||||
"/SimpleUploaderApi/checkFileMd5": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"SimpleUploader"
|
||||
],
|
||||
"summary": "断点续传插件版示例",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "md5",
|
||||
"name": "md5",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"查询成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/SimpleUploaderApi/mergeFileMd5": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"SimpleUploader"
|
||||
],
|
||||
"summary": "合并文件",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "md5",
|
||||
"name": "md5",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"合并成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/SimpleUploaderApi/upload": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"consumes": [
|
||||
"multipart/form-data"
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"SimpleUploader"
|
||||
],
|
||||
"summary": "断点续传插件版示例",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "file",
|
||||
"description": "断点续传插件版示例",
|
||||
"name": "file",
|
||||
"in": "formData",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"切片创建成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/createApi": {
|
||||
"post": {
|
||||
"security": [
|
||||
@@ -1511,6 +1409,41 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/email/sendEmail": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"System"
|
||||
],
|
||||
"summary": "发送邮件",
|
||||
"parameters": [
|
||||
{
|
||||
"description": "发送邮件必须的参数",
|
||||
"name": "data",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/response.Email"
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"发送成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/excel/downloadTemplate": {
|
||||
"get": {
|
||||
"security": [
|
||||
@@ -4360,6 +4293,23 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"response.Email": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"body": {
|
||||
"description": "邮件内容",
|
||||
"type": "string"
|
||||
},
|
||||
"subject": {
|
||||
"description": "邮件标题",
|
||||
"type": "string"
|
||||
},
|
||||
"to": {
|
||||
"description": "邮件发送给谁",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response.SysAuthorityCopyResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user