namespace Entity.Api.Resp; /// /// 首页换电次数统计 /// public class SwapOrderCountMonthResp { /// /// 月换电总量 /// public int SwapCount { get; set; } /// /// 月服务车辆 /// public int VehicleCount { get; set; } /// /// 月充电次数 /// public int ChargeFrequency { get; set; } /// /// 月充电量 /// public decimal? ChargeCount { get; set; } /// /// 今日换电次数 /// public int DaySwapCount { get; set; } /// /// 今日充电量 /// public decimal? DayChargeCount { get; set; } }