d_sms_service/APT.MS.Domain/Enums/HM/HMMeetingEnmus.cs
2024-10-28 13:45:58 +08:00

92 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace APT.MS.Domain.Enums
{
/// <summary>
/// 审批状态
/// </summary>
public enum HMAuditStatusEnmu
{
/// <summary>
/// 草稿0
/// </summary>
稿 = 0,
/// <summary>
/// 确认中5
/// </summary>
= 5,
/// <summary>
/// 确认中6
/// </summary>
= 6,
/// <summary>
/// 审批中10
/// </summary>
= 10,
/// <summary>
/// 审批通过20
/// </summary>
= 20,
/// <summary>
/// 审批驳回30
/// </summary>
= 30,
}
/// <summary>
/// 通知发布类型
/// </summary>
public enum HMNoticeReleaseTypeEnmu
{
/// <summary>
/// 风险评价计划发布0
/// </summary>
= 0,
/// <summary>
/// 作业任务分析文件发布1
/// </summary>
= 1,
}
/// <summary>
/// 文件级别
/// </summary>
public enum HMFileLevelEnmu
{
/// <summary>
/// 通知附件1
/// </summary>
= 1,
/// <summary>
/// 会议记录附件2
/// </summary>
= 2,
/// <summary>
/// 议定事项附件3
/// </summary>
= 3,
}
/// <summary>
/// 文件级别
/// </summary>
public enum HMOpinionEnmu
{
/// <summary>
/// 未选择0
/// </summary>
= 0,
/// <summary>
/// 同意1
/// </summary>
= 1,
/// <summary>
/// 不同意2
/// </summary>
= 2,
}
}