using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class ProjectContentRecord { public int Id { get; set; } /// /// 专案 /// public ProjectInfo Project { get; set; } /// /// 专案文号 /// public string ProjectNo { get; set; } /// /// 绩效人 /// public Staff Staff { get; set; } public int StaffId { get; set; } /// /// 审核人 /// public Staff Reviewer { get; set; } public int ReviewerId { get; set; } /// /// 绩效月份 /// public CalMonth CalMonth { get; set; } public int CalMonthId { get; set; } /// /// 提交实际 /// public DateTime SubmitTime { get; set; } = DateTime.Now; /// /// 最终点数 /// public double Point { get; set; } /// /// 难度系数 /// public string CaseCoefficient { get; set; } /// /// 申诉状态 /// 0:未提报 /// 1:已提报,待审核 /// 2:审核完成 /// public int State { get; set; } public virtual List ProjectWorkContents { get; set; } } }