123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068 |
- // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
- // This file was generated by swaggo/swag
- package docs
- import (
- "bytes"
- "encoding/json"
- "strings"
- "github.com/alecthomas/template"
- "github.com/swaggo/swag"
- )
- var doc = `{
- "schemes": {{ marshal .Schemes }},
- "swagger": "2.0",
- "info": {
- "description": "{{.Description}}",
- "title": "{{.Title}}",
- "contact": {},
- "version": "{{.Version}}"
- },
- "host": "{{.Host}}",
- "basePath": "{{.BasePath}}",
- "paths": {
- "/base/getContentList": {
- "get": {
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Base"
- ],
- "summary": "获取类容列表",
- "parameters": [
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "type": "string",
- "description": "类型(norm 评测标准 banner 轮播 bulletin 公告)",
- "name": "type",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/base/loginwx": {
- "post": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "Base"
- ],
- "summary": "用户登录",
- "parameters": [
- {
- "description": "code",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.LoginWx"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"登陆成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/base/register": {
- "post": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "Base"
- ],
- "summary": "用户申请登陆",
- "parameters": [
- {
- "description": "用户名, 昵称,手机号,openid ",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.Register"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"登陆成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/place/createPlace": {
- "post": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Place"
- ],
- "summary": "站点添加",
- "parameters": [
- {
- "description": "站点名称, 站点定位,站点类型,站点区域 ",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.Place"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"创建成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/sysDictionary/findSysDictionary": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Dict"
- ],
- "summary": "获取字典",
- "parameters": [
- {
- "type": "string",
- "description": "字典类型(部门列表 department 站点类型 site_type 问题列表 site_1 1为站点类型的值)",
- "name": "type",
- "in": "query"
- },
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/sysDictionary/findSysDictionaryName": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Dict"
- ],
- "summary": "获取字典",
- "parameters": [
- {
- "type": "string",
- "description": "字典名称(城市类型)",
- "name": "name",
- "in": "query"
- },
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/place/deletePlace": {
- "delete": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Place"
- ],
- "summary": "根据id删除站点",
- "parameters": [
- {
- "description": "根据id删除站点",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.findByID"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"删除成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/place/findPlace": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Place"
- ],
- "summary": "用id查询站点详情",
- "parameters": [
- {
- "type": "integer",
- "description": "id",
- "name": "ID",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"查询成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/place/updatePlace": {
- "put": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Place"
- ],
- "summary": "更新站点信息",
- "parameters": [
- {
- "description": "更新站点信息",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.PlaceUpdate"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"更新成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/place/getPlaceList": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Place"
- ],
- "summary": "获取站点列表",
- "parameters": [
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "type": "string",
- "description": "城市名称模糊查询",
- "name": "name",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/problemInfo/updateProblemInfo": {
- "put": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "ProblemInfo"
- ],
- "summary": "处理问题",
- "parameters": [
- {
- "description": "处理问题",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.ProblemInfoC"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"更新成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/problemInfo/createProblemInfo": {
- "post": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "ProblemInfo"
- ],
- "summary": "发布问题",
- "parameters": [
- {
- "description": "发布问题",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.ProblemInfo"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"发布问题成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/problemInfo/findProblemInfo": {
- "get": {
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "ProblemInfo"
- ],
- "summary": "用id查询问题详情",
- "parameters": [
- {
- "type": "integer",
- "description": "id",
- "name": "ID",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"查询成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/problemInfo/getProblemInfoList": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "ProblemInfo"
- ],
- "summary": "获取问题列表",
- "parameters": [
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "type": "string",
- "description": "状态(Untreated 未处理 Processed 已处理)",
- "name": "status",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "发布人",
- "name": "oper",
- "in": "query"
- },
- {
- "type": "string",
- "description": "站点类型",
- "name": "siteType",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
-
- "/content/createContent": {
- "post": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Content"
- ],
- "summary": "发布内容",
- "parameters": [
- {
- "description": "发布内容",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.Content"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"发布问题成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/content/findContent": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Content"
- ],
- "summary": "获取内容详情",
- "parameters": [
- {
- "type": "integer",
- "description": "id",
- "name": "ID",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"查询成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/content/getContentList": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Content"
- ],
- "summary": "获取类容列表",
- "parameters": [
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "type": "string",
- "description": "类型(norm 评测标准 banner 轮播 bulletin 公告)",
- "name": "type",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/fileUploadAndDownload/upload": {
- "post": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "multipart/form-data"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "ExaFileUploadAndDownload"
- ],
- "summary": "上传文件示例",
- "parameters": [
- {
- "type": "file",
- "description": "上传文件示例",
- "name": "file",
- "in": "formData",
- "required": true
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"上传成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/user/getUserInfo": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "SysUser"
- ],
- "summary": "获取用户信息",
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- },
- "/user/setUserName": {
- "put": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "SysUser"
- ],
- "summary": "设置用户信息",
- "parameters": [
- {
- "description": "只用提交 ID, userName 就可以",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/system.SysUser"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "{\"success\":true,\"data\":{},\"msg\":\"设置成功\"}",
- "schema": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "definitions": {
- "request.findByID": {
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- }
- }
- },
- "request.LoginWx": {
- "type": "object",
- "properties": {
- "code": {
- "description": "登陆微信响应code",
- "type": "string"
- }
- }
- },
- "request.Place": {
- "type": "object",
- "properties": {
- "name": {
- "description": "站点名称",
- "type": "string"
- },
- "position": {
- "description": "站点定位",
- "type": "string"
- },
- "type": {
- "description": "站点类型",
- "type": "string"
- },
- "region": {
- "description": "站点区域",
- "type": "string"
- }
- }
- },
- "request.PlaceUpdate": {
- "type": "object",
- "properties": {
- "id": {
- "description": "主键ID",
- "type": "integer"
- },
- "name": {
- "description": "站点名称",
- "type": "string"
- },
- "position": {
- "description": "站点定位",
- "type": "string"
- },
- "type": {
- "description": "站点类型",
- "type": "string"
- },
- "region": {
- "description": "站点区域",
- "type": "string"
- }
- }
- },
- "request.ProblemInfo": {
- "type": "object",
- "properties": {
- "imgs": {
- "description": "问题图片(多图用|分割)",
- "type": "string"
- },
- "remark": {
- "description": "问题备注",
- "type": "string"
- },
- "video": {
- "description": "问题视频",
- "type": "string"
- },
- "siteId": {
- "description": "站点id",
- "type": "string"
- },
- "matter": {
- "description": "问题ids(用|分割)",
- "type": "string"
- },
- "department": {
- "description": "责任部门",
- "type": "string"
- }
- }
- },
- "request.ProblemInfoC": {
- "type": "object",
- "properties": {
- "ID": {
- "description": "问题ID",
- "type": "string"
- },
- "handler": {
- "description": "当前登陆人ID",
- "type": "string"
- },
- "status": {
- "description": "处理状态改为(Processed)",
- "type": "string"
- },
- "handText": {
- "description": "处理内容",
- "type": "string"
- },
- "handImgs": {
- "description": "处理图片(多图用|隔开)",
- "type": "string"
- },
- "imgs": {
- "description": "问题图片(多图用|分割)",
- "type": "string"
- },
- "video": {
- "description": "问题视频",
- "type": "string"
- },
- "siteId": {
- "description": "站点id",
- "type": "string"
- },
- "matter": {
- "description": "问题ids(用|分割)",
- "type": "string"
- },
- "department": {
- "description": "责任部门",
- "type": "string"
- }
- }
- },
- "request.Content": {
- "type": "object",
- "properties": {
- "oper": {
- "description": "发布人",
- "type": "string"
- },
- "title": {
- "description": "标题",
- "type": "string"
- },
- "subtitle": {
- "description": "副标题(仅公告可用)",
- "type": "string"
- },
- "text": {
- "description": "内容",
- "type": "string"
- },
- "imgs": {
- "description": "图片(多图用|分割)",
- "type": "string"
- },
- "type": {
- "description": "类型(bulletin 公告|norm 评测标准|banner 首页轮播)",
- "type": "string"
- }
- }
- },
- "request.Register": {
- "type": "object",
- "properties": {
- "nickName": {
- "description": "微信昵称",
- "type": "string"
- },
- "openId": {
- "description": "openId",
- "type": "string"
- },
- "headerImg": {
- "description": "微信头像",
- "type": "string"
- },
- "username": {
- "description": "手机号",
- "type": "string"
- }
- }
- },
- "system.SysUser": {
- "type": "object",
- "properties": {
- "activeColor": {
- "description": "活跃颜色",
- "type": "string"
- },
- "authorityId": {
- "description": "用户角色ID",
- "type": "string"
- },
- "baseColor": {
- "description": "基础颜色",
- "type": "string"
- },
- "createdAt": {
- "description": "创建时间",
- "type": "string"
- },
- "headerImg": {
- "description": "用户头像",
- "type": "string"
- },
- "ID": {
- "description": "主键ID",
- "type": "integer"
- },
- "nickName": {
- "description": "用户昵称",
- "type": "string"
- },
- "sideMode": {
- "description": "用户侧边主题",
- "type": "string"
- },
- "updatedAt": {
- "description": "更新时间",
- "type": "string"
- },
- "userName": {
- "description": "用户名",
- "type": "string"
- },
- "uuid": {
- "description": "用户UUID",
- "type": "string"
- }
- }
- },
- },
- "securityDefinitions": {
- "ApiKeyAuth": {
- "type": "apiKey",
- "name": "x-token",
- "in": "header"
- }
- }
- }`
- type swaggerInfo struct {
- Version string
- Host string
- BasePath string
- Schemes []string
- Title string
- Description string
- }
- // SwaggerInfo holds exported Swagger Info so clients can modify it
- var SwaggerInfo = swaggerInfo{
- Version: "0.0.1.txt",
- Host: "",
- BasePath: "/api/",
- Schemes: []string{},
- Title: "Swagger Example API",
- Description: "请求响应code 成功是0 未注册1 审核中2 错误是7",
- }
- type s struct{}
- func (s *s) ReadDoc() string {
- sInfo := SwaggerInfo
- sInfo.Description = strings.Replace(sInfo.Description, "\n", "\\n", -1)
- t, err := template.New("swagger_info").Funcs(template.FuncMap{
- "marshal": func(v interface{}) string {
- a, _ := json.Marshal(v)
- return string(a)
- },
- }).Parse(doc)
- if err != nil {
- return doc
- }
- var tpl bytes.Buffer
- if err := t.Execute(&tpl, sInfo); err != nil {
- return doc
- }
- return tpl.String()
- }
- func init() {
- swag.Register(swag.Name, &s{})
- }
|