/********************************************************************************
** auth: DBS
** date: 2018/5/3 14:12:42
** desc: 继承逻辑分区与货位关联,外加货位的排、层、列
** Ver.: V1.0.0
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Algorithm
{
public class LogicAreaLocationEntity
{
///
/// 逻辑分区编码
///
public string CN_S_AREA_CODE
{
set;
get;
}
///
/// 逻辑分区名称
///
public string CN_S_AREA_NAME
{
set;
get;
}
///
/// 仓库编码
///
public string CN_S_STOCK_CODE
{
set;
get;
}
///
/// 仓库库区
///
public string CN_S_STOCK_AREA
{
set;
get;
}
///
/// 货位编码
///
public string CN_S_LOCATION_CODE
{
set;
get;
}
///
/// 排
///
public string CN_S_ROW
{
set;
get;
}
///
/// 列
///
public string CN_S_COL
{
set;
get;
}
///
/// 层
///
public string CN_S_FLOOR
{
set;
get;
}
}
}