修复中间件跨域问题
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
|
||||
// This file was generated by swaggo/swag at
|
||||
// 2020-07-07 10:12:31.2264113 +0800 CST m=+0.088765101
|
||||
// 2020-08-20 11:59:55.622609 +0800 CST m=+0.106561201
|
||||
|
||||
package docs
|
||||
|
||||
@@ -1534,6 +1534,99 @@ var doc = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"/simpleUploader/checkFileMd5": {
|
||||
"get": {
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "测试文件是否已经存在和判断已经上传过的切片",
|
||||
"name": "md5",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"查询成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/simpleUploader/mergeFileMd5": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"SimpleUploader"
|
||||
],
|
||||
"summary": "合并文件",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "合并文件",
|
||||
"name": "md5",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"合并成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/simpleUploader/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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/sysDictionary/createSysDictionary": {
|
||||
"post": {
|
||||
"security": [
|
||||
@@ -2002,6 +2095,45 @@ var doc = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"/sysOperationRecord/deleteSysOperationRecordByIds": {
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"SysOperationRecord"
|
||||
],
|
||||
"summary": "批量删除SysOperationRecord",
|
||||
"parameters": [
|
||||
{
|
||||
"description": "批量删除SysOperationRecord",
|
||||
"name": "data",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/request.IdsReq"
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{\"success\":true,\"data\":{},\"msg\":\"删除成功\"}",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/sysOperationRecord/findSysOperationRecord": {
|
||||
"get": {
|
||||
"security": [
|
||||
@@ -2711,6 +2843,9 @@ var doc = `{
|
||||
"dataTypeLong": {
|
||||
"type": "string"
|
||||
},
|
||||
"dictType": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldDesc": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -2819,6 +2954,12 @@ var doc = `{
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/model.SysBaseMenuParameter"
|
||||
}
|
||||
},
|
||||
"parentId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -2833,6 +2974,23 @@ var doc = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"model.SysBaseMenuParameter": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"key": {
|
||||
"type": "string"
|
||||
},
|
||||
"sysBaseMenuId": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"value": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"model.SysDictionary": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -3070,6 +3228,17 @@ var doc = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"request.IdsReq": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"request.PageInfo": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Reference in New Issue
Block a user