Merge branch 'master' of http://8.137.159.94:3000/glz/QYZH.InteractiveMagazine
This commit is contained in:
22
QYZH.InteractiveMagazine.Models/Enum/AssignmentStatusEnum.cs
Normal file
22
QYZH.InteractiveMagazine.Models/Enum/AssignmentStatusEnum.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace QYZH.InteractiveMagazine.Models.Enum
|
||||
{
|
||||
/// <summary>
|
||||
/// 作业分配审核状态枚举: 0-未审核 1-已审核
|
||||
/// </summary>
|
||||
public enum AssignmentStatusEnum
|
||||
{
|
||||
/// <summary>
|
||||
/// 未审核
|
||||
/// </summary>
|
||||
[Description("未审核")]
|
||||
UnAssignmented = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 已审核
|
||||
/// </summary>
|
||||
[Description("已审核")]
|
||||
Assignmented = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user