namespace Entity.Dto.Resp;
///
/// 充电桩信息
///
public class ChargerPileResp
{
public ChargerPileResp()
{
}
public string Sn { get; set; }
///
/// 站外1枪是否充电
///
public bool GunChargedOne { get; set; }
///
/// 站外2枪是否充电
///
public bool GunChargedTwo { get; set; }
///
/// 站外1枪是否连接
///
public bool ChargedPileOne { get; set; }
///
/// 站外2枪是否连接
///
public bool ChargedPileTwo { get; set; }
///
/// 站外1枪充电功率
///
public float? ChargePilePowerOne { get; set; }
///
/// 站外2枪充电功率
///
public float? ChargePilePowerTwo { get; set; }
}