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.

41 lines
946 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
public byte ChargeSoc { get; set; }
}