{ "swagger": "2.0", "info": { "description": "CBTC测试服务.", "title": "CBTC测试系统API", "contact": {}, "version": "1.0" }, "host": "localhost:9091", "basePath": "/", "paths": { "/api/v1/category": { "post": { "security": [ { "JwtAuth": [] } ], "description": "创建厂家数据", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "创建厂家信息", "parameters": [ { "type": "string", "name": "config", "in": "query" }, { "type": "integer", "name": "id", "in": "query" }, { "type": "string", "name": "name", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/category/:id": { "get": { "security": [ { "JwtAuth": [] } ], "description": "查询厂家信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "查询厂家信息", "parameters": [ { "type": "integer", "description": "厂家ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/model.Drafting" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } }, "put": { "security": [ { "JwtAuth": [] } ], "description": "修改厂家信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "修改厂家信息", "parameters": [ { "type": "integer", "description": "厂家信息ID", "name": "id", "in": "path", "required": true }, { "type": "string", "name": "config", "in": "query" }, { "type": "integer", "name": "id", "in": "query" }, { "type": "string", "name": "name", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } }, "delete": { "security": [ { "JwtAuth": [] } ], "description": "删除厂家信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "删除厂家信息", "parameters": [ { "type": "integer", "description": "厂家信息ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/category/list": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过厂家名称过滤,查询厂家信息列表", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "查询厂家信息列表", "parameters": [ { "type": "string", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.PageDto" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/category/paging": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过厂家名称过滤,分页查询厂家信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "厂家信息Api" ], "summary": "分页查询厂家信息", "parameters": [ { "type": "string", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.PageDto" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/drafting": { "post": { "security": [ { "JwtAuth": [] } ], "description": "创建草稿数据", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "创建草稿", "parameters": [ { "type": "integer", "name": "category", "in": "query" }, { "type": "integer", "name": "id", "in": "query" }, { "type": "string", "name": "name", "in": "query" }, { "type": "array", "items": { "type": "integer" }, "collectionFormat": "csv", "name": "proto", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/drafting/:id": { "get": { "security": [ { "JwtAuth": [] } ], "description": "查询草稿详情", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "查询草稿详情", "parameters": [ { "type": "integer", "description": "草稿ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/model.Drafting" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } }, "put": { "security": [ { "JwtAuth": [] } ], "description": "修改草稿信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "修改草稿信息", "parameters": [ { "type": "integer", "description": "草稿ID", "name": "id", "in": "path", "required": true }, { "type": "integer", "name": "category", "in": "query" }, { "type": "integer", "name": "id", "in": "query" }, { "type": "string", "name": "name", "in": "query" }, { "type": "array", "items": { "type": "integer" }, "collectionFormat": "csv", "name": "proto", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } }, "delete": { "security": [ { "JwtAuth": [] } ], "description": "删除草稿数据", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "删除草稿数据", "parameters": [ { "type": "integer", "description": "草稿ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/drafting/:id/saveAs": { "post": { "security": [ { "JwtAuth": [] } ], "description": "草稿另存为", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "草稿另存为", "parameters": [ { "type": "integer", "description": "源草稿id", "name": "id", "in": "path", "required": true }, { "type": "integer", "name": "category", "in": "query" }, { "type": "integer", "name": "id", "in": "query" }, { "type": "string", "name": "name", "in": "query" }, { "type": "array", "items": { "type": "integer" }, "collectionFormat": "csv", "name": "proto", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/drafting/paging": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过草稿名称过滤,分页查询草稿", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "草稿Api" ], "summary": "分页查询草稿", "parameters": [ { "type": "string", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.PageDto" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/generate/calculatelink": { "post": { "security": [ { "JwtAuth": [] } ], "description": "根据地图数据新生成计算的link信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "GenerateApi" ], "summary": "根据地图数据新生成计算的link信息", "parameters": [ { "type": "array", "items": { "type": "integer" }, "collectionFormat": "csv", "name": "proto", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/publishedGi/list": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过名称过滤", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "列表查询发布的图形数据", "parameters": [ { "type": "string", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true }, { "type": "string", "name": "time", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/model.PublishedGi" } } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/publishedGi/paging": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过名称过滤", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "分页查询发布的图形数据", "parameters": [ { "type": "string", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true }, { "type": "string", "name": "time", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.PageDto" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/publishedGi/publish": { "post": { "security": [ { "JwtAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "从草稿发布数据", "parameters": [ { "type": "integer", "description": "草稿数据的id", "name": "draftingId", "in": "query" }, { "type": "string", "description": "发布后的名称", "name": "name", "in": "query" }, { "type": "string", "name": "note", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/publishedGi/saveAsDrafting/{id}": { "post": { "security": [ { "JwtAuth": [] } ], "description": "从发布数据拉取信息到草稿", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "从发布数据拉取信息到草稿", "parameters": [ { "type": "integer", "description": "id", "name": "id", "in": "path", "required": true }, { "type": "integer", "description": "草稿数据的id", "name": "draftingId", "in": "query" }, { "type": "string", "description": "发布后的名称", "name": "name", "in": "query" }, { "type": "string", "name": "note", "in": "query" } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/publishedGi/{id}": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过名称过滤", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "id查询发布的图形数据", "parameters": [ { "type": "integer", "description": "id", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/model.PublishedGi" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } }, "delete": { "security": [ { "JwtAuth": [] } ], "description": "可以通过名称过滤", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "发布的图形数据Api" ], "summary": "id删除发布的图形数据", "parameters": [ { "type": "integer", "description": "id", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK" }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/check/data": { "post": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-添加列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "ATS测试仿真地图数据校验", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "description": "ATS测试仿真-地图数据", "name": "RemoveTrainDto", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.CheckMapDataReqDto" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.CheckMapDataRspDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/create": { "post": { "security": [ { "JwtAuth": [] } ], "description": "创建并进入仿真后获取仿真的设备信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "创建并进入仿真后获取仿真的设备信息", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "description": "创建仿真请求", "name": "SimulationCreateReqDto", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.SimulationCreateReqDto" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.SimulationCreateRspDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/destroy/{id}": { "post": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-添加列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "ATS仿真销毁", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "type": "integer", "description": "仿真id", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "string" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/list": { "get": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-添加列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "获取ATS测试系统所有仿真实例的基本信息", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/dto.SimulationInfoRepDto" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/switch/operation": { "post": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-添加列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "获取ATS测试-操作道岔", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "description": "ATS测试仿真-操作道岔", "name": "RemoveTrainDto", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.SwitchOperationReqDto" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "string" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/train/add": { "post": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-添加列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "ATS测试仿真-添加列车", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "description": "ATS测试仿真-添加列车", "name": "AddTrainReqDto", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.AddTrainReqDto" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.AddTrainRspDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/simulation/train/remove": { "post": { "security": [ { "JwtAuth": [] } ], "description": "ATS测试仿真-移除列车", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "ATS测试仿真Api" ], "summary": "ATS测试仿真-移除列车", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true }, { "description": "ATS测试仿真-移除列车", "name": "RemoveTrainDto", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.RemoveTrainDto" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "string" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/user/current": { "get": { "description": "获取当前登录用户信息", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "用户Api" ], "summary": "获取当前登录用户信息", "parameters": [ { "type": "string", "description": "JWT Token", "name": "Authorization", "in": "header", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.RegisterUser" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/user/login": { "post": { "description": "用户登录", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "用户Api" ], "summary": "用户登录", "parameters": [ { "description": "登录信息", "name": "loginInfo", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.LoginDto" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.TokenRespDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/user/paging": { "get": { "security": [ { "JwtAuth": [] } ], "description": "可以通过用户名称过滤,分页查询用户", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "用户Api" ], "summary": "分页查询用户", "parameters": [ { "type": "string", "description": "手机号", "name": "mobile", "in": "query" }, { "type": "string", "description": "用户名", "name": "name", "in": "query" }, { "type": "integer", "example": 1, "description": "页码", "name": "current", "in": "query", "required": true }, { "type": "integer", "example": 10, "description": "页面行数", "name": "size", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/dto.PageDto" } }, "401": { "description": "Unauthorized", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "404": { "description": "Not Found", "schema": { "$ref": "#/definitions/dto.ErrorDto" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } }, "/api/v1/user/register": { "post": { "description": "用户注册", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "用户Api" ], "summary": "用户注册", "parameters": [ { "description": "用户注册信息", "name": "loginInfo", "in": "body", "required": true, "schema": { "$ref": "#/definitions/dto.RegisterUser" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "string" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/dto.ErrorDto" } } } } } }, "definitions": { "dto.AddTrainReqDto": { "type": "object", "properties": { "headLinkId": { "description": "车头所在link的索引", "type": "string" }, "headLinkOffset": { "description": "车头所在link内的偏移量,单位为mm", "type": "integer" }, "simulationId": { "description": "仿真id", "type": "string" }, "up": { "description": "列车方向,true-上行,false-下行", "type": "boolean" } } }, "dto.AddTrainRspDto": { "type": "object", "properties": { "simulationId": { "description": "仿真id", "type": "string" }, "trainId": { "description": "新添加的列车的索引", "type": "string" } } }, "dto.CheckMapDataReqDto": { "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "type": "integer" } } } }, "dto.CheckMapDataRspDto": { "type": "object", "properties": { "errors": { "type": "array", "items": { "type": "string" } }, "success": { "type": "boolean" } } }, "dto.ErrorDto": { "type": "object", "properties": { "code": { "type": "integer" }, "message": { "type": "string" } } }, "dto.LoginDto": { "type": "object", "required": [ "account", "password" ], "properties": { "account": { "description": "账号", "type": "string", "example": "17791995809" }, "password": { "description": "加密密码", "type": "string", "example": "95129dbaace576e46f41a629e6f35d5c" } } }, "dto.OrderItem": { "type": "object", "properties": { "asc": { "type": "boolean" }, "column": { "type": "string" } } }, "dto.PageDto": { "type": "object", "required": [ "page", "size" ], "properties": { "orders": { "description": "排序项", "type": "array", "items": { "$ref": "#/definitions/dto.OrderItem" } }, "page": { "description": "页码", "type": "integer", "example": 1 }, "records": {}, "size": { "description": "页面行数", "type": "integer", "example": 10 }, "total": { "type": "integer" } } }, "dto.RegisterUser": { "type": "object", "properties": { "id": { "type": "integer" }, "mobile": { "description": "手机号", "type": "string" }, "name": { "description": "名字", "type": "string" }, "password": { "description": "密码", "type": "string" }, "register_time": { "description": "注册时间", "type": "string" } } }, "dto.RemoveTrainDto": { "type": "object", "properties": { "simulationId": { "description": "仿真id", "type": "string" }, "trainId": { "description": "新添加的列车的索引", "type": "string" } } }, "dto.SimulationCreateReqDto": { "type": "object", "properties": { "mapId": { "description": "地图id", "type": "integer" } } }, "dto.SimulationCreateRspDto": { "type": "object", "properties": { "mapId": { "description": "地图id", "type": "integer" }, "simulationId": { "description": "仿真id", "type": "string" } } }, "dto.SimulationInfoRepDto": { "type": "object", "properties": { "mapId": { "type": "string" }, "simulationId": { "type": "string" } } }, "dto.SwitchOperationReqDto": { "type": "object", "required": [ "simulationId", "switchIndex" ], "properties": { "simulationId": { "type": "string" }, "switchIndex": { "type": "string" }, "turnNormal": { "type": "boolean" }, "turnReverse": { "type": "boolean" } } }, "dto.TokenRespDto": { "type": "object", "properties": { "code": { "type": "integer" }, "expire": { "type": "string" }, "token": { "type": "string" } } }, "model.Drafting": { "type": "object", "properties": { "category": { "description": "厂家id", "type": "integer" }, "created_at": { "description": "创建时间", "type": "string" }, "creator_id": { "description": "创建人id", "type": "integer" }, "id": { "description": "id", "type": "integer" }, "name": { "description": "草稿图名称", "type": "string" }, "proto": { "description": "绘图数据", "type": "array", "items": { "type": "integer" } }, "update_at": { "description": "修改时间", "type": "string" } } }, "model.PublishedGi": { "type": "object", "properties": { "category": { "description": "厂家信息", "type": "integer" }, "id": { "description": "id", "type": "integer" }, "name": { "description": "发布图形界面名称", "type": "string" }, "note": { "description": "发布描述", "type": "string" }, "proto": { "description": "图形界面数据", "type": "array", "items": { "type": "integer" } }, "publish_at": { "description": "发布时间", "type": "string" }, "status": { "description": "显示状态", "type": "integer" }, "user_id": { "description": "发布用户id", "type": "integer" } } } }, "securityDefinitions": { "JwtAuth": { "type": "apiKey", "name": "Authorization", "in": "header" } } }