using Admin.NET.Core;
using System.Security.AccessControl;
namespace Admin.NET.Application.Entity;
///
/// 库位视图
///
[MySugarTableViewAttribute("v_wms_place_container_info", "库位视图")]
public class v_wms_place_container_info : EntityBase
{
///
/// 库位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; }
/////
///// 是否锁定
/////
//public int? IsLocked { 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; }
public string MaterialCode { get; set; }
public string MaterialTypeCode { get; set; }
}