using System; using System.Collections.Generic; namespace BatCharging.Model { public class RemoteStartCharging { /// /// SOC 限制 /// public byte SocLimit { get; set; } /// /// 功率调节指令类型 /// public byte ChangePowerCmdType { get; set; } = 1; /// /// 功率调节参数 /// public UInt16 ChangePower { get; set; } /// /// 启动充电 0:站内启动 1:站外启动 /// public UInt16 StartModel { get; set; } /// /// 结构体 /// /// SOC限制.百分比 /// 功率调节指令类型.默认1 绝对功率值 /// 功率调节参数.0.1kw/位 public RemoteStartCharging(byte socLimit, byte changePowerCmdType, UInt16 changePower,byte startModel) { this.SocLimit = socLimit; this.ChangePowerCmdType = changePowerCmdType; this.ChangePower = changePower; //this.StartModel = startModel; } } }