From 120e7a933c675b5587db9db17bb202075cacee00 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周五, 30 8月 2024 09:33:55 +0800 Subject: [PATCH] 1 --- iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 49 insertions(+), 0 deletions(-) diff --git a/iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs b/iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs index 1db715a..78f202f 100644 --- a/iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs +++ b/iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs @@ -1,5 +1,8 @@ 锘縰sing iWare.Wms.Core.Util.LowCode.Dto; using System; +using Microsoft.EntityFrameworkCore; +using System.ComponentModel.DataAnnotations; +using iWare.Wms.Core; namespace iWare.Wms.Application { @@ -8,6 +11,52 @@ /// </summary> public class WorkPieceOutboundOutput { + + /// <summary> + /// 灏忚溅鐮� + /// </summary> + [Comment("灏忚溅鐮�")] + [MaxLength(32)] + public string CarNo { get; set; } + + /// <summary> + /// 闃舵 + /// </summary> + [Comment("闃舵")] + public PieceUnLineStage? UnLineStage { get; set; } + + /// <summary> + /// 闃舵鍚嶇О + /// </summary> + [Comment("闃舵鍚嶇О")] + public String UnLineStageName { get; set; } + + + + #region 涓嬬嚎 + + /// <summary> + /// 涓嬬嚎鏃堕棿 + /// </summary> + [Comment("涓嬬嚎鏃堕棿")] + public DateTime? WorkPieceUnLineTime { get; set; } + + + /// <summary> + /// 涓嬬嚎浜篒d + /// </summary> + [Comment("涓嬬嚎浜篒d")] + public long? WorkPieceUnLineUserId { get; set; } + + /// <summary> + /// 涓嬬嚎浜哄悕绉� + /// </summary> + [Comment("涓嬬嚎浜哄悕绉�")] + [MaxLength(32)] + public string WorkPieceUnLineUserName { get; set; } + + #endregion + /// <summary> /// 宸ヤ欢鍙� /// </summary> -- Gitblit v1.9.3