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.

38 lines
764 B

namespace Entity.Api.Resp;
/// <summary>
/// 首页换电次数统计
/// </summary>
public class SwapOrderCountMonthResp
{
/// <summary>
/// 月换电总量
/// </summary>
public int SwapCount { get; set; }
/// <summary>
/// 月服务车辆
/// </summary>
public int VehicleCount { get; set; }
/// <summary>
/// 月充电次数
/// </summary>
public int ChargeFrequency { get; set; }
/// <summary>
/// 月充电量
/// </summary>
public decimal? ChargeCount { get; set; }
/// <summary>
/// 今日换电次数
/// </summary>
public int DaySwapCount { get; set; }
/// <summary>
/// 今日充电量
/// </summary>
public decimal? DayChargeCount { get; set; }
}