接口逻辑修改

This commit is contained in:
2026-07-01 08:18:07 +08:00
parent fa1acec8af
commit 85a58123be
7 changed files with 722 additions and 627 deletions

View 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
}
}