接口逻辑修改
This commit is contained in:
40
QYZH.InteractiveMagazine.Models/Enum/AnswerStatusEnum.cs
Normal file
40
QYZH.InteractiveMagazine.Models/Enum/AnswerStatusEnum.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace QYZH.InteractiveMagazine.Models.Enum
|
||||
{
|
||||
/// <summary>
|
||||
/// 答题状态枚举: 0-未答题,1-已答题,2-正确,3-半对,4-错误
|
||||
/// </summary>
|
||||
public enum AnswerStatusEnum
|
||||
{
|
||||
/// <summary>
|
||||
/// 未答题
|
||||
/// </summary>
|
||||
[Description("未答题")]
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 已答题
|
||||
/// </summary>
|
||||
[Description("已答题")]
|
||||
Answer = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 正确
|
||||
/// </summary>
|
||||
[Description("正确")]
|
||||
Correct = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 半对
|
||||
/// </summary>
|
||||
[Description("半对")]
|
||||
HalfRight = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 错误
|
||||
/// </summary>
|
||||
[Description("错误")]
|
||||
Error = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user