wxr
2023-06-06 592974441a4df95fffd9167c90192da1a390b1c2
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System;
using Shared;
 
namespace HDL_ON.Entity
{
    /// <summary>
    /// 空调科技系统 (绿建)
    /// </summary>
    public class Acst
    {
        public Acst()
        {
        }
 
    }
 
    #region 空调科技系统 (绿建) 总控
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 总控
    /// </summary>
    public class AcstParent : Function
    {   
 
    }
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 总控
    /// 属性枚举
    /// </summary>
    public enum AcstParent_AttrEnum
    {
        on_off,// 开关  
        mode,//模式 
        scene,//  场景 WR
        day_electricity,// 今日耗电量(kW·h)    R float        0-999999
        month_electricity,// 本月耗电量(kW·h)    R float        0-999999
        total_electricity,// 总耗电量(kW·h)    R float        0-999999
        active_power,// 用电功率    R float        0-999999
        room_temp,// 室内温度    R            -30 - 100
        room_humidity,// 室内湿度    R float    %    0-100
        co2,// CO2值    R integer    %d ppm
        tvoc,// tvoc值   R integer    %d mg/m3
        pm25,//    PM2.5值 R   integer    %d ppm
    }
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 总控
    /// 模式属性值枚举
    /// </summary>
    public enum AcstParent_Attr_ModeValueEnum
    {
        cool,//制冷
        heat,//制热
        fan,//通风
        dry,//除湿
        humidity,//加湿
        heat_humidity,//制热加湿
    }
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 总控
    /// 场景属性值枚举
    /// </summary>
    public enum AcstParent_Attr_SceneValueEnum
    {
        at_home,//在家
        leave_home,//离家
        sleep,//睡眠
    }
 
    #endregion
 
 
    #region 空调科技系统 (绿建)子控
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 子控
    /// </summary>
    public class AcstSub
    {
 
    }
    /// <summary>
    /// 空调科技系统 (绿建)
    /// 子控
    /// 属性枚举
    /// </summary>
    public enum AcstSub_AttrEnum
    {
        on_off,//  开关  WR    string        on/off  on
        set_temp,//    设置温度    WR    float        -30-100    
        set_temp_step,//   温度加减    W    string        up/down
        room_temp,//   室内温度    R    float            
        room_humidity,//   室内湿度    R    float    %    0-100    
    }
 
    #endregion
 
 
 
}