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