using System;
namespace NXWMS.DataAccess.Entity
{
//库位信息表
public class BAS_BIN : ModelBase
{
///
/// 系统主键
///
public int BIN_ID { get; set; }
///
/// NewId主键
///
public string NEWID { get; set; }
///
/// 库位编码
///
public string BIN_CODE { get; set; }
///
/// 库位名称
///
public string BIN_NAME { get; set; }
///
/// 库位类型
///
public string BIN_TYPE { get; set; }
///
/// 区域编码
///
public string AREA_CODE { get; set; }
///
/// 区域名称
///
public string AREA_NAME { get; set; }
///
/// 仓库编码
///
public string WAREHOUSE_CODE { get; set; }
///
/// 仓库名称
///
public string WAREHOUSE_NAME { get; set; }
///
/// 库区编码
///
public string REGION_CODE { get; set; }
///
/// 库区名称
///
public string REGION_NAME { get; set; }
///
/// 货架排编码
///
public string SHELF_CODE { get; set; }
///
/// 货架排名称
///
public string SHELF_NAME { get; set; }
///
/// 库位排
///
public int BIN_ROW { get; set; }
///
/// 库位列
///
public int BIN_COLUMN { get; set; }
///
/// 库位层
///
public int BIN_LAYER { get; set; }
///
/// 长
///
public decimal? LENGTH { get; set; }
///
/// 宽
///
public decimal? WIDTH { get; set; }
///
/// 高
///
public decimal? HEIGHT { get; set; }
///
/// 上架顺序
///
public int? PUT_SHELF_ORDER { get; set; }
///
/// 下架顺序
///
public int? DOWN_SHELF_ORDER { get; set; }
///
/// 体积限制
///
public decimal? VOLUME_LIMIT { get; set; }
///
/// 重量限制
///
public decimal? WEIGHT_LIMIT { get; set; }
///
/// 数量限制
///
public decimal? NUMBER_LIMIT { get; set; }
///
/// 托盘限制
///
public decimal? TRAR_LIMIT { get; set; }
///
/// 允许混放产品
///
public int? BLEND_PRODUCT_FLAG { get; set; }
///
/// 允许混放批次
///
public int? BLEND_BATCH_FLAG { get; set; }
///
/// 描述
///
public string DESCRIBE { get; set; }
///
/// 使用标识。0:禁用;1:启用。
///
public int USED_FLAG { get; set; }
///
/// 删除标识。0:未删除;1:已删除。
///
public int DEL_FLAG { get; set; }
}
}