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.

36 lines
767 B

namespace Entity.Api.Resp;
/// <summary>
/// 统计
/// </summary>
public class SwapAndChargingCountResp
{
/// <summary>
/// 充电总数
/// </summary>
public int ChargeTotalCount { get; set; }
/// <summary>
/// 今日充电数量
/// </summary>
public int ChargeTodayCount { get; set; }
/// <summary>
/// 换电总数
/// </summary>
public int SwapTotalCount { get; set; }
/// <summary>
/// 今日换电数量
/// </summary>
public int SwapTodayCount { get; set; }
/// <summary>
/// 当日换电量
/// </summary>
public float SwapTodayElectricity { get; set; }
/// <summary>
/// 当月换电量
/// </summary>
public float SwapMonthElectricity { get; set; }
}