namespace Entity.Api.Req;
public class StationConfigReq
{
///
/// 换电soc
///
public int SwapSoc { get; set; }
///
/// 充电运营模式:/// 0-关闭 1-开启
///
public byte AutoChargeEnabled { get; set; }
///
/// 换电运营模式:1-自动 2-手动
///
public int StationWay { get; set; }
///
/// 电价模型板 版本号
///
public int Ceid { get; set; }
///
/// 运营版本号
///
///
public string Oid { get; set; }
///
/// 选包策略: 充电结束时间大于SwapFinishChargeTime分钟的可以被选包
///
///
public int SwapFinishChargeTime { get; set; }
public int StationStatus { get; set; }
}