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.

39 lines
901 B

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; }
}