{ "swagger" : "2.0", "info" : { "version" : "4.1.2", "title" : "Poin App" }, "host" : "{{host}}", "basePath" : "{{basePath}}", "schemes" : [ "{{schemes}}" ], "consumes" : [ "application/json" ], "produces" : [ "application/json" ], "paths" : { "/flowmanage/copy/{id}" : { "post" : { "description" : "Method Description -- copy", "operationId" : "copy", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "id", "in" : "path", "required" : "true", "type" : "integer", "description" : "parameter name -- id" } ], "responses" : { "200" : { "schema" : { "type" : "string" }, "description" : "Response OK" } } } }, "/flowmanage/issueFlow/{id}" : { "post" : { "description" : "Method Description -- issueFlow", "operationId" : "issueFlow", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "id", "in" : "path", "required" : "true", "type" : "integer", "description" : "parameter name -- id" } ], "responses" : { "200" : { "schema" : { "type" : "string" }, "description" : "Response OK" } } } }, "/flowmanage/exportFlow" : { "post" : { "description" : "Method Description -- exportFlow", "operationId" : "exportFlow", "tags" : [ "FlowManageResource" ], "consumes" : [ "application/json" ], "parameters" : [ ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/Response" }, "description" : "Response OK" } } } }, "/flowmanage/importFlow" : { "post" : { "description" : "Method Description -- importConfig", "operationId" : "importConfig", "tags" : [ "FlowManageResource" ], "produces" : [ "application/json" ], "consumes" : [ "multipart/form-data" ], "parameters" : [ { "name" : "multipartformdatainput", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/MultipartFormDataInput" }, "description" : "parameter name -- multipartformdatainput" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/Response" }, "description" : "Response OK" } } } }, "/flowmanage/findByCondition" : { "get" : { "description" : "Method Description -- findByCondition", "operationId" : "findByCondition", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "flowId", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- flowId" }, { "name" : "flowDesc", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- flowDesc" }, { "name" : "offset", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- offset" }, { "name" : "limit", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- limit" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/PagingData_FlowManageTempBo" }, "description" : "Response OK" } } } }, "/flowmanage/deleteFlow/{id}" : { "post" : { "description" : "Method Description -- deleteFlow", "operationId" : "deleteFlow", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "id", "in" : "path", "required" : "true", "type" : "integer", "description" : "parameter name -- id" } ], "responses" : { "200" : { "schema" : { "type" : "string" }, "description" : "Response OK" } } } }, "/flowmanage" : { "" : { "description" : "Method Description -- importDataHandle", "operationId" : "importDataHandle", "tags" : [ "FlowManageResource" ], "parameters" : [ ], "responses" : { "200" : { "description" : "Response OK" } } } }, "/flowmanage/saveFlow" : { "post" : { "description" : "Method Description -- saveFlow", "operationId" : "saveFlow", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "flowmanagetempbo", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/FlowManageTempBo" }, "description" : "parameter name -- flowmanagetempbo" } ], "responses" : { "200" : { "schema" : { "type" : "string" }, "description" : "Response OK" } } } }, "/flowmanage/updateFlow/{id}" : { "get" : { "description" : "Method Description -- editById", "operationId" : "editById", "tags" : [ "FlowManageResource" ], "parameters" : [ { "name" : "id", "in" : "path", "required" : "true", "type" : "string", "description" : "parameter name -- id" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/FlowManageTempBo" }, "description" : "Response OK" } } } } }, "definitions" : { "Response" : { "type" : "object", "properties" : { } }, "MultipartFormDataInput" : { "type" : "object", "properties" : { } }, "FlowManageTempBo" : { "type" : "object", "properties" : { "id" : { "type" : "integer" }, "flowId" : { "type" : "string" }, "jobGroup" : { "type" : "integer" }, "flowDesc" : { "type" : "string" }, "flowCron" : { "type" : "string" }, "addTime" : { "type" : "string" }, "updateTime" : { "type" : "string" }, "author" : { "type" : "string" }, "flowXmlData" : { "type" : "string" }, "flowNodeDataStr" : { "type" : "string" }, "flowNodeData" : { "type" : "array", "items" : { "$ref" : "#/definitions/Object" } }, "lastVersion" : { "type" : "integer" }, "connectsStr" : { "type" : "string" }, "connects" : { "type" : "array", "items" : { "$ref" : "#/definitions/Object" } }, "fileCoordFlag" : { "type" : "string" }, "filePath" : { "type" : "string" }, "fileBean" : { "type" : "string" }, "fileCron" : { "type" : "string" }, "alarmNumLimit" : { "type" : "integer" }, "expectExecuteTimes" : { "type" : "integer" } } }, "PagingData_FlowManageTempBo" : { "type" : "object", "properties" : { "offset" : { "type" : "integer" }, "total" : { "type" : "integer" }, "sort" : { "type" : "string" }, "limit" : { "type" : "integer" }, "order" : { "type" : "string" }, "rows" : { "type" : "array", "items" : { } }, "search" : { "type" : "string" } } } } }