namespace Admin.NET.Application; /// /// 库位视图输出参数 /// public class WmsPlaceContainerInfoOutput { /// /// 库位code /// public string WareLocationCode { get; set; } /// /// 库位名称 /// public string WareLocationName { get; set; } /// /// 巷道 /// public int? Lane { get; set; } /// /// 排 /// public int? Row { get; set; } /// /// 列 /// public int? Column { get; set; } /// /// 层 /// public int? Layer { get; set; } /// /// 库位属性 /// public PlaceStatusEnum? Status { get; set; } /// /// 库存类型,0-库位,1-空容器,2-物料容器 /// public int? InventoryType { get; set; } /// /// 容器号 /// public string WareContainerCode { get; set; } /// /// 高度 /// public decimal? High { get; set; } /// /// 宽度 /// public decimal? Width { get; set; } /// /// 长度 /// public decimal? Long { get; set; } /// /// 库位类型名称 /// public string LocTypeName { get; set; } /// /// 容器类型名称 /// public string ContainerTypeName { get; set; } } /// /// 按照库位类型返回库位使用信息实体 /// public class InventoryByLocationTypeOutput { /// /// 空库位数 /// public int EmptyLocation { get; set; } /// /// 空容器库位数 /// public int EmptyContainerLocation { get; set; } /// /// 满容器库位数 /// public int MaterialLocation { get; set; } /// /// 锁定库位数 /// public int LockedLocation { get; set; } /// /// 禁用库位数 /// public int DisableLocation { get; set; } /// /// 库位总数 /// public int TotalLocation { get; set; } /// /// 使用率 /// public string DutyCycle { get; set; } /// /// 空置率 /// public string VacancyRate { get; set; } /// /// 仓库的所有巷道 /// public List LocationTypes { get; set; } } /// /// /// public class LocationTypeList { /// /// 库位类型名称 /// public string LocTypeName { get; set; } /// /// 高度 /// public decimal? High { get; set; } /// /// 宽度 /// public decimal? Width { get; set; } /// /// 长度 /// public decimal? Long { get; set; } /// /// 库位总数 /// public int TotalLocation { get; set; } /// /// 空库位数 /// public int EmptyLocation { get; set; } /// /// 空容器库位数 /// public int EmptyContainerLocation { get; set; } /// /// 满容器库位数 /// public int MaterialLocation { get; set; } /// /// 锁定库位数 /// public int LockedLocation { get; set; } /// /// 禁用库位数 /// public int DisableLocation { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 是否锁定 /// public int? IsLocked { get; set; } /// /// 库存类型,0-库位,1-空容器,2-物料容器 /// public int? InventoryType { get; set; } /// /// 是否删除 /// public bool? IsDeleted { get; set; } /// /// 使用率 /// public string DutyCycle { get; set; } /// /// 空置率 /// public string VacancyRate { get; set; } /// /// 库位容器、料箱类型名称 /// public string ContainerTypeName { get; set; } } public class InventoryByLocationOutput { /// /// 空库位数 /// public int EmptyLocation { get; set; } /// /// 空容器库位数 /// public int EmptyContainerLocation { get; set; } /// /// 满容器库位数 /// public int MaterialLocation { get; set; } /// /// 锁定库位数 /// public int LockedLocation { get; set; } /// /// 禁用库位数 /// public int DisableLocation { get; set; } /// /// 仓库的所有巷道 /// public List Lanes { get; set; } /// /// 库位状态-是否显示 /// public bool ShowInventoryType { get; set; } } public class Lane { /// /// 巷道号 /// public int? LaneCode { get; set; } /// /// 巷道的所有排 /// public List Rows { get; set; } } public class Row { /// /// 排号 /// public int? RowCode { get; set; } /// /// 排的所有库位 /// public List RowLocations { get; set; } } public class RowLocation { /// /// 库位code /// public string WareLocationCode { get; set; } /// /// 库位名称 /// public string WareLocationName { get; set; } /// /// 巷道 /// public int? Lane { get; set; } /// /// 排 /// public int? Row { get; set; } /// /// 列 /// public int? Column { get; set; } /// /// 层 /// public int? Layer { get; set; } /// /// 库位属性 /// public PlaceStatusEnum? Status { get; set; } /// /// 库存类型,0-空库位,1-空容器,2-物料容器 /// public int? InventoryType { get; set; } /// /// 库位状态筛查用 ly-0729 /// public string? ShowInventoryType { get; set; } /// /// 容器号 /// public string WareContainerCode { get; set; } /// /// 高度 /// public decimal? High { get; set; } /// /// 宽度 /// public decimal? Width { get; set; } /// /// 长度 /// public decimal? Long { get; set; } /// /// 库位类型名称 /// public string LocTypeName { get; set; } /// /// 容器类型名称 /// public string ContainerTypeName { get; set; } /// /// 物料类型编号 /// public string MaterialTypeCode { get; set; } /// /// 物料编号 /// public string MaterialCode { get; set; } /// /// 是否删除 /// public bool? IsDelete { get; set; } }