namespace Entity.Api.Resp; /// /// 每日换电订单统计 /// public class SwapOrderCountResp { /// /// 天 /// public int Day { get; set; } /// /// 换电数量 /// public int Count { get; set; } /// /// 充电度数 /// public decimal? ChargeCount { get; set; } }