using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.SJML.Entitys
{
[ST("库区表")]
public class TN_AreaEntitys : BaseModel
{
///
/// 仓库编码
///
public string S_WH_CODE { get; set; }
///
/// 库区编码
///
public string S_AREA_CODE { get; set; }
///
/// 库区名称
///
public string S_AREA_NAME { get; set; }
///
/// 描述--库区结构
///
public string S_NOTE { get; set; }
///
/// 库区类型
///
public string S_AREA_TYPE { get; set; }
///
/// 楼层
///
public int N_FLOOR { get; set; }
///
/// 导入货位时约束
///
public string S_STRUCTURE { get; set; }
///
/// 扩展的数据定义
///
public string S_EXT_DATA { get; set; }
///
/// 货位类型
///
public string S_LOC_TYPE { get; set; }
///
/// 货位类型_值
///
public int N_LOC_TYPE { get; set; }
///
/// 用途
///
public int N_PURPOSE { get; set; }
///
/// 用途
///
public string S_PURPOSE { get; set; }
///
/// 库区是否管控
///
public string S_CONTROL_QTY { get; set; }
}
}