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.
70 lines
1.7 KiB
70 lines
1.7 KiB
2 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Znyc.Cloudcar.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.Security.Entitys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 统计数据
|
||
|
/// </summary>
|
||
|
[Table("sys_statistical")]
|
||
|
[Serializable]
|
||
|
public class StatisticalEntity : 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 ApplyJobsAddTotal { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 今日招聘发布数
|
||
|
/// </summary>
|
||
|
public int CloudcarAddTotal { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 本日活跃用户数
|
||
|
/// </summary>
|
||
|
public int ActiveUserTotal { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总收入
|
||
|
/// </summary>
|
||
|
public decimal Income { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 日收入
|
||
|
/// </summary>
|
||
|
public decimal TodayIncome { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 今日收入百分比
|
||
|
/// </summary>
|
||
|
public decimal TodayIncomePercent { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 今日用户增长百分比
|
||
|
/// </summary>
|
||
|
public decimal UserAddTotalPercent { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 未审核设备树
|
||
|
/// </summary>
|
||
|
public int EquipmentAddTotal { get; set; }
|
||
|
}
|
||
|
}
|