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