using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Const
{
class EnumInfo
{
}
///
/// 任务状态
///
public enum TaskState
{
[Description("待接收")]
待接收 = 1,
[Description("已接收")]
已接收 = 2,
[Description("已完成")]
已完成 = 3,
}
///
/// 上报火情状态
///
public enum State
{
[Description("上报")]
上报 = 1,
[Description("处理中")]
处理中 = 2,
[Description("处理完成")]
处理完成 = 3,
[Description("误报")]
误报 = 4,
[Description("已合并")]
已合并 = 5,
}
}