namespace IStation.WebApi
{
///
/// Restful结果编码
///
public enum XnRestfulResultCode
{
///
/// 成功
///
Success = 0,
///
/// 需要用户确认
///
Confirm = -1,
///
/// 一般性提示
///
Prompt = -2,
///
/// 报警
///
Alert = -3,
///
/// 失败
///
Error = -4,
///
/// 超时
///
TimeOut = -5
}
}