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; } /// /// 最终点数 /// public double? FinianlPoint { get; set; } public double? NanduXS { get; set; } public double? S { get; set; } public double? A { get; set; } public double? B { get; set; } public double? C { get; set; } public double? D { get; set; } public virtual PerformanceItem Item { get; set; } public int? ItemId { get; set; } } }