Admin
2025-12-02 9e42f0dafa019f5ecf6b0ff425ecb966b002171e
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA.Common.Modbus
{
    public class ModbusDeviceItem
    {
        /// <summary>
        /// Modbus地址
        /// </summary>
        public string ModbusAddress { get; set; }
 
        /// <summary>
        /// 位置描述
        /// </summary>
        public string LocationDescription { get; set; }
 
        /// <summary>
        /// 设备类型
        /// </summary>
        public string DeviceType { get; set; }
 
        /// <summary>
        /// 报警主机地址
        /// </summary>
        public string AlarmAddress { get; set; }
    }
}