namespace Admin.NET.Application; /// /// 波次单明细输出参数 /// public class WmsOrderSortDetailsOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 波次单ID /// public long SortId { get; set; } /// /// 波次单号 /// public string SortNo { get; set; } /// /// 状态 /// public Admin.NET.Application.OrderStatusEnum SortDetailStatus { get; set; } /// /// 状态名称 /// public string SortDetailStatusName { get; set; } /// /// 行号 /// public string LineNumber { get; set; } /// /// 物料编号 /// public string MaterialCode { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 关联单号 /// public string RelationNo { get; set; } /// /// 关联单行号 /// public string RelationNoLineNumber { get; set; } /// /// 跟踪码 /// public string SNCode { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 数量 /// public decimal Quantity { get; set; } /// /// 分配数 /// public decimal? DispenseQuantity { get; set; } /// /// 下架数 /// public decimal? OffShelvesQuantity { get; set; } /// /// 发货数 /// public decimal? DeliverQuantity { get; set; } /// /// 拣货数 /// public decimal? PickQuantity { get; set; } /// /// 下发数 /// public decimal? IssueQuantity { get; set; } /// /// 批次规则 /// public string BatchRule { get; set; } /// /// 批次 /// public string Batch { get; set; } /// /// ERP单号 /// public string ErpOrderNo { get; set; } /// /// ERP库存地 /// public string ErpCode { 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; } /// /// 客户编号 /// public string? CustCode { get; set; } /// /// 客户名称 /// public string? CustName { get; set; } /// /// 优先级 /// public int? Priority { get; set; } }