HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-09-22 ade5917841b0fdcb1df7353ef7c56b1a1bdc9282
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
using System;
 
namespace ZigBee.Common
{
    public sealed class RemoteOperatorConsts
    {
        /// <summary>
        /// 操作成功
        /// </summary>
        public const string SUCCESS = "Success";
 
        /// <summary>
        /// 操作成功:高兄版本成功
        /// </summary>
        public const string SUCCESS_UPPER = "SUCCESS";
 
        /// <summary>
        /// 参数有误
        /// </summary>
        public const string PARAMETER_OR_EMPTY = "ParameterOrEmpty";
 
        /// <summary>
        /// 以ZigbeeApp_开头
        /// </summary>
        public const string ZIGBEE_APP_UNDER_STARTS_WITH = "ZigbeeApp_";
 
        /// <summary>
        /// 连接云端Mqtt成功后,响应的主题名称
        /// </summary>
        public const string ZIGBEE_APP_CONNECT_MQTT_BROKER_SUCCESS = "/ZigbeeAppConnectMqttBrokerSuccess";
 
        /// <summary>
        /// 以ZigbeeApp开头
        /// </summary>
        public const string ZIGBEE_APP_STARTS_WITH = "ZigbeeApp";
 
 
        /// <summary>
        /// 帽号
        /// </summary>
        public const char CAP_NUMBER = ':';
 
    }
}