namespace Admin.NET.Application; /// /// 容器分拣信息打印输出参数 /// public class WmsContainerSortPrintOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 容器编码 /// public string ContainerCode { get; set; } /// /// 物料编号 /// public string MaterialCode { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 跟踪码 /// public string SNCode { get; set; } /// /// 分拣状态 /// public Admin.NET.Application.OrderStatusEnum SortStatus { get; set; } /// /// 分拣状态名称 /// public string SortStatusName { get; set; } /// /// 需求数 /// public decimal Quantity { get; set; } /// /// 分拣数 /// public decimal PickQuantity { get; set; } /// /// 批次 /// public string Batch { get; set; } /// /// 供应商批次 /// public string SupplierBatch { get; set; } /// /// ERP库存地 /// public string ErpCode { get; set; } /// /// 波次单号 /// public string SortNo { get; set; } /// /// 波次单行号 /// public string SortNoLineNumber { get; set; } /// /// 波次单明细ID /// public long? SortDetailsId { get; set; } /// /// 关联单号 /// public string RelationNo { get; set; } /// /// 关联单行号 /// public string RelationNoLineNumber { get; set; } /// /// 关联单据类型 /// public Admin.NET.Application.OrderTypeEnum? RelationOrderType { get; set; } /// /// 关联单据类型名称 /// public string RelationOrderTypeName { get; set; } /// /// 关联单明细ID /// public long RelationDetailsId { get; set; } /// /// 锁定库存ID /// public long StockQuanLockId { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } }