You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
589 B
C#
27 lines
589 B
C#
using System.ComponentModel;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// ResponseEnum
|
|
/// </summary>
|
|
public enum ResponseEnum
|
|
{
|
|
/// <summary>
|
|
/// 无权限
|
|
/// </summary>
|
|
[Description("无权限")]
|
|
NoPermissions = 401,
|
|
/// <summary>
|
|
/// 找不到指定资源
|
|
/// </summary>
|
|
[Description("找不到指定资源")]
|
|
NoFound = 404,
|
|
/// <summary>
|
|
/// 找不到指定资源
|
|
/// </summary>
|
|
[Description("服务器错误")]
|
|
ServerError = 500
|
|
}
|
|
}
|