wanshenmean
8 小时以前 f288ccc545f8cc32bc922c96dfb3cab9a1f92ec6
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
namespace WIDESEAWCS_Model.Models
{
    /// <summary>
    /// 机器人设备基础信息
    /// </summary>
    public class RobotCraneDevice
    {
        /// <summary>
        /// 设备标识
        /// </summary>
        public string Device { get; set; } = string.Empty;
 
        /// <summary>
        /// 设备编码
        /// </summary>
        public string DeviceCode { get; set; } = string.Empty;
 
        /// <summary>
        /// 设备名称
        /// </summary>
        public string DeviceName { get; set; } = string.Empty;
 
        /// <summary>
        /// IP 地址
        /// </summary>
        public string IPAddress { get; set; } = string.Empty;
    }
}