namespace WCS.Application; /// /// 设备工位输出参数 /// public class WcsPositionDto { /// /// 设备ID /// public string? DeviceIdText { get; set; } /// /// 主键Id /// public long Id { get; set; } /// /// 设备ID /// public long DeviceId { get; set; } /// /// 工位号 /// public string? StationNum { get; set; } /// /// 偏移量 /// public string? PlcPos { get; set; } /// /// 流程字类型 /// public PLCDataTypeEnum? PosType { get; set; } /// /// 字符串长度 /// public int? StringLength { get; set; } /// /// 显示屏ip地址 /// public string? LedIP { get; set; } /// /// 描述 /// public string? Text { get; set; } }