CalMonth.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace wispro.sp.entity
  7. {
  8. public class CalMonth
  9. {
  10. /// <summary>
  11. /// 编号
  12. /// </summary>
  13. public int Id { get; set; }
  14. /// <summary>
  15. /// 绩效年度
  16. /// </summary>
  17. public int Year { get; set; }
  18. /// <summary>
  19. /// 绩效月份
  20. /// </summary>
  21. public int Month { get; set; }
  22. /// <summary>
  23. /// 绩效状态
  24. /// 0:新导入
  25. /// 1:代理人反馈
  26. /// 2:计算绩效中
  27. /// 3:已完成
  28. /// </summary>
  29. public int Status { get; set; }
  30. public double? NanduXS { get; set; }
  31. public int? S { get; set; }
  32. public int? A { get; set; }
  33. public int? B { get; set; }
  34. public int? C { get; set; }
  35. public int? D { get; set; }
  36. public virtual List<PerformanceItem> PerformanceItems { get; set; }
  37. }
  38. }