InReceiptStatus.cs 661 B

123456789101112131415161718192021222324252627282930313233
  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 InReceiptStatus
  13. {
  14. [Description("初始创建")]
  15. Init = 0,
  16. [Description("收货审核")]
  17. ReceiptAudit = 11,
  18. [Description("收货中")]
  19. InReceipt = 55,
  20. [Description("收货完成")]
  21. ReceiptComplete = 99,
  22. [Description("强制完成")]
  23. ForceComplete = 100,
  24. [Description("已删除")]
  25. Deleted = 111
  26. }
  27. }