ELOCKSTATUS.cs 497 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WMS.Info
  8. {
  9. [Description("WMS任务锁定状态")]
  10. public enum ELOCKSTATUS
  11. {
  12. /// <summary>
  13. /// 未锁
  14. /// </summary>
  15. [Description("未锁")]
  16. NoLockStatus = 0,
  17. /// <summary>
  18. /// 锁定
  19. /// </summary>
  20. [Description("锁定")]
  21. LockStatus = 1,
  22. }
  23. }