using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UtilLib { public enum AcceptEnum { /// /// 默认(未处理) /// Default = 0, /// /// 复核 /// Review = 1, /// /// 采纳 /// Accept = 2, /// /// 忽略 /// Ignore = 3 } }