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.

52 lines
1.1 KiB

namespace Entity.Api.Resp;
public class StationConfigResp
{
/// <summary>
/// 换电soc
/// </summary>
public int SwapSoc { get; set; }
/// <summary>
/// 充电运营模式:/// 0-关闭 1-开启
/// </summary>
public byte AutoChargeEnabled { get; set; }
/// <summary>
/// 换电运营模式1-自动 2-手动
/// </summary>
public int StationWay { get; set; }
/// <summary>
/// 电价模型板 版本号
/// </summary>
public int Ceid { get; set; }
/// <summary>
/// 运营版本号
/// </summary>
/// <returns></returns>
public string Oid { get; set; }
/// <summary>
/// 选包策略: 充电结束时间大于SwapFinishChargeTime分钟的可以被选包
/// </summary>
/// <returns></returns>
public int SwapFinishChargeTime { get; set; }
public int StationStatus { get; set; }
6 months ago
/// <summary>
/// 充电soc
/// </summary>
public byte ChargeSoc { get; set; }
/// <summary>
/// 换电模式 0: 读取rdid 1:手动填写车辆vin
/// </summary>
public int VehicleManually { get; set; }
}