Files
Web_BLSKafka_Server_Prod/ConsoleApp2/EnergyConsumption.proto

19 lines
371 B
Protocol Buffer
Raw Normal View History

2025-11-21 08:48:01 +08:00
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 KW_H = 10;
double Sum_KW_H = 11;
int64 CreateTime=12;
}