using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Infrastructure.Enums
{
public enum ResultCodeEnum
{
///
/// 操作成功。
///
Success = 200,
///
/// 操作不成功
///
NotSuccess = 500,
///
/// 无权限
///
NoPermission = 401,
///
/// 被拒绝
///
Denied = 403
}
}