2026-06-08 17:54:36 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2026-06-08 16:57:44 +08:00
|
|
|
namespace QYZH.InteractiveMagazine.Models.Enum;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点读文件状态枚举
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum DotFileStatusEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 待处理
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("待处理")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Pending = 0,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 处理中
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("处理中")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Processing = 1,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 成功
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("成功")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Success = 2,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 失败
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("失败")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Failed = 3,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已取消
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("已取消")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Cancelled = 4
|
|
|
|
|
}
|