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_LogicEntitys : BaseModel
{
///
/// 状态
///
public int S_TYPE { get; set; }
///
/// 优先级
///
public int S_PRIORITY { get; set; }
///
/// 站点编码
///
public string S_LOCATION_CODE { get; set; }
///
/// 仓库
///
public string S_STOCK_AREA { get; set; }
///
/// 库区编码
///
public string S_AREA_CODE { get; set; }
///
/// 是否启用
/// Y: 启用
/// N: 弃用
///
public string S_START_USING { get; set; }
///
/// 分区编码
///
public string S_ZONAL_CODE { get; set; }
}
}