You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
558 B
26 lines
558 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PEIS.Repositories.Enums
|
|
{
|
|
/// <summary>
|
|
/// 枚举类存放的地方 特别是一些审核状态 下方代码举例
|
|
/// </summary>
|
|
public enum ConfigEnum
|
|
{
|
|
/// <summary>
|
|
/// 通过申请
|
|
/// </summary>
|
|
Pass = 1,
|
|
/// <summary>
|
|
/// 驳回申请
|
|
/// </summary>
|
|
Reject = 2,
|
|
|
|
/// <summary>
|
|
/// 无需审核--永久申请
|
|
/// </summary>
|
|
NoReviewRequired = 3,
|
|
}
|
|
}
|
|
|