namespace WIDESEAWCS_Model.Models { /// /// 机器人设备基础信息 /// public class RobotCraneDevice { /// /// 设备标识 /// public string Device { get; set; } = string.Empty; /// /// 设备编码 /// public string DeviceCode { get; set; } = string.Empty; /// /// 设备名称 /// public string DeviceName { get; set; } = string.Empty; /// /// IP 地址 /// public string IPAddress { get; set; } = string.Empty; } }