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
718 B
33 lines
718 B
6 months ago
|
namespace Entity.Api.Resp;
|
||
|
|
||
|
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; }
|
||
|
}
|