using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWare.Wms.Core.Enum
{
///
/// 库区类型
///
public enum AreaType
{
///
/// 其他
///
[Description("其他")]
QITA = 0,
///
/// 立体库
///
[Description("立体库")]
LITIKU = 1,
///
/// 普通库
///
[Description("普通库")]
PUTONGK = 2,
///
/// 公共库
///
[Description("公共库")]
GONGGONGKU = 3,
}
///
/// 库位状态
///
public enum PlaceStatus
{
///
/// 空闲
///
[Description("空闲")]
KONGXIAN = 1,
///
/// 待入
///
[Description("待入")]
DAIRU = 2,
///
/// 存货
///
[Description("存货")]
CUNHUO = 3,
///
/// 待出
///
[Description("待出")]
DAICHU = 4,
}
///
/// 库位高度
///
public enum Heightlevel
{
///
/// 低
///
[Description("低")]
DI = 1,
///
/// 中
///
[Description("中")]
ZHONG = 2,
///
/// 高
///
[Description("高")]
GAO = 3
}
}