招聘后台
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.6 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.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 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; }
}
}