using HybirdFrameworkCore.Autofac.Attribute;
namespace Entity.Dto.Resp;
public partial class BinInfoResp
{
public BinInfoResp()
{
}
///
/// Desc:id
/// Default:
/// Nullable:False
///
public int Id { get; set; }
///
/// Desc:仓位编号
/// Default:
/// Nullable:True
///
public string No { get; set; }
///
/// Desc:仓位编码
/// Default:
/// Nullable:True
///
public string Code { get; set; }
///
/// Desc:仓位名称
/// Default:
/// Nullable:True
///
public string Name { get; set; }
///
/// Desc:电池编号
/// Default:
/// Nullable:True
///
public string BatteryNo { get; set; }
///
/// Desc:充电机编号
/// Default:
/// Nullable:True
///
public string ChargerNo { get; set; }
///
/// Desc:充电枪编号
/// Default:
/// Nullable:True
///
public string ChargerGunNo { get; set; }
///
/// Desc:水冷编号
/// Default:
/// Nullable:True
///
public string WaterCoolNo { get; set; }
///
/// Desc:是否有电插头;0-无电插头;1-有电插头
/// Default:
/// Nullable:True
///
public int? ElecPluginFlag { get; set; }
///
/// Desc:电插头状态;0-未知;1-已经连接;2-未连接
/// Default:
/// Nullable:True
///
public string ElecPluginStatus { get; set; }
///
/// Desc:是否有水插头;0-无水插头;1-有水插头
/// Default:
/// Nullable:False
///
public string WaterPluginFlag { get; set; }
///
/// Desc:预约锁定;0-未锁定;1-锁定
/// Default:
/// Nullable:True
///
public string AmtLock { get; set; }
///
/// Desc:soc
/// Default:
/// Nullable:True
///
public decimal? Soc { get; set; }
///
/// Desc:soe
/// Default:
/// Nullable:True
///
public decimal? Soe { get; set; }
///
/// Desc:soh
/// Default:
/// Nullable:True
///
public decimal? Soh { get; set; }
///
/// Desc:电池入仓顺序
/// Default:
/// Nullable:True
///
public int? BatteryEnterSeq { get; set; }
///
/// Desc:充电状态;0-未知;1-正在充电;2-无电池;3-禁用;4-充电停止
/// Default:0
/// Nullable:True
///
public int? ChargeStatus { get; set; }
///
/// Desc:仓位状态;0-禁用;1-启用
/// Default:1
/// Nullable:True
///
public int? Status { get; set; }
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
public string CreatedBy { get; set; }
///
/// Desc:创建时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
public DateTime? CreatedTime { get; set; }
///
/// Desc:更新人
/// Default:
/// Nullable:True
///
public string UpdatedBy { get; set; }
///
/// Desc:更新时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
public DateTime? UpdatedTime { get; set; }
///
/// Desc:功率
/// Default:
/// Nullable:9.9
///
public float power { get; set; }
///
/// Desc:缓存仓标记 0:不是 1:是
/// Default:
/// Nullable:0
///
public int CacheBinFlag { get; set; }
///
/// Desc:换电禁用标志 0:不可换电 1:可以换电
/// Default:
/// Nullable:0
///
public int CanSwapFlag { get; set; }
///
/// Desc:充电禁用标志 0:不可充电 1:可以充电
/// Default:
/// Nullable:0
///
public int CanChargeFlag { get; set; }
///
/// Desc:充电机是否连接
/// Default:
/// Nullable:0
///
public bool ChargeConnectFlag { get; set; }
///
/// Desc:本次充电时间
/// Default:
/// Nullable:0
///
public ushort ChargingTime { get; set; }
///
/// Desc:估算剩余充电时间
/// Default:
/// Nullable:0
///
public ushort EstimatedRemainingTime { get; set; }
///
/// Desc:单次充电电量
/// Default:
/// Nullable:0
///
public float OnceElectricCharge { get; set; }
///
/// BMS 需求电压
/// Default:
/// Nullable:0
///
public float BmsNeedVoltage { get; set; }
///
/// BMS 需求电流
/// Default:
/// Nullable:0
///
public float BmsNeedCurrent { get; set; }
///
/// 电池包总电流,充电为负值,放电为正
/// Default:
/// Nullable:0
///
public float TotalCurrent { get; set; }
///
/// 电芯温度最大值
/// Default:
/// Nullable:0
///
public Int16 CellTemperatureMax { get; set; }
///
/// 电芯温度最小值
/// Default:
/// Nullable:0
///
public Int16 CellTemperatureMin { get; set; }
///
/// 充电开始时间
/// Default:
/// Nullable:
///
public DateTime? ChargingStartTime { get; set; }
///
/// 充电结束时间
/// Default:
/// Nullable:
///
public DateTime? ChargingStopTime { get; set; }
///
/// 是否鉴权
/// Default:
/// Nullable:
///
public bool IsAuthed { get; set; } = false;
///
/// 在位状态:0-不在位;1-在位;其他-无效
/// Default:
/// Nullable:
///
public int Exists { get; set; }
///
/// 充电接口温度探头 1
///
public Int16 ChargingInterfaceDetectionOneTemp { get; set; }
///
/// 充电接口温度探头 2
///
public Int16 ChargingInterfaceDetectionTwoTemp { get; set; }
///
/// 充电接口温度探头 3
///
public Int16 ChargingInterfaceDetectionTheTemp { get; set; }
///
/// 充电接口温度探头 4
///
public Int16 ChargingInterfaceDetectionFourTemp { get; set; }
}