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.
 
 

63 lines
1.8 KiB

using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
/// <summary>
/// 数据统计表
/// </summary>
[Table(Name = "sys_statistical")]
public class StatisticalEntity : EntityBase
{
/// <summary>
/// 时间
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Time”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Time { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Time”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <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 RecruitmentAddTotal { 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; }
}
}