You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.9 KiB

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.KBSWMS
  7. {
  8. /// <summary>
  9. /// 月度一次检验合格率
  10. /// </summary>
  11. public class PassFirstTimeModel
  12. {
  13. public string Decomposition1 { get; set; }
  14. public string Decomposition2 { get; set; }
  15. public string TargetDecomposition { get; set; }
  16. public decimal? Week1 { get; set; }
  17. public decimal? Week2 { get; set; }
  18. public decimal? Week3 { get; set; }
  19. public decimal? Week4 { get; set; }
  20. public decimal? Week5 { get; set; }
  21. public decimal? Week6 { get; set; }
  22. /// <summary>
  23. /// 当月累计
  24. /// </summary>
  25. public decimal? MonthlyCumulative { get; set; }
  26. public decimal? Month1 { get; set; }
  27. public decimal? Month2 { get; set; }
  28. public decimal? Month3 { get; set; }
  29. public decimal? Month4 { get; set; }
  30. public decimal? Month5 { get; set; }
  31. public decimal? Month6 { get; set; }
  32. public decimal? Month7 { get; set; }
  33. public decimal? Month8 { get; set; }
  34. public decimal? Month9 { get; set; }
  35. public decimal? Month10 { get; set; }
  36. public decimal? Month11 { get; set; }
  37. public decimal? Month12 { get; set; }
  38. /// <summary>
  39. /// 年度累计
  40. /// </summary>
  41. public decimal? AnnualAccumulation { get; set; }
  42. }
  43. /// <summary>
  44. /// 每周开始日期和结束日期
  45. /// </summary>
  46. public class WeekRange
  47. {
  48. public string Start { get; set; }
  49. public string End { get; set; }
  50. }
  51. /// <summary>
  52. /// 一年的每月的开始时间和结束时间
  53. /// </summary>
  54. public class MonthRange
  55. {
  56. public string Start { get; set; }
  57. public string End { get; set; }
  58. }
  59. }