duheng
2025-03-18 7ee0220b5f5626deef516b6e5c417bfa201e5a88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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 = "[&param&]";//参数标识
        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";//获取基本配置
 
    }
}