InventoryDTLStatus.cs 795 B

12345678910111213141516171819202122232425262728293031323334353637
  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 InventoryDTLStatus
  13. {
  14. [Description("初始创建")]
  15. Init = 0,
  16. [Description("开始盘点")]
  17. BeginInventory = 11,
  18. [Description("盘点中")]
  19. InInventor = 55,
  20. [Description("第一次盘点完成")]
  21. FirstInventorComplate = 88,
  22. [Description("第二次盘点完成(差异盘点)")]
  23. TwoInventorComplate = 99,
  24. [Description("强制结束盘点")]
  25. ForceEndInventor = 100,
  26. [Description("已删除")]
  27. Deleted = 111,
  28. }
  29. }