using System.ComponentModel;
namespace WMS.Info
{
///
/// 货位状态
///
[Description("货位状态")]
public enum EWareCellState
{
///
/// 空货位
///
[Description("空货位")]
Empty = 1,
///
/// 已存储
///
[Description("已存储")]
Stored = 2,
///
/// 待入库
///
[Description("待入库")]
In = 3,
///
/// 待出库
///
[Description("待出库")]
Out = 4
}
}