namespace QYZH.InteractiveMagazine.Models.Enum;
///
/// 补偿任务状态枚举
///
public enum CompensationTaskStatusEnum
{
///
/// 待处理
///
Pending = 0,
///
/// 处理中
///
Processing = 1,
///
/// 成功
///
Success = 2,
///
/// 失败
///
Failed = 3,
///
/// 已取消
///
Cancelled = 4
}