using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
///
/// 数据统计表
///
[Table(Name = "sys_statistical")]
public class StatisticalEntity : EntityBase
{
///
/// 时间
///
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Time”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Time { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Time”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
///
/// 今日新增用户
///
public int UserAddTotal { get; set; }
///
/// 用户总数
///
public int UserSumTotal { get; set; }
///
/// 今日求职发布数
///
public int ApplyJobsAddTotal { get; set; }
///
/// 今日招聘发布数
///
public int RecruitmentAddTotal { get; set; }
///
/// 本日活跃用户数
///
public int ActiveUserTotal { get; set; }
///
/// 总收入
///
public decimal Income { get; set; }
///
/// 日收入
///
public decimal TodayIncome { get; set; }
///
/// 今日收入百分比
///
public decimal TodayIncomePercent { get; set; }
///
/// 今日用户增长百分比
///
public decimal UserAddTotalPercent { get; set; }
}
}