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.

37 lines
1.0 KiB

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.Resp;
public class BaseSetStationConfigInfo
{
/// <summary>
/// 灯光日间时间:开始时间
/// </summary>
public string LigthStartTime { get; set; }
/// <summary>
/// 灯光日间时间:结束时间
/// </summary>
public string LigthEndTime { get; set; }
/// <summary>
/// 换电策略换电标准Soc
/// </summary>
public int SetSwapSoc { get; set; }
/// <summary>
/// 换电策略充电标准Soc
/// </summary>
public int SetFullSoc { get; set; }
/// <summary>
/// 营业时间:开始时间
/// </summary>
public string BusinessStartHours { get; set; }
/// <summary>
/// 营业时间:结束时间
/// </summary>
public string BusinessEndHours{ get; set; }
/// <summary>
/// 充电运营模式0-手动 1-自动
/// </summary>
public int ChargeType{ get; set; }
/// <summary>
/// 换电运营模式1-自动 2-手动
/// </summary>
public int SwapType{ get; set; }
}