InspectionWay.cs 458 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace NXWMS.Client.String.Enums
  7. {
  8. /// <summary>
  9. /// 质检方式
  10. /// </summary>
  11. public enum InspectionWay
  12. {
  13. [Description("收货前质检")]
  14. ReceiptBefore = 1,
  15. [Description("库内出库质检")]
  16. ReceiptAfter = 2,
  17. [Description("库内抽检")]
  18. Extract = 2,
  19. }
  20. }