wxr
2020-11-12 a715181089be0d31cd737a5367ffd02690b9d77f
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
using System;
namespace HDL_ON.Entity
{
    /// <summary>
    /// 设备模块
    /// </summary>
    public class DeviceModule
    {
        public DeviceModule()
        {
        }
        /// <summary>
        /// 设备mac
        /// </summary>
        public string device_mac = "0281B9078C000000";
        /// <summary>
        /// 设备类型
        /// 网关目前为“”
        /// 语音面板:4
        /// </summary>
        public int gateway_type = 0;
        public string model_id = "";
        public string device_name = "hdl_bus_gatway";
        public string model_type = "HDL GWA01IP";
        public string ip_address = "172.16.2.202";
        public string local_data_encode = "false";
        public string access_mode = "LAN";
        public string oid = "";
 
 
    }
}