namespace Entity.Api.Resp; public class SwapAndChargingCountResp { /// /// 充电总数 /// public int ChargeTotalCount { get; set; } /// /// 今日充电数量 /// public int ChargeTodayCount { get; set; } /// /// 换电总数 /// public int SwapTotalCount { get; set; } /// /// 今日换电数量 /// public int SwapTodayCount { get; set; } /// /// 当日换电量 /// public float SwapTodayElectricity { get; set; } /// /// 当月 /// public float SwapMonthElectricity { get; set; } }