You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
697 B

This file contains ambiguous Unicode characters!

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
{
/// <summary>
/// 时间类型 1:天 2:月 3
/// </summary>
public int TimeType { get; set; }
/// <summary>
/// 充电机编号
/// </summary>
public string? ChargerNo { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? EndTime { get; set; }
/// <summary>页码</summary>
public int PageNum { get; set; } = 1;
/// <summary>页数</summary>
public int PageSize { get; set; } = 10;
}