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
403 B

namespace Entity.Api.Resp;
/// <summary>
/// 每日换电订单统计
/// </summary>
public class SwapOrderCountResp
{
/// <summary>
/// 天
/// </summary>
public int Day { get; set; }
/// <summary>
/// 换电数量
/// </summary>
public int Count { get; set; }
/// <summary>
/// 充电度数
/// </summary>
public decimal? ChargeCount { get; set; }
}