gxc
2019-10-29 081ea8d273048fd03756718ac6fb48a3c09218e9
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.Text;
 
namespace Shared.Phone.UserCenter
{
    /// <summary>
    /// 网关备份的枚举(最高只能设置到5位数->99999)
    /// </summary>
    public enum GatewayBackupEnum
    {
        /// <summary>
        /// 修改Mac名称
        /// </summary>
        AMac名称 = 1,
        /// <summary>
        /// 修改端点名称
        /// </summary>
        A端点名称 = 2,
        /// <summary>
        /// 设置PIR传感器的【灯光配置】
        /// </summary>
        APir灯光配置 = 3,
        /// <summary>
        /// 干接点颜色调节
        /// </summary>
        A干接点颜色调节 = 4,
        /// <summary>
        /// 干接点亮度调节
        /// </summary>
        A干接点亮度调节 = 5,
        /// <summary>
        /// 干接点节能模式
        /// </summary>
        A干接点节能模式 = 6,
        /// <summary>
        /// 干接点私有属性
        /// </summary>
        A干接点私有属性 = 7,
        /// <summary>
        /// 窗帘手拉控制
        /// </summary>
        A窗帘手拉控制 = 8,
        /// <summary>
        /// 窗帘上下限位
        /// </summary>
        A窗帘上下限位 = 9,
        /// <summary>
        /// 窗帘方向
        /// </summary>
        A窗帘方向 = 10,
    }
}