1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.String.Enums
- {
- /// <summary>
- /// 质检方式
- /// </summary>
- public enum InspectionWay
- {
- [Description("收货前质检")]
- ReceiptBefore = 1,
- [Description("库内出库质检")]
- ReceiptAfter = 2,
- [Description("库内抽检")]
- Extract = 2,
- }
- }
|