namespace Entity.Api.Req; /// /// 用电量统计 /// public class ChargeCountReq { /// /// 时间类型 1:天 2:月 3:年 /// public int TimeType { get; set; } /// /// 充电机编号 /// public string? ChargerNo { get; set; } /// /// 开始时间 /// public DateTime? StartTime { get; set; } /// /// 结束时间 /// public DateTime? EndTime { get; set; } /// 页码 public int PageNum { get; set; } = 1; /// 页数 public int PageSize { get; set; } = 10; }