namespace Admin.NET.Application; /// /// 容器分拣信息输出参数 /// public class WmsSortOutput { /// /// 主键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; } /// /// 波次单明细ID /// public long? SortDetailsId { get; set; } /// /// 关联单号 /// public string RelationNo { get; set; } /// /// 关联单据类型 /// public Admin.NET.Application.OrderTypeEnum? RelationOrderType { get; set; } /// /// 关联单据类型名称 /// public string RelationOrderTypeName { get; set; } /// /// 关联单明细ID /// public long? RelationDetailsId { 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; } }