namespace Admin.NET.Application; /// /// 实时库存输出参数 /// public class WmsStockQuanOutput { /// /// 关联单号 /// public string? RelationNo { get; set; } /// /// 主键Id /// public long? Id { get; set; } /// /// 容器Id /// public long? ContainerId { get; set; } /// /// 容器编码 /// public string ContainerCode { get; set; } /// /// 物料编码 /// public string MaterialCode { get; set; } /// /// 数量 /// public decimal? Quantity { get; set; } /// /// 供应商批次 /// public string SupplierBatch { get; set; } /// /// 批次 /// public string Batch { 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 DateTime? RecordInsertTime { get; set; } /// /// 供应商编号 /// public string SupplierCode { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 库存状态 /// public Admin.NET.Application.StockStatusEnum? StockStatus { get; set; } /// /// 库存状态名称 /// public string StockStatusName { get; set; } /// /// 一维条码 /// public string SN_1d { get; set; } /// /// 二维条码 /// public string SN_2d { get; set; } /// /// 跟踪码 /// public string SNCode { get; set; } /// /// ERP单号 /// public string ErpOrderNo { get; set; } /// /// ERP库存地 /// public string ErpCode { get; set; } /// /// 质检状态 /// public Admin.NET.Application.StockQcStatusEnum? QCStatus { get; set; } /// /// 质检状态名称 /// public string QCStatusName { get; set; } /// /// ERP凭证 /// public string ErpVoucher { get; set; } /// /// 操作备注 /// public string ActionRemark { get; set; } /// /// 操作时间 /// public DateTime? ActionTime { get; set; } } /// /// 库位利用率参数 /// public class WmsAvailabilityOfPlace { /// /// 所属库区编号 /// public string AreaCode { get; set; } /// /// 所属库区名称 /// public string AreaName { get; set; } /// /// 所属库区类型 /// public AreaTypeEnum AreaType { get; set; } /// /// 所属仓库编号 /// public string? WarehouseCode { get; set; } /// /// 所属仓库名称 /// public string? WarehouseName { get; set; } /// /// 利用率 /// public double? AvailabilityOfPlace { get; set; } /// /// 库存数量 /// public int PlaceStockNumber { get; set; } /// /// 所有库存数 /// public int PlaceAllNumber { get; set; } /// /// 百分比 /// public string? Percentage { get; set; } }