LargeScreenData.proto 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. syntax = "proto3";
  2. package proto.api;
  3. import "google/api/annotations.proto";
  4. import "google/protobuf/descriptor.proto";
  5. import "protoc-gen-openapiv2/options/annotations.proto";
  6. option go_package = "api/v1";
  7. option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  8. info : {title : "大屏统计数据", version : "1.0", description : "大屏监控"}
  9. host : ""
  10. };
  11. // API接口/后台/大屏监控数据统计
  12. service LargeScreenDataService {
  13. // 获取设备的数量
  14. rpc GetDeviceCount(GetDeviceCountReq) returns (GetDeviceCountRes) {
  15. option (google.api.http) = {
  16. post : "/largeScreenData/data/get-device-count",
  17. body : "*",
  18. };
  19. };
  20. // 异常数据
  21. rpc GetAbnormalData(GetAbnormalDataReq) returns (GetAbnormalDataRes) {
  22. option (google.api.http) = {
  23. post : "/largeScreenData/data/get-abnormal-data",
  24. body : "*",
  25. };
  26. };
  27. // 设备地区分布
  28. rpc GetDeviceCountArea(GetDeviceCountAreaReq) returns (GetDeviceCountAreaRes) {
  29. option (google.api.http) = {
  30. post : "/largeScreenData/data/get-device-count-area",
  31. body : "*",
  32. };
  33. }
  34. // 锂电池行驶里程和电池循环次数
  35. rpc GetBatteryMileageAndCycles(GetBatteryMileageAndCyclesReq) returns (GetBatteryMileageAndCyclesRes) {
  36. option (google.api.http) = {
  37. post : "/largeScreenData/data/get-battery-mileage-and-cycles",
  38. body : "*",
  39. };
  40. };
  41. // 获取告警列表
  42. rpc GetAlarmList(GetAlarmListReq) returns (GetAlarmListRes) {
  43. option (google.api.http) = {
  44. post : "/largeScreenData/data/get-alarm-list",
  45. body : "*",
  46. };
  47. }
  48. // 充电桩一周充电度数
  49. rpc GetChargePileCount(GetChargePileCountReq) returns (GetChargePileCountRes) {
  50. option (google.api.http) = {
  51. post : "/largeScreenData/data/get-charge-pile-count",
  52. body : "*",
  53. };
  54. }
  55. // 电池的实时数据
  56. rpc GetBatteryInfo(GetBatteryInfoReq) returns (GetBatteryInfoRes) {
  57. option (google.api.http) = {
  58. post : "/largeScreenData/data/get-battery-info",
  59. body : "*",
  60. };
  61. }
  62. // 充电桩的实时数据
  63. rpc GetChrpannelInfo(GetChrpannelInfoReq) returns (GetChrpannelInfoRes) {
  64. option (google.api.http) = {
  65. post : "/largeScreenData/data/get-chrpannel-info",
  66. body : "*",
  67. };
  68. }
  69. }
  70. message GetDeviceCountReq {
  71. // 开始时间时间戳
  72. //int64 startTime = 1;
  73. // 结束时间时间戳
  74. //int64 endTime = 2;
  75. // 省份的code
  76. string province_code = 1;
  77. }
  78. message GetDeviceCountRes {
  79. message AreaCount{
  80. // 地区
  81. string area = 1;
  82. // 电池数量
  83. int32 count = 2;
  84. }
  85. // 电池数量
  86. int32 battery_count = 1;
  87. // 换电柜数量
  88. int32 exchange_cabinet_count = 2;
  89. // 充电桩数量
  90. int32 charge_pile_count = 3;
  91. // 电池数量的地区分布数组
  92. repeated AreaCount battery_count_areas = 4;
  93. }
  94. message GetDeviceCountAreaReq {
  95. // 省份的code
  96. string province_code = 1;
  97. // 城市的code
  98. string city_code = 2;
  99. }
  100. message GetDeviceCountAreaRes {
  101. message GPS{
  102. }
  103. // 所有电池的经纬度
  104. repeated GPS battery_gps = 1;
  105. // 省份地区分布数组
  106. repeated GetDeviceCountRes.AreaCount battery_province_areas = 2;
  107. // 所有充电桩的经纬度
  108. repeated GPS charge_pile_gps = 3;
  109. // 充电桩的省份地区分布数组
  110. repeated GetDeviceCountRes.AreaCount charge_pile_province_areas = 4;
  111. }
  112. message GetBatteryMileageAndCyclesReq {
  113. }
  114. message GetBatteryMileageAndCyclesRes {
  115. message BatteryMileage {
  116. // 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
  117. int32 begin = 1;
  118. // 电池数量
  119. int32 data = 2;
  120. }
  121. // 电池行驶里程数组
  122. repeated BatteryMileage mileage = 1;
  123. message BatteryCycles {
  124. message BatteryCyclesItem {
  125. // 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
  126. int32 begin = 1;
  127. // 电池数量
  128. int32 data = 2;
  129. }
  130. // 三元锂
  131. repeated BatteryCyclesItem type_1 = 1;
  132. // 磷酸铁锂
  133. repeated BatteryCyclesItem type_2 = 2;
  134. }
  135. // 电池循环次数数组
  136. BatteryCycles cycle = 2;
  137. }
  138. message GetAlarmListReq {
  139. }
  140. message GetAlarmListRes {
  141. // 告警说明
  142. string desc = 1;
  143. // 设备编号
  144. string dev_id = 2;
  145. // 告警时间
  146. int64 alarm_time = 3;
  147. // 经度
  148. float longitude = 4;
  149. // 纬度
  150. string latitude = 5;
  151. }
  152. message GetExchangeCountReq {
  153. }
  154. message GetExchangeCountRes {
  155. message ExchangeCount {
  156. // 周
  157. string week = 1;
  158. // 本周换电次数
  159. int32 exchange_count = 2;
  160. // 上周换电次数
  161. int32 last_exchange_count = 3;
  162. }
  163. // 本周换电次数数组,下标0-6代表周一到周日
  164. repeated ExchangeCount exchange_counts = 1;
  165. }
  166. message GetChargePileCountReq {
  167. }
  168. message GetChargePileCountRes {
  169. message ChargePileCount {
  170. // 周
  171. string week = 1;
  172. // 本周充电度数
  173. int32 charge_pile_count = 2;
  174. // 上周充电度数
  175. int32 last_charge_pile_count = 3;
  176. }
  177. // 本周充电度数数组,下标0-6代表周一到周日
  178. repeated ChargePileCount charge_pile_counts = 1;
  179. }
  180. message GetBatteryInfoReq {
  181. // 电池编号
  182. string battery_sn = 1;
  183. }
  184. message GetBatteryInfoRes {
  185. // soc
  186. string soc = 1;
  187. // 电流
  188. float electric_current = 2;
  189. // 电压
  190. float voltage = 3;
  191. // 当前充电状态 充电状态 0:静止 1:充电+ 2:放电-
  192. int32 charge_status = 4;
  193. message Alarm{
  194. // 告警说明
  195. string desc = 1;
  196. // 告警等级
  197. int32 level = 2;
  198. // 告警时间
  199. int64 alarm_time = 3;
  200. }
  201. repeated Alarm alarm_list = 5;
  202. // 累计充电次数
  203. int32 charge_count = 6;
  204. // 累计行驶里程
  205. int32 mileage = 7;
  206. // 累计碳排放
  207. int32 emission = 8;
  208. // 健康评分
  209. int32 health_score = 9;
  210. // 电池编号
  211. string battery_sn = 10;
  212. // 电池类型
  213. string battery_type = 11;
  214. // 电池品牌
  215. string battery_brand = 12;
  216. // 电池健康状态
  217. string battery_status = 13;
  218. // 电池生产日期 时间戳 秒
  219. string battery_date = 14;
  220. // 剩余容量
  221. int32 remaining_capacity = 15;
  222. // 连接状态 0:未连接 1:已连接
  223. int32 connect_status = 16;
  224. // 充电继电器/mos是否开启 1-开启 0-关闭
  225. int32 mos_status = 17;
  226. // 放点继电器/mos 1-开启 0-关闭
  227. int32 bms_status = 18;
  228. // 电池均衡是否开启 1-开启 0-关闭
  229. int32 equilibrium = 19;
  230. // 电池串数
  231. int32 battery_count = 20;
  232. // 循环次数
  233. int32 cycle_count = 21;
  234. // 电池温度
  235. int32 battery_temp = 22;
  236. // 功率管温度
  237. int32 power_temp = 23;
  238. // 电池箱内温度
  239. int32 box_temp = 24;
  240. // 经度
  241. float longitude = 25;
  242. // 纬度
  243. float latitude = 26;
  244. }
  245. message GetChrpannelInfoReq {
  246. // 充电桩编号
  247. string dev_id = 1;
  248. }
  249. message GetChrpannelInfoRes {
  250. // 充电桩名称
  251. string chrpannel_name = 1;
  252. // 充电桩编号
  253. string chrpannel_sn = 2;
  254. // 在线状态 1-在线 0-离线
  255. int32 online_status = 3;
  256. // 通讯时间 时间长秒
  257. int64 comm_time = 4;
  258. // 充电座数量
  259. int32 box_count = 5;
  260. // 额定容量
  261. int32 capacity = 6;
  262. // 软件版本
  263. string software_version = 7;
  264. // 硬件版本
  265. string hardware_version = 8;
  266. // 充电桩生产日期 时间戳秒
  267. string chrpannel_date = 9;
  268. message ChargePileCount {
  269. // 周
  270. string week = 1;
  271. // 本周充电度数
  272. int32 charge_pile_count = 2;
  273. // 上周充电度数
  274. int32 last_charge_pile_count = 3;
  275. }
  276. // 本周充电度数数组,下标0-6代表周一到周日
  277. repeated ChargePileCount charge_pile_counts = 10;
  278. message BoxState{
  279. // 端口编号
  280. int32 box_sn = 1;
  281. // 端口状态 1-充电中 0-空闲 2-禁用
  282. int32 box_status = 2;
  283. // 当前功率
  284. int32 power = 3;
  285. }
  286. // 端口
  287. repeated BoxState box_list = 11;
  288. // 经度
  289. float longitude = 12;
  290. // 纬度
  291. float latitude = 13;
  292. }
  293. message GetExchangeInfoReq {
  294. }
  295. message GetExchangeInfoRes {
  296. }
  297. message GetAbnormalDataReq{
  298. }
  299. message GetAbnormalDataRes{
  300. message AbnormalData{
  301. // 电池隐患数量
  302. int32 battery_count = 1;
  303. // 充电桩隐患数量
  304. int32 chrpannel_count = 2;
  305. // 日期
  306. string date = 3;
  307. }
  308. // 环比数据
  309. message CompareData{
  310. // 日环比 %
  311. float day_compare = 1;
  312. // 周环比 %
  313. float week_compare = 2;
  314. }
  315. // 当天的异常数据
  316. AbnormalData today_abnormal_data = 1;
  317. // 电池环比数据
  318. CompareData battery_compare_data = 2;
  319. // 充电桩的环比数据
  320. CompareData chrpannel_compare_data = 3;
  321. // 前十天的异常数据
  322. repeated AbnormalData abnormal_data = 4;
  323. }