123456789101112131415161718192021222324 |
- 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
- {
- /// <summary>
- /// 未锁
- /// </summary>
- [Description("未锁")]
- NoLockStatus = 0,
- /// <summary>
- /// 锁定
- /// </summary>
- [Description("锁定")]
- LockStatus = 1,
- }
- }
|