using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application.Enum { public enum CompanyEnum { /// /// 待审核 /// [Description("联系费用")] Pending = 0, /// /// 联系费用 /// [Description("审核通过")] Approved = 1, /// /// 联系费用 /// [Description("审核未通过")] Rejected = 2, } }