using Admin.NET.Application.Entity; namespace Admin.NET.Application; /// /// 容器待上架物料输出参数 /// public class WmsPutawayOutput { /// /// 库位编码 /// public string PlaceCode { get; set; } /// /// 待上架物料明细 /// public List Details { get; set; } } /// /// 待上架物料明细输出参数 /// public class WmsPutawayDetailsOutput { /// /// 容器号 /// public string ContainerCode { get; set; } /// /// 跟踪码 /// public string SNCode { get; set; } /// /// 物料编码 /// public string MaterialCode { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 数量 /// public decimal Quantity { get; set; } /// /// 库存状态 /// public Admin.NET.Application.StockStatusEnum? StockStatus { get; set; } /// /// 库存状态名称 /// public string StockStatusName { get; set; } /// /// 质检状态名称 /// public string QCStatusName { get; set; } /// /// 供应商编号 /// public string SupplierCode { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// ERP单号 /// public string ErpOrderNo { get; set; } /// /// ERP库存地 /// public string ErpCode { get; set; } /// /// 供应商批次 /// public string SupplierBatch { get; set; } /// /// 批次 /// public string Batch { get; set; } } public class GetContainerOutput { /// /// 容器Id /// public long Id { get; set; } /// /// 编号 /// public string ContainerCode { get; set; } /// /// 名称 /// public string ContainerName { get; set; } /// /// 类型ID /// public long ContainerTypeId { get; set; } /// /// 类型编号 /// public string? ContainerTypeCode { get; set; } /// /// 类型名称 /// public string? ContainerTypeName { get; set; } /// /// 使用次数 /// public int UsageCount { get; set; } /// /// 是否虚拟 /// public bool? IsVirtually { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } }