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.
38 lines
882 B
38 lines
882 B
namespace Entity.Dto.Resp;
|
|
|
|
/// <summary>
|
|
/// 充电桩信息
|
|
/// </summary>
|
|
public class ChargerPileResp
|
|
{
|
|
public ChargerPileResp()
|
|
{
|
|
}
|
|
|
|
public string Sn { get; set; }
|
|
/// <summary>
|
|
/// 站外1枪是否充电
|
|
/// </summary>
|
|
public bool GunChargedOne { get; set; }
|
|
/// <summary>
|
|
/// 站外2枪是否充电
|
|
/// </summary>
|
|
public bool GunChargedTwo { get; set; }
|
|
/// <summary>
|
|
/// 站外1枪是否连接
|
|
/// </summary>
|
|
public bool ChargedPileOne { get; set; }
|
|
/// <summary>
|
|
/// 站外2枪是否连接
|
|
/// </summary>
|
|
public bool ChargedPileTwo { get; set; }
|
|
/// <summary>
|
|
/// 站外1枪充电功率
|
|
/// </summary>
|
|
public float? ChargePilePowerOne { get; set; }
|
|
/// <summary>
|
|
/// 站外2枪充电功率
|
|
/// </summary>
|
|
public float? ChargePilePowerTwo { get; set; }
|
|
|
|
} |