using System.ComponentModel;
namespace Admin.NET.Core
{
///
/// 打包状态
///
public enum LesPackState
{
///
/// 停用
///
[Description("停用")]
TINGYONG = 0,
///
/// 未出库
///
[Description("未出库")]
WEICHUKU = 1,
///
/// 转移库中
///
[Description("转移库中")]
ZHUANYIKU = 2
}
}