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.
 
 
 

61 lines
1.4 KiB

using System;
namespace Znyc.Admin.Security.Dtos
{
/// <summary>
/// 控制台首页显示统计数据
/// </summary>
[Serializable]
public class StatisticalInputDto
{
/// <summary>
/// 时间
/// </summary>
public string Time { get; set; }
/// <summary>
/// 今日新增用户数
/// </summary>
public int UserAddTotal { get; set; }
/// <summary>
/// 用户总数
/// </summary>
public int UserSumTotal { get; set; }
/// <summary>
/// 今日新增公司数
/// </summary>
public int CompanyAddTotal { get; set; }
/// <summary>
/// 公司总数
/// </summary>
public int CompanySumTotal { get; set; }
/// <summary>
/// 今日新增车辆数
/// </summary>
public int VehicleAddTotal { get; set; }
/// <summary>
/// 车辆总数
/// </summary>
public int VehicleSumTotal { get; set; }
/// <summary>
/// 今日车辆到期数
/// </summary>
public int ExpireAddTotal { get; set; }
/// <summary>
/// 车辆到期总数
/// </summary>
public int ExpireSumTotal { get; set; }
/// <summary>
/// 今日用户增长百分比
/// </summary>
public decimal UserAddTotalPercent { get; set; }
}
}