using System.ComponentModel; namespace Admin.Core.Model { /// /// ResponseEnum /// public enum ResponseEnum { /// /// 无权限 /// [Description("无权限")] NoPermissions = 401, /// /// 找不到指定资源 /// [Description("找不到指定资源")] NoFound = 404, /// /// 找不到指定资源 /// [Description("服务器错误")] ServerError = 500 } }