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.
 
 
 

64 lines
1.5 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Admin.Commons.Entitys;
namespace Znyc.Admin.Security.Entitys
{
/// <summary>
/// 统计数据
/// </summary>
[Table("sys_statistical")]
[Serializable]
public class Statistical : BaseEntity
{
/// <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; }
}
}