删除AnswerStatus字段

This commit is contained in:
2026-07-01 09:20:07 +08:00
parent 2ca2a4c114
commit b822489111
5 changed files with 19 additions and 70 deletions

View File

@ -1,28 +0,0 @@
using System.ComponentModel;
namespace QYZH.InteractiveMagazine.Models.Enum
{
/// <summary>
/// 答题状态枚举: 10-已答题20-进行中30-已完成
/// </summary>
public enum AnswerStatusEnum
{
/// <summary>
/// 已答题
/// </summary>
[Description("已答题")]
Answer = 10,
/// <summary>
/// 进行中
/// </summary>
[Description("进行中")]
Processing = 20,
/// <summary>
/// 已完成
/// </summary>
[Description("已完成")]
Complete = 30,
}
}