Browse Source

feat:添加readme.md文件

fangfubing 1 month ago
parent
commit
78d3166e60
2 changed files with 7 additions and 16 deletions
  1. 7 0
      README.MD
  2. 0 16
      api/backend/LargeScreenData.proto

+ 7 - 0
README.MD

@@ -0,0 +1,7 @@
+一、编写接口相关的protobuf文件
+    文件存放地址在api目录中,通过不同的平台再新增不同的目录
+
+二、使用protobuf文件生成swagger文件导入apifox中
+    1、在项目根目录中执行 make all命令
+    2、执行后再gen/swagger目录中会生成相应的swagger文件
+    3、使用swagger文件导入apifox中生产接口文档

+ 0 - 16
api/backend/LargeScreenData.proto

@@ -36,14 +36,6 @@ service LargeScreenDataService {
     };
   }
 
-  // 换电柜一周换电次数
-  //rpc GetExchangeCount(GetExchangeCountReq) returns (GetExchangeCountRes) {
-  //  option (google.api.http) = {
-  //      post : "/largeScreenData/data/get-exchange-count",
-  //      body : "*",
-  //  };
-  //}
-
   // 充电桩一周充电度数
   rpc GetChargePileCount(GetChargePileCountReq) returns (GetChargePileCountRes) {
     option (google.api.http) = {
@@ -67,14 +59,6 @@ service LargeScreenDataService {
         body : "*",
     };
   }
-
-  // 换电柜的实时数据
-  //rpc GetExchangeInfo(GetExchangeInfoReq) returns (GetExchangeInfoRes) {
-  //  option (google.api.http) = {
-  //      post : "/largeScreenData/data/get-exchange-info",
-  //      body : "*",
-  //  };
-  //}
 }
 
 message GetDeviceCountReq {