using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class CalMonth { /// /// 编号 /// public int Id { get; set; } /// /// 绩效年度 /// public int Year { get; set; } /// /// 绩效月份 /// public int Month { get; set; } /// /// 绩效状态 /// 0:新导入 /// 1:代理人反馈 /// 2:计算绩效中 /// 3:已完成 /// public int Status { get; set; } public virtual List PerformanceItems { get; set; } } }