123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- syntax = "proto3";
- package proto.api;
- import "google/api/annotations.proto";
- import "google/protobuf/descriptor.proto";
- import "protoc-gen-openapiv2/options/annotations.proto";
- option go_package = "api/v1";
- option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
- info : {title : "大屏统计数据", version : "1.0", description : "大屏监控"}
- host : ""
- };
- // API接口/后台/大屏监控数据统计
- service LargeScreenDataService {
- // 获取设备的数量
- rpc GetDeviceCount(GetDeviceCountReq) returns (GetDeviceCountRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-device-count",
- body : "*",
- };
- };
- // 异常数据
- rpc GetAbnormalData(GetAbnormalDataReq) returns (GetAbnormalDataRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-abnormal-data",
- body : "*",
- };
- };
- // 设备地区分布
- rpc GetDeviceCountArea(GetDeviceCountAreaReq) returns (GetDeviceCountAreaRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-device-count-area",
- body : "*",
- };
- }
- // 锂电池行驶里程和电池循环次数
- rpc GetBatteryMileageAndCycles(GetBatteryMileageAndCyclesReq) returns (GetBatteryMileageAndCyclesRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-battery-mileage-and-cycles",
- body : "*",
- };
- };
- // 获取告警列表
- rpc GetAlarmList(GetAlarmListReq) returns (GetAlarmListRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-alarm-list",
- body : "*",
- };
- }
- // 充电桩一周充电度数
- rpc GetChargePileCount(GetChargePileCountReq) returns (GetChargePileCountRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-charge-pile-count",
- body : "*",
- };
- }
- // 电池的实时数据
- rpc GetBatteryInfo(GetBatteryInfoReq) returns (GetBatteryInfoRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-battery-info",
- body : "*",
- };
- }
- // 充电桩的实时数据
- rpc GetChrpannelInfo(GetChrpannelInfoReq) returns (GetChrpannelInfoRes) {
- option (google.api.http) = {
- post : "/largeScreenData/data/get-chrpannel-info",
- body : "*",
- };
- }
- }
- message GetDeviceCountReq {
- // 开始时间时间戳
- //int64 startTime = 1;
- // 结束时间时间戳
- //int64 endTime = 2;
- // 省份的code
- string province_code = 1;
- }
- message GetDeviceCountRes {
- message AreaCount{
- // 地区
- string area = 1;
- // 电池数量
- int32 count = 2;
- }
-
- // 电池数量
- int32 battery_count = 1;
- // 换电柜数量
- int32 exchange_cabinet_count = 2;
- // 充电桩数量
- int32 charge_pile_count = 3;
- // 电池数量的地区分布数组
- repeated AreaCount battery_count_areas = 4;
- }
- message GetDeviceCountAreaReq {
- // 省份的code
- string province_code = 1;
- // 城市的code
- string city_code = 2;
- }
- message GetDeviceCountAreaRes {
- message GPS{
- }
- // 所有电池的经纬度
- repeated GPS battery_gps = 1;
- // 省份地区分布数组
- repeated GetDeviceCountRes.AreaCount battery_province_areas = 2;
- // 所有充电桩的经纬度
- repeated GPS charge_pile_gps = 3;
- // 充电桩的省份地区分布数组
- repeated GetDeviceCountRes.AreaCount charge_pile_province_areas = 4;
- }
- message GetBatteryMileageAndCyclesReq {
- }
- message GetBatteryMileageAndCyclesRes {
- message BatteryMileage {
- // 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
- int32 begin = 1;
- // 电池数量
- int32 data = 2;
- }
- // 电池行驶里程数组
- repeated BatteryMileage mileage = 1;
- message BatteryCycles {
- message BatteryCyclesItem {
- // 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
- int32 begin = 1;
- // 电池数量
- int32 data = 2;
- }
- // 三元锂
- repeated BatteryCyclesItem type_1 = 1;
- // 磷酸铁锂
- repeated BatteryCyclesItem type_2 = 2;
- }
- // 电池循环次数数组
- BatteryCycles cycle = 2;
- }
- message GetAlarmListReq {
- }
- message GetAlarmListRes {
- // 告警说明
- string desc = 1;
- // 设备编号
- string dev_id = 2;
- // 告警时间
- int64 alarm_time = 3;
- // 经度
- float longitude = 4;
- // 纬度
- string latitude = 5;
- }
- message GetExchangeCountReq {
- }
- message GetExchangeCountRes {
- message ExchangeCount {
- // 周
- string week = 1;
- // 本周换电次数
- int32 exchange_count = 2;
- // 上周换电次数
- int32 last_exchange_count = 3;
- }
- // 本周换电次数数组,下标0-6代表周一到周日
- repeated ExchangeCount exchange_counts = 1;
- }
- message GetChargePileCountReq {
- }
- message GetChargePileCountRes {
- message ChargePileCount {
- // 周
- string week = 1;
- // 本周充电度数
- int32 charge_pile_count = 2;
- // 上周充电度数
- int32 last_charge_pile_count = 3;
- }
- // 本周充电度数数组,下标0-6代表周一到周日
- repeated ChargePileCount charge_pile_counts = 1;
- }
- message GetBatteryInfoReq {
- // 电池编号
- string battery_sn = 1;
- }
- message GetBatteryInfoRes {
- // soc
- string soc = 1;
- // 电流
- float electric_current = 2;
- // 电压
- float voltage = 3;
- // 当前充电状态 充电状态 0:静止 1:充电+ 2:放电-
- int32 charge_status = 4;
- message Alarm{
- // 告警说明
- string desc = 1;
- // 告警等级
- int32 level = 2;
- // 告警时间
- int64 alarm_time = 3;
- }
- repeated Alarm alarm_list = 5;
- // 累计充电次数
- int32 charge_count = 6;
- // 累计行驶里程
- int32 mileage = 7;
- // 累计碳排放
- int32 emission = 8;
- // 健康评分
- int32 health_score = 9;
- // 电池编号
- string battery_sn = 10;
- // 电池类型
- string battery_type = 11;
- // 电池品牌
- string battery_brand = 12;
- // 电池健康状态
- string battery_status = 13;
- // 电池生产日期 时间戳 秒
- string battery_date = 14;
- // 剩余容量
- int32 remaining_capacity = 15;
- // 连接状态 0:未连接 1:已连接
- int32 connect_status = 16;
- // 充电继电器/mos是否开启 1-开启 0-关闭
- int32 mos_status = 17;
- // 放点继电器/mos 1-开启 0-关闭
- int32 bms_status = 18;
- // 电池均衡是否开启 1-开启 0-关闭
- int32 equilibrium = 19;
- // 电池串数
- int32 battery_count = 20;
- // 循环次数
- int32 cycle_count = 21;
- // 电池温度
- int32 battery_temp = 22;
- // 功率管温度
- int32 power_temp = 23;
- // 电池箱内温度
- int32 box_temp = 24;
- // 经度
- float longitude = 25;
- // 纬度
- float latitude = 26;
- }
- message GetChrpannelInfoReq {
- // 充电桩编号
- string dev_id = 1;
- }
- message GetChrpannelInfoRes {
- // 充电桩名称
- string chrpannel_name = 1;
- // 充电桩编号
- string chrpannel_sn = 2;
- // 在线状态 1-在线 0-离线
- int32 online_status = 3;
- // 通讯时间 时间长秒
- int64 comm_time = 4;
- // 充电座数量
- int32 box_count = 5;
- // 额定容量
- int32 capacity = 6;
- // 软件版本
- string software_version = 7;
- // 硬件版本
- string hardware_version = 8;
- // 充电桩生产日期 时间戳秒
- string chrpannel_date = 9;
- message ChargePileCount {
- // 周
- string week = 1;
- // 本周充电度数
- int32 charge_pile_count = 2;
- // 上周充电度数
- int32 last_charge_pile_count = 3;
- }
- // 本周充电度数数组,下标0-6代表周一到周日
- repeated ChargePileCount charge_pile_counts = 10;
- message BoxState{
- // 端口编号
- int32 box_sn = 1;
- // 端口状态 1-充电中 0-空闲 2-禁用
- int32 box_status = 2;
- // 当前功率
- int32 power = 3;
- }
- // 端口
- repeated BoxState box_list = 11;
- // 经度
- float longitude = 12;
- // 纬度
- float latitude = 13;
- }
- message GetExchangeInfoReq {
- }
- message GetExchangeInfoRes {
- }
- message GetAbnormalDataReq{
- }
- message GetAbnormalDataRes{
- message AbnormalData{
- // 电池隐患数量
- int32 battery_count = 1;
- // 充电桩隐患数量
- int32 chrpannel_count = 2;
- // 日期
- string date = 3;
- }
- // 环比数据
- message CompareData{
- // 日环比 %
- float day_compare = 1;
- // 周环比 %
- float week_compare = 2;
- }
- // 当天的异常数据
- AbnormalData today_abnormal_data = 1;
- // 电池环比数据
- CompareData battery_compare_data = 2;
- // 充电桩的环比数据
- CompareData chrpannel_compare_data = 3;
- // 前十天的异常数据
- repeated AbnormalData abnormal_data = 4;
- }
|