using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
///
/// 充放电机上送充电启动完成帧-4.1.6
///
public class StartComFrame
{
///
/// 成功标识
///
public byte SuccessMark { get; set; }
///
/// 失败原因
///
public byte CauseFailure { get; set; }
///
/// BMS与充电桩通信协议版本号
///
public string BMSIndProVersion{ get; set; }
///
/// 充电桩与BMS握手结果
///
public byte BMSHandResult { get; set; }
///
/// 电池类型
///
public byte TypeBattery { get; set; }
///
/// 最高允许温度
///
public byte MaxPerTem { get; set; }
///
/// BMS最高允许充电电压
///
public UInt16 BMSMaxAllChaVol { get; set; }
///
/// 单体最高允许充电电压
///
public UInt16 MaxAllChaVolUnit { get; set; }
///
/// 最高允许充电电流
///
public UInt16 MaxAllChaCur { get; set; }
///
/// 整车动力蓄电池额定总电压
///
public UInt16 RatTotalVolVehPowBat { get; set; }
///
/// 整车动力蓄电池当前电压
///
public UInt16 CurVolVehPowBat { get; set; }
///
/// 整车动力蓄电池额定容量
///
public UInt16 RatCapVehPowBat { get; set; }
///
/// 整车动力蓄电池标称容量
///
public UInt16 NomCapVehPowBat { get; set; }
///
/// 充电机最高输出电压
///
public UInt16 MaxOutVolCha { get; set; }
///
/// 充电机最低输出电压
///
public UInt16 MinOutVolCha { get; set; }
///
/// 充电机最大输出电流
///
public UInt16 MaxOutCurCha { get; set; }
///
/// 充电机最小输出电流
///
public UInt16 MinOutCurCha { get; set; }
///
/// 车辆识别码
///
public string VehIdeNum { get; set; }
///
/// 整车动力蓄电池荷电状态
///
public byte LoaStaVehPowBat { get; set; }
}
}