1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace NXWMS.String.Enums
- {
- /// <summary>
- /// 状态确认
- /// </summary>
- public enum ResultStatus
- {
- [Description("未确认")]
- UnLock = 0,
- [Description("已确认")]
- Lock = 1,
- }
- }
|