1
schangxiang@126.com
2024-08-30 120e7a933c675b5587db9db17bb202075cacee00
iWara.SCADA.Code/iWare.Wms.Application/Service/WorkPieceOutbound/Dto/WorkPieceOutboundOutput.cs
@@ -1,5 +1,8 @@
using 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>
        /// 下线人Id
        /// </summary>
        [Comment("下线人Id")]
        public long? WorkPieceUnLineUserId { get; set; }
        /// <summary>
        /// 下线人名称
        /// </summary>
        [Comment("下线人名称")]
        [MaxLength(32)]
        public string WorkPieceUnLineUserName { get; set; }
        #endregion
        /// <summary>
        /// 工件号
        /// </summary>