namespace Entity.Api.Resp; public class StationConfigResp { /// /// 换电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; } /// /// 充电soc /// public byte ChargeSoc { get; set; } /// /// 换电模式 (0: 读取rdid 1:手动填写车辆vin) /// public int VehicleManually { get; set; } /// /// 服务费 /// public decimal? ServiceTotalFee { get; set; } /// /// 电费 /// public decimal? ElectricityTotalFee { get; set; } /// /// 附加费 /// public decimal? AppendTotalFee { get; set; } }