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 InspectionItemResult
- {
- [Description("正常品")]
- normal,
- [Description("临期品")]
- Impending,
- [Description("过期品")]
- Overdue,
- }
- }
|