using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JY.Model.Enums
{
///
/// 结果类型
///
public enum EnumResultType
{
///
/// 全部
///
[Description("全部")]
All = 0,
///
/// OK
///
[Description("OK")]
OK = 1,
///
/// NG
///
[Description("NG")]
NG = 2
}
}