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.
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace DS.Module.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum FeeStatus
|
|
|
|
|
{
|
|
|
|
|
[Description("审核通过")]
|
|
|
|
|
AuditPassed = 0,
|
|
|
|
|
|
|
|
|
|
[Description("录入状态")]
|
|
|
|
|
Entering = 1,
|
|
|
|
|
|
|
|
|
|
[Description("提交审核")]
|
|
|
|
|
AuditSubmitted = 2,
|
|
|
|
|
|
|
|
|
|
[Description("申请修改")]
|
|
|
|
|
ApplyModification = 3,
|
|
|
|
|
|
|
|
|
|
[Description("申请删除")]
|
|
|
|
|
ApplyDeletion = 4,
|
|
|
|
|
|
|
|
|
|
[Description("撤销申请")]
|
|
|
|
|
Withdraw = 5,
|
|
|
|
|
|
|
|
|
|
[Description("驳回提交")]
|
|
|
|
|
RejectSubmission = 6,
|
|
|
|
|
|
|
|
|
|
[Description("驳回申请")]
|
|
|
|
|
RejectApplication = 7,
|
|
|
|
|
|
|
|
|
|
[Description("部分结算")]
|
|
|
|
|
PartialSettlement = 8,
|
|
|
|
|
|
|
|
|
|
[Description("结算完毕")]
|
|
|
|
|
SettlementCompleted = 9
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用审批类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum FeeAuditType
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提交审核
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("提交审核")]
|
|
|
|
|
ApplyAudit,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 申请修改
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("申请修改")]
|
|
|
|
|
ApplyModification,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 申请删除
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("申请删除")]
|
|
|
|
|
ApplyDeletion,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 撤销申请
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("撤销申请")]
|
|
|
|
|
Withdraw,
|
|
|
|
|
}
|
|
|
|
|
}
|