NmCgJcyjzbReport.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using QM.KJGH.Model.KJGH;
  2. using QM.KJGH.Model.View;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using WS;
  9. using WS.IO.Office;
  10. namespace QM.KJGH.CGGL.Model.QxCghj
  11. {
  12. public class NmCgJcyjzbReport
  13. {
  14. /// <summary>
  15. /// 指标编号(2021003)
  16. /// </summary>
  17. [Export("指标编号", 1)]
  18. public string code { set; get; }
  19. /// <summary>
  20. /// 行政区划代码(150100)
  21. /// </summary>
  22. [Export("行政区划代码", 2)]
  23. public string divisionCode { set; get; }
  24. /// <summary>
  25. /// 监测时间(注:监测时间为监测值的时间更新频率为年度时,
  26. /// 监测时间仅填写年份,如2020;
  27. /// 更新频率为季度时,填写年度-季度,如2020-2;
  28. /// 更新频率为月度时,填写年度-月度,如2020-03;)
  29. /// </summary>
  30. [Export("监测时间", 3)]
  31. public string monitorTime { set; get; }
  32. /// <summary>
  33. /// 监测数值(注:如果监测值填写了,则上面监测时间字段也必须填写。反之亦然,否则接口会过滤)
  34. /// </summary>
  35. [Export("监测值", 4)]
  36. public string monitorValue { set; get; }
  37. /// <summary>
  38. /// 规划年份(注:如果规划年份填写了,则下面规划值也必须填写。反之亦然,否则接口会过滤。如2020)
  39. /// </summary>
  40. [Export("近期规划年", 5)]
  41. public string targetYear { set; get; }
  42. /// <summary>
  43. /// 规划值(注:如果规划值填写了,则上面规划年份也必须填写。反之亦然,否则接口会过滤。如12.32)
  44. /// </summary>
  45. [Export("近期规划值", 6)]
  46. public string targetValue { set; get; }
  47. /// <summary>
  48. /// 基期年(注:基期年需要更新则上面两个规划年份、规划值都必须填写,否则接口会过滤。如2020)
  49. /// </summary>
  50. [Export("基期年", 7)]
  51. public string baseYear { set; get; }
  52. /// <summary>
  53. /// 基期值(注:基期年填写了,则上面基期年也必须填写。反之亦然,否则接口会过滤。如2020)
  54. /// </summary>
  55. [Export("基期值", 8)]
  56. public string baseValue { set; get; }
  57. /// <summary>
  58. /// 远期规划年份(注:如果远期规划年份填写了,则下面远期规划值也必须填写。反之亦然,否则接口会过滤。如2050)
  59. /// </summary>
  60. [Export("远期规划目标年", 9)]
  61. public string forwardTargetYear { set; get; }
  62. /// <summary>
  63. /// 远期规划值(注:如果远期规划值填写了,则上面远期规划年份也必须填写。反之亦然,否则接口会过滤。如12.32)
  64. /// </summary>
  65. [Export("远期规划目标值", 10)]
  66. public string forwardTargetValue { set; get; }
  67. }
  68. }