Bläddra i källkod

feat: 添加换电柜服务

fangfubing 1 månad sedan
förälder
incheckning
764b943a79
2 ändrade filer med 139 tillägg och 0 borttagningar
  1. 31 0
      api/backend/Cabinet.proto
  2. 108 0
      gen/swagger/api/backend/Cabinet.swagger.json

+ 31 - 0
api/backend/Cabinet.proto

@@ -0,0 +1,31 @@
+syntax = "proto3";
+
+import "google/api/annotations.proto";
+import "google/protobuf/descriptor.proto";
+import "protoc-gen-openapiv2/options/annotations.proto";
+
+option go_package = "your/v1";
+option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
+  info : {title : "换电柜", version : "1.0", description : "换电柜模块"}
+  host : ""
+};
+
+// 大屏监控数据统计
+service CabinetService {
+  // 变更启用禁用状态
+  rpc ChangeEnable(ChangeEnableReq) returns (ChangeEnableRes) {
+    option (google.api.http) = {
+        post : "/cabinet/change-enable",
+        body : "*",
+    };
+  };
+}
+
+message ChangeEnableReq {
+    // 机柜id
+    string dev_id = 1;
+    // 状态  1启用 2禁用
+    int32 enable = 2;
+}
+message ChangeEnableRes {
+}

+ 108 - 0
gen/swagger/api/backend/Cabinet.swagger.json

@@ -0,0 +1,108 @@
+{
+  "swagger": "2.0",
+  "info": {
+    "title": "换电柜",
+    "description": "换电柜模块",
+    "version": "1.0"
+  },
+  "tags": [
+    {
+      "name": "大屏监控数据统计"
+    }
+  ],
+  "consumes": [
+    "application/json"
+  ],
+  "produces": [
+    "application/json"
+  ],
+  "paths": {
+    "/cabinet/change-enable": {
+      "post": {
+        "summary": "变更启用禁用状态",
+        "operationId": "CabinetService_ChangeEnable",
+        "responses": {
+          "200": {
+            "description": "A successful response.",
+            "schema": {
+              "$ref": "#/definitions/ChangeEnableRes"
+            }
+          },
+          "default": {
+            "description": "An unexpected error response.",
+            "schema": {
+              "$ref": "#/definitions/rpcStatus"
+            }
+          }
+        },
+        "parameters": [
+          {
+            "name": "body",
+            "in": "body",
+            "required": true,
+            "schema": {
+              "$ref": "#/definitions/ChangeEnableReq"
+            }
+          },
+          {
+            "name": "r",
+            "description": "接口地址",
+            "in": "query",
+            "required": true,
+            "example": "cabinet/change-enable"
+          }
+        ],
+        "tags": [
+          "大屏监控数据统计"
+        ]
+      }
+    }
+  },
+  "definitions": {
+    "ChangeEnableReq": {
+      "type": "object",
+      "properties": {
+        "dev_id": {
+          "type": "string",
+          "title": "机柜id"
+        },
+        "enable": {
+          "type": "integer",
+          "format": "int32",
+          "title": "状态  1启用 2禁用"
+        }
+      }
+    },
+    "ChangeEnableRes": {
+      "type": "object"
+    },
+    "protobufAny": {
+      "type": "object",
+      "properties": {
+        "@type": {
+          "type": "string"
+        }
+      },
+      "additionalProperties": {}
+    },
+    "rpcStatus": {
+      "type": "object",
+      "properties": {
+        "code": {
+          "type": "integer",
+          "format": "int32"
+        },
+        "message": {
+          "type": "string"
+        },
+        "details": {
+          "type": "array",
+          "items": {
+            "type": "object",
+            "$ref": "#/definitions/protobufAny"
+          }
+        }
+      }
+    }
+  }
+}