using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info
{
[Description("WMS任务锁定状态")]
public enum ELOCKSTATUS
{
///
/// 未锁
///
[Description("未锁")]
NoLockStatus = 0,
///
/// 锁定
///
[Description("锁定")]
LockStatus = 1,
}
}