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.

20 lines
422 B

namespace Entity.Api.Resp;
/// <summary>
/// 用电量统计结果返回
/// </summary>
public class ChargeCountResp
{
/// <summary>
/// 时间
/// </summary>
public string? Time { get; set; }
/// <summary>
/// 充电度数
/// </summary>
public decimal? ChargeCount { get; set; }
/// <summary>
/// 充电机编号
/// </summary>
public string? ChargerNo { get; set; }
}