using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IBox.WinFrmUI { public static class IBoxHelper { public static string startCode = "[&start&]";//开始标识 public static string endCode = "[&end&]";//结束标识 public static string paramCode = "[¶m&]";//参数标识 public static string getbaseCode = "getbase";//获取基础信息 public static string getrealrecordCode = "getrealrecord";//获取实时记录数据 public static string gethistoryrecordCode = "gethistoryrecord";//获取历史记录数据 public static string getalarmbydayCode = "getalarmbyday";//获取报警数据 public static string getbysignalidofdayrangeCode = "getbysignalidofdayrange";//获取指定信号ID的日数据 public static string getmonitorCode = "getmonitor";//获取所有监测点 public static string getsignaltypeCode = "getsignaltype";//获取所有监点类型 public static string getMonitorgroupCode = "getmonitorgroup";//获取所有机组 public static string getfilterCode = "getfilter";//获取数据过滤配置 public static string savefilterCode = "savefilter";//保存数据过滤配置 public static string getenergyanalyCode = "getenergyanaly";//获取能耗分析数据 public static string analydayCode = "analyday";//校验能耗分析 public static string getlogCode = "getlog";//获取日志 public static string clearlogCode = "clearlog";//清除日志 public static string getparamsCode = "getparams";//获取参数 public static string saveparamsCode = "saveparams";//保存参数 public static string restartserviceCode = "restartservice";//重启服务 public static string clearupdataCode = "clearupdata";//清除数据 public static string getprotocolCode = "getprotocol";//获取协议配置 public static string saveprotocolCode = "saveprotocol";//保存协议配置 public static string getrulesCode = "getrules";//获取规则配置 public static string saverulesCode = "saverules";//保存规则配置 public static string addsignalCode = "addsignal";//新增测点 public static string deletesignalCode = "deletesignal";//删除测点 public static string addMonitorgroupCode = "addmonitorgroup";//新增机组 public static string deletemonitorgroupCode = "deletemonitorgroup";//删除机组 public static string getstoreCode = "getstore";//获取基本配置 } }