| | |
| | | using iWare.Wms.Core.Util.LowCode.Dto; |
| | | using System; |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using iWare.Wms.Core; |
| | | |
| | | namespace iWare.Wms.Application |
| | | { |
| | |
| | | /// </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> |