{
  "swagger" : "2.0",
  "info" : {
    "version" : "4.1.2",
    "title" : "Poin App"
  },
  "host" : "{{host}}",
  "basePath" : "{{basePath}}",
  "schemes" : [ "{{schemes}}" ],
  "consumes" : [ "application/json" ],
  "produces" : [ "application/json" ],
  "paths" : {
    "/Manage/clear" : {
      "get" : {
        "description" : "Method Description -- clearConfigVo",
        "operationId" : "clearConfigVo",
        "tags" : [ "ManageResource" ],
        "responses" : {
          "200" : {
            "schema" : {
              "$ref" : "#/definitions/Response"
            },
            "description" : "Response OK"
          }
        }
      }
    },
    "/Manage/page" : {
      "get" : {
        "description" : "Method Description -- getManageList",
        "operationId" : "getManageList",
        "tags" : [ "ManageResource" ],
        "parameters" : [ {
          "name" : "id",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- id"
        }, {
          "name" : "monitorswitch",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- monitorswitch"
        }, {
          "name" : "resourceurl",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- resourceurl"
        }, {
          "name" : "methodtype",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- methodtype"
        }, {
          "name" : "createtime",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- createtime"
        }, {
          "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_ManageBO"
            },
            "description" : "Response OK"
          }
        }
      }
    },
    "/Manage" : {
      "get" : {
        "description" : "Method Description -- getManageAll",
        "operationId" : "getManageAll",
        "tags" : [ "ManageResource" ],
        "responses" : {
          "200" : {
            "schema" : {
              "type" : "array",
              "items" : {
                "$ref" : "#/definitions/ManageBO"
              }
            },
            "description" : "Response OK"
          }
        }
      },
      "post" : {
        "description" : "Method Description -- saveManage",
        "operationId" : "saveManage",
        "tags" : [ "ManageResource" ],
        "parameters" : [ {
          "name" : "managebo",
          "in" : "body",
          "required" : "true",
          "schema" : {
            "$ref" : "#/definitions/ManageBO"
          },
          "description" : "parameter name -- managebo"
        } ],
        "responses" : {
          "200" : {
            "schema" : {
              "$ref" : "#/definitions/ManageBO"
            },
            "description" : "Response OK"
          }
        }
      }
    },
    "/Manage/close/{ids}" : {
      "get" : {
        "description" : "Method Description -- closeManage",
        "operationId" : "closeManage",
        "tags" : [ "ManageResource" ],
        "parameters" : [ {
          "name" : "ids",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- ids"
        } ],
        "responses" : {
          "200" : {
            "schema" : {
              "type" : "string"
            },
            "description" : "Response OK"
          }
        }
      }
    },
    "/Manage/dels/{ids}" : {
      "get" : {
        "description" : "Method Description -- deleteManage",
        "operationId" : "deleteManage",
        "tags" : [ "ManageResource" ],
        "parameters" : [ {
          "name" : "ids",
          "in" : "query",
          "required" : "false",
          "type" : "string",
          "description" : "parameter name -- ids"
        } ],
        "responses" : {
          "200" : {
            "description" : "Response OK"
          }
        }
      }
    }
  },
  "definitions" : {
    "Response" : {
      "type" : "object",
      "properties" : { }
    },
    "ManageBO" : {
      "type" : "object",
      "properties" : {
        "hashCode" : {
          "type" : "integer"
        },
        "id" : {
          "type" : "integer"
        },
        "monitorswitch" : {
          "type" : "string"
        },
        "resourceurl" : {
          "type" : "string"
        },
        "methodtype" : {
          "type" : "string"
        },
        "createtime" : {
          "type" : "string"
        },
        "updatetime" : {
          "type" : "string"
        },
        "app1" : {
          "type" : "string"
        },
        "app2" : {
          "type" : "string"
        },
        "list" : {
          "type" : "string"
        }
      }
    },
    "PagingData_ManageBO" : {
      "type" : "object",
      "properties" : {
        "offset" : {
          "type" : "integer"
        },
        "total" : {
          "type" : "integer"
        },
        "rows" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/ManageBO"
          }
        },
        "limit" : {
          "type" : "integer"
        },
        "sort" : {
          "type" : "string"
        },
        "order" : {
          "type" : "string"
        },
        "search" : {
          "type" : "string"
        }
      }
    }
  }
}