This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace Entity.Api.Req;
/// <summary>
/// 用电量统计
/// </summary>
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; }
/// <summary>页码</summary>
public int PageNum { get; set; } = 1;
/// <summary>页数</summary>
public int PageSize { get; set; } = 10;
}