You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
using System;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 遥测数据上报
|
|
/// </summary>
|
|
public class UploadTelemetryData:ASDU
|
|
{
|
|
public byte CurrentSoc;
|
|
public byte MaxBatteryTemp;
|
|
public byte MaxTempDetectionPointNo;
|
|
public byte MinBatteryTemp;
|
|
public byte MinTempDetectionPointNo;
|
|
|
|
public UInt16 SingleBatteryMaxVoltage;
|
|
public UInt16 SingleBatteryMinVoltage;
|
|
|
|
public byte ChargerEnvTemp;
|
|
public UInt16 ChargingPilotVoltage;
|
|
public UInt16 BmsNeedVoltage;
|
|
public UInt16 BmsNeedCurrent;
|
|
public byte ChargeMode;
|
|
public UInt16 BmsChargingVoltage;
|
|
public UInt16 BmsChargingCurrent;
|
|
|
|
public UInt16 EstimatedRemainingTime;
|
|
|
|
public byte ChargingInterfaceDetectionOneTemp;
|
|
public byte ChargingInterfaceDetectionTwoTemp;
|
|
public byte ChargingInterfaceDetectionThreeTemp;
|
|
public byte ChargingInterfaceDetectionFourTemp;
|
|
|
|
public UInt32 DcMeterCurrentPower;
|
|
public UInt16 DcMeterVoltage;
|
|
public UInt16 DcMeterCurrent;
|
|
|
|
public UInt16 HighVoltageAcquisitionVoltage;
|
|
public UInt16 HighVoltageAcquisitionCurrent;
|
|
|
|
public byte ChargerInsideTemp;
|
|
public UInt16 ChargingTime;
|
|
public byte ModuleOneAirInletTemp;
|
|
public byte ModuleTwoAirInletTemp;
|
|
}
|
|
} |