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.
|
|
|
|
namespace Entity.Api.Req;
|
|
|
|
|
|
|
|
|
|
public class StationConfigReq
|
|
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
}
|