初始化

This commit is contained in:
2025-11-21 08:48:01 +08:00
commit b4d684a84c
202 changed files with 28585 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
package BLWData.Entity;
// 定义一个Person消息类型
message EnergyConsumption {
int64 HotelCode = 1;
string HostNumber = 2;
string Mac = 3;
string EndPoint = 4;
string Version = 5;
bool IsTakeCard = 6;
double V = 7;
double A = 8;
double P = 9;
double Energy_Consumption = 10;
double Sum_Energy_Consumption = 11;
int64 CreateTime=12;
string RoomNumber=13;
int32 CarbonVIP=14;
}