namespace Entity.Api.Resp;
public class BaseSetStationConfigInfo
{
///
/// 灯光日间时间:开始时间
///
public string LigthStartTime { get; set; }
///
/// 灯光日间时间:结束时间
///
public string LigthEndTime { get; set; }
///
/// 换电策略:换电标准Soc
///
public int SetSwapSoc { get; set; }
///
/// 换电策略:充电标准Soc
///
public int SetFullSoc { get; set; }
///
/// 营业时间:开始时间
///
public string BusinessStartHours { get; set; }
///
/// 营业时间:结束时间
///
public string BusinessEndHours{ get; set; }
///
/// 充电运营模式:0-手动 1-自动
///
public int ChargeType{ get; set; }
///
/// 换电运营模式:1-自动 2-手动
///
public int SwapType{ get; set; }
///
/// 电价模型板 版本号
///
public int Version{ get; set; }
}