InventoryMode.cs 512 B

123456789101112131415161718192021222324252627
  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 NXWMS.String.Enums
  8. {
  9. /// <summary>
  10. /// 盘点方式
  11. /// </summary>
  12. public enum InventoryMode
  13. {
  14. [Description("WMS端创建")]
  15. AppointPallet,
  16. [Description("随机盘点")]
  17. Random,
  18. [Description("盲盘")]
  19. Blind,
  20. [Description("人工选择库存盘点")]
  21. Select
  22. }
  23. }