using Admin.NET.Core;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application;
///
///库位视图基础输入参数
///
public class WmsPlaceContainerInfoBaseInput
{
///
/// 库位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 WmsPlaceContainerInfoInput : BasePageInput
{
///
/// 关键字查询
///
public string? SearchKey { get; set; }
///
/// 库位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 string AreaCode { get; set; }
}