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 ContainerType
{
///
/// 其他
///
[Description("其他")]
QITA = 0,
///
/// 木质
///
[Description("木质")]
MUZHI = 1,
///
/// 金属
///
[Description("金属")]
JINSHU = 2,
///
/// 塑料
///
[Description("塑料")]
SULIAO = 3
}
///
/// 托盘状态
///
public enum ContainerStatus
{
///
/// 禁用
///
[Description("禁用")]
JINYONG = 0,
///
/// 空闲
///
[Description("空闲")]
KOUXIAN = 1,
///
/// 组盘
///
[Description("组盘")]
ZUPANG = 2,
///
/// 库位
///
[Description("库位")]
KUWEI = 3
}
}