123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx
- {
- public class Point
- {
- /// <summary>
- /// windpowerstationtestingpoint全省年发电量统一编码0,风电年发电量统一编码-1,光伏-2
- /// </summary>
- public static string NFDL = "NFDL";
- /// <summary>
- /// windpowerstationtestingpoint全省日发电量统一编码0,风电日发电量统一编码-1,光伏-2
- /// </summary>
- public static string RFDL = "RFDL";
- /// <summary>
- /// windpowerstationtestingpoint全省日发电量统一编码0,风电日发电量统一编码-1,光伏-2
- /// </summary>
- public static string RFDLB = "RFDLB";
- /// <summary>
- /// windpowerstationtestingpoint全省月发电量统一编码0,风电月发电量统一编码-1,光伏-2
- /// </summary>
- public static string YFDL = "YFDL";
- /// <summary>
- /// windpowerstationtestingpoint全省实时总功率,全省0,风电-1,光伏-2
- /// </summary>
- public static string SSZGL = "SSZGL";
- /************************************/
- /// <summary>
- /// 月发电量 升压站
- /// </summary>
- public static string YFDLB = "YFDLB";
- /// <summary>
- /// 年发电量 升压站
- /// </summary>
- public static string NFDLB = "NFDLB";
- /// <summary>
- /// 全省运行台数
- /// </summary>
- public static String YXTS = "YXTS";
- /// <summary>
- /// 全省故障台数
- /// </summary>
- public static string GZTJ = "GZTJ";
- /// <summary>
- /// 全省待机台数
- /// </summary>
- public static string DJTS = "DJTS";
- /// <summary>
- /// 全省离线台数
- /// </summary>
- public static string LXTS = "LXNUM";
- /// <summary>
- /// 全省限电台数
- /// </summary>
- public static string XDTS = "XDTS";
- /// <summary>
- /// 维护台数
- /// </summary>
- public static string WHTJ = "WHTJ";
- /// <summary>
- /// 安全天数
- /// </summary>
- public static string AQTS = "";
- /// <summary>
- /// 全省实时平均风速
- /// </summary>
- public static string SpeedNow = "SSFS";
- /// <summary>
- /// 风电实时总功率
- /// </summary>
- public static string PowerNow = "SSZGL";
- /// <summary>
- /// windpowerstationtestingpoint实时风速统一编码
- /// </summary>
- public static string SSFS = "SSFS";
- // public static string SSZGL="SSZGL"
-
- }
- }
|