Point.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IntelligentControlForsx
  7. {
  8. public class Point
  9. {
  10. /// <summary>
  11. /// windpowerstationtestingpoint全省年发电量统一编码0,风电年发电量统一编码-1,光伏-2
  12. /// </summary>
  13. public static string NFDL = "NFDL";
  14. /// <summary>
  15. /// windpowerstationtestingpoint全省日发电量统一编码0,风电日发电量统一编码-1,光伏-2
  16. /// </summary>
  17. public static string RFDL = "RFDL";
  18. /// <summary>
  19. /// windpowerstationtestingpoint全省日发电量统一编码0,风电日发电量统一编码-1,光伏-2
  20. /// </summary>
  21. public static string RFDLB = "RFDLB";
  22. /// <summary>
  23. /// windpowerstationtestingpoint全省月发电量统一编码0,风电月发电量统一编码-1,光伏-2
  24. /// </summary>
  25. public static string YFDL = "YFDL";
  26. /// <summary>
  27. /// windpowerstationtestingpoint全省实时总功率,全省0,风电-1,光伏-2
  28. /// </summary>
  29. public static string SSZGL = "SSZGL";
  30. /************************************/
  31. /// <summary>
  32. /// 月发电量 升压站
  33. /// </summary>
  34. public static string YFDLB = "YFDLB";
  35. /// <summary>
  36. /// 年发电量 升压站
  37. /// </summary>
  38. public static string NFDLB = "NFDLB";
  39. /// <summary>
  40. /// 全省运行台数
  41. /// </summary>
  42. public static String YXTS = "YXTS";
  43. /// <summary>
  44. /// 全省故障台数
  45. /// </summary>
  46. public static string GZTJ = "GZTJ";
  47. /// <summary>
  48. /// 全省待机台数
  49. /// </summary>
  50. public static string DJTS = "DJTS";
  51. /// <summary>
  52. /// 全省离线台数
  53. /// </summary>
  54. public static string LXTS = "LXNUM";
  55. /// <summary>
  56. /// 全省限电台数
  57. /// </summary>
  58. public static string XDTS = "XDTS";
  59. /// <summary>
  60. /// 维护台数
  61. /// </summary>
  62. public static string WHTJ = "WHTJ";
  63. /// <summary>
  64. /// 安全天数
  65. /// </summary>
  66. public static string AQTS = "";
  67. /// <summary>
  68. /// 全省实时平均风速
  69. /// </summary>
  70. public static string SpeedNow = "SSFS";
  71. /// <summary>
  72. /// 风电实时总功率
  73. /// </summary>
  74. public static string PowerNow = "SSZGL";
  75. /// <summary>
  76. /// windpowerstationtestingpoint实时风速统一编码
  77. /// </summary>
  78. public static string SSFS = "SSFS";
  79. // public static string SSZGL="SSZGL"
  80. }
  81. }