using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.CommonEnum
{
public enum PalletTypeEnum
{
///
/// 空箱
///
Empty = -1,
None = 0,
///
/// 小托盘
///
SmallPallet = 1,
///
/// 中托盘
///
MediumPallet = 2,
///
/// 大托盘
///
LargePallet = 3,
///
/// 最大托盘
///
LargestPallet = 4
}
}