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 int? S { get; set; }
public int? A { get; set; }
public int? B { get; set; }
public int? C { get; set; }
public int? D { get; set; }
}
}