wxr
2020-09-01 7d005a7618e3d7a80d8ede3baf6ecc4bf8019cd5
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
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
 
namespace HDL_ON.Entity
{
    public class Fan : Function
    {
        public Fan()
        {
        }
 
 
        [Newtonsoft.Json.JsonIgnore]
        public Trait trait_openLevel;
        /// <summary>
        /// 档位
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public int openLevel
        {
            get
            {
                try
                {
                    if (trait_openLevel == null)
                    {
                        trait_openLevel = function.Find((obj) => obj.name == "openLevel");
                        if (trait_openLevel == null)
                        {
                            trait_openLevel = new Trait()
                            {
                                name = "openLevel",
                                value_key = new List<string> { "up", "down" },
                                max = 7,
                                min = 0,
                            };
                        }
                        trait_openLevel.value = trait_openLevel.min;
                    }
                    return Convert.ToInt32(trait_openLevel.value);
                }
                catch
                {
                    MainPage.Log("openLevel 数据获取失败.");
                    return 0;
                }
            }
            set
            {
                try
                {
                    trait_openLevel.value = value;
                }
                catch
                {
                    MainPage.Log("openLevel 数据刷新失败.");
                }
            }
        }
 
    }
}