using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class StaffStatistics { /// /// 编号 /// public int Id { get; set; } /// /// 绩效月份 /// public virtual CalMonth CalMonth { get; set; } /// /// 绩效月份Id /// public int CalMonthId { get; set; } /// /// 员工 /// public virtual Staff Staff { get; set; } /// /// 员工Id /// public int StaffId { get; set; } /// /// 绩效类型 /// public string jxType { get; set; } /// /// 原始点数统计 /// public double? totalBasePoint { get; set; } /// /// 难度系数调整后点数统计 /// public double? totalActuallyPoint { get; set; } } }