using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Api
{
///
/// 执行结果的状态枚举
///
public enum Code
{
///
/// 成功
///
Success = 0,
///
/// 需要用户确认
///
Confirm = -1,
///
/// 一般性提示
///
Prompt = -2,
///
/// 报警
///
Alert = -3,
///
/// 失败
///
Error = -4,
///
/// 超时
///
TimeOut = -5
}
}