From 11645f5f19cad36d938d0579941500a7d7d3a360 Mon Sep 17 00:00:00 2001 From: wxw <Administrator@DESKTOP-5BIMHQ3> Date: 星期三, 04 九月 2024 11:28:38 +0800 Subject: [PATCH] 绑定分拣码垛设备数据;增加分拣任务实体 --- Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceOutput.cs | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceOutput.cs b/Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceOutput.cs index 1e3e202..e7d24d7 100644 --- a/Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceOutput.cs +++ b/Admin.NET/WCS.Application/Service/WcsDevice/Dto/WcsDeviceOutput.cs @@ -123,13 +123,27 @@ /// <summary> /// 浠诲姟绫诲瀷 /// </summary> - public TaskTypeEnum TaskType { get; set; } + public TaskTypeEnum? TaskType { get; set; } + /// <summary> + /// 璧峰宸ヤ綅 + /// </summary> + public string StartLocatNo { get; set; } + /// <summary> + /// 缁撴潫宸ヤ綅 + /// </summary> + public string EndLocatNo { get; set; } + /// <summary> + /// 鎵樼洏鐮� + /// </summary> + public string PalletNo { get; set; } public string Plc { get; set; } public string Wcs { get; set; } /// <summary> /// 杩炴帴鐘舵�� /// </summary> - public bool Status { get; set; } + public bool Status { get; set; } = false; + + } -- Gitblit v1.8.0