46 lines
879 B
C#
46 lines
879 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Entity.Enum
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 作业状态
|
|||
|
/// </summary>
|
|||
|
public enum HomeWorkStatus
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 进行中
|
|||
|
/// </summary>
|
|||
|
[Description("进行中")]
|
|||
|
Afoot = 1,
|
|||
|
/// <summary>
|
|||
|
/// 已结束
|
|||
|
/// </summary>
|
|||
|
[Description("已结束")]
|
|||
|
Ended = 2
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 学生作业状态
|
|||
|
/// </summary>
|
|||
|
public enum StudentWorkStatus
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 进行中
|
|||
|
/// </summary>
|
|||
|
[Description("进行中")]
|
|||
|
Afoot = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 已完成
|
|||
|
/// </summary>
|
|||
|
[Description("已完成")]
|
|||
|
Completed = 2
|
|||
|
}
|
|||
|
}
|