using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class StaffStatisticsforLevel { public int Id { get; set; } public CalMonth CalMonth { get; set; } public int CalMonthId { get; set; } public Staff Staff { get; set; } public int StaffId { get; set; } public int GradeId { get; set; } public StaffGrade Grade { get; set; } public string Type { get; set; } public bool isReview { 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; } } }