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.

92 lines
2.8 KiB

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