using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.LocationEnum
{
///
/// 货位状态 0:空库位,1:空托盘,2:有货库位,3:待出库库位,4:待入库库位
///
public enum LocationStatusEnum
{
///
/// 空闲
///
[Description("空闲")]
Free = 0,
///
/// 锁定
///
[Description("锁定")]
Lock = 1,
///
/// 有货锁定
///
[Description("有货锁定")]
InStockLock = 10,
///
///
///
[Description("空闲锁定")]
FreeLock = 20,
///
/// 有货
///
[Description("有货")]
InStock = 100,
///
/// 大托盘锁定
///
[Description("大托盘锁定")]
PalletLock = 99
}
}