using System.ComponentModel;
namespace Admin.NET.Application
{
///
/// 库位类型
///
[Description("库位类型")]
public enum PlaceTypeEnum
{
///
/// 小货位,小于70cm
///
[Description("小货位")]
小货位 = 1,
///
/// 中货位,小于等于1m
///
[Description("中货位")]
中货位 = 2,
///
/// 大货位,大于1m
///
///
[Description("大货位")]
大货位 = 3
}
///
/// 作业库位
///
[Description("作业库位")]
public enum OperationsPlaceEnum
{
///
/// 发货区域库位
///
[Description("发货区域库位")]
SHIPPING = 1,
///
/// 在途库位
///
[Description("在途库位")]
INTRANSIT = 2,
///
/// 平库区域库位
///
[Description("平库区域库位")]
PKQYKW = 3,
///
/// 收货区域库位
///
[Description("收货区域库位")]
STAGING = 4,
///
/// 待检区域库位
///
[Description("待检区域库位")]
QMLOT = 5,
///
/// 不良品区域库位
///
[Description("不良品区域库位")]
SQE = 6,
///
/// 分拣区域库位
///
[Description("分拣区域库位")]
FJQY = 7,
///
/// 线边区域库位
///
[Description("线边区域库位")]
LS = 8,
///
/// 盘点库位
///
[Description("盘点库位")]
PDKW = 9
}
///
/// 作业库位
///
[Description("作业库区")]
public enum OperationsAreaEnum
{
///
/// 发货区域
///
[Description("发货区域")]
SHIPPING = 1,
/////
///// 在途库位
/////
//[Description("在途库位")]
//INTRANSIT = 2,
///
/// 平库区域
///
[Description("平库区域")]
PKQYKW = 3,
///
/// 收货区域
///
[Description("收货区域")]
STAGING = 4,
///
/// 待检区域
///
[Description("待检区域")]
QMLOT = 5,
///
/// 不良品区域
///
[Description("不良品区域")]
SQE = 6,
///
/// 分拣区域
///
[Description("分拣区域")]
FJQY = 7,
///
/// 线边区域
///
[Description("线边区域")]
LS = 8
}
///
/// 存放单位
///
[Description("存放单位")]
public enum StockUnitEnum
{
///
/// 箱
///
[Description("箱")]
箱 = 1,
///
/// 容器
///
[Description("容器")]
容器 = 2,
///
/// 其他
///
[Description("其他")]
其他 = 3,
}
///
/// 库位属性
///
[Description("库位属性")]
public enum PlaceStatusEnum
{
///
/// 正常
///
[Description("正常")]
正常 = 1,
/////
///// 封存
/////
//[Description("封存")]
//封存 = 2,
/////
///// 禁出 --不用了
/////
//[Description("禁出")]
//禁出 = 3,
/////
///// 禁入 --不用了
/////
//[Description("禁入")]
//禁入 = 4,
///
/// 锁定
///
[Description("锁定")]
锁定 = 5
}
}