1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace NXWMS.String.Enums
- {
- /// <summary>
- /// 质检结果
- /// </summary>
- public enum InspectionResultStatus
- {
- [Description("未质检")]
- Wait,
- [Description("质检合格")]
- OK,
- [Description("质检不合格")]
- NG,
- }
- }
|