You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
550 B
C#
33 lines
550 B
C#
using System.ComponentModel;
|
|
|
|
namespace DS.Module.Core;
|
|
|
|
/// <summary>
|
|
/// 审核状态
|
|
/// </summary>
|
|
public enum AuditStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 未提交
|
|
/// </summary>
|
|
[Description("未提交")]
|
|
NoAudit = -1,
|
|
|
|
/// <summary>
|
|
/// 待审批
|
|
/// </summary>
|
|
[Description("待审批")]
|
|
Auditing = 0,
|
|
|
|
/// <summary>
|
|
/// 审核通过
|
|
/// </summary>
|
|
[Description("审核通过")]
|
|
Approve = 1,
|
|
|
|
/// <summary>
|
|
/// 驳回
|
|
/// </summary>
|
|
[Description("驳回")]
|
|
Reject = 2,
|
|
} |