You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
2 years ago
|
namespace Znyc.CloudCar.Auth.Policys
|
||
|
{
|
||
|
public class ApiResponse
|
||
|
{
|
||
|
public int Status { get; set; } = 404;
|
||
|
public object Value { get; set; } = "No Found";
|
||
|
|
||
|
public ApiResponse(StatusCode apiCode, object msg = null)
|
||
|
{
|
||
|
switch (apiCode)
|
||
|
{
|
||
|
case StatusCode.CODE401:
|
||
|
{
|
||
|
Status = 401;
|
||
|
Value = "很抱歉,您无权访问该接口,请确保已经登录!";
|
||
|
}
|
||
|
break;
|
||
|
case StatusCode.CODE403:
|
||
|
{
|
||
|
Status = 403;
|
||
|
Value = "很抱歉,您的访问权限等级不够,联系管理员!";
|
||
|
}
|
||
|
break;
|
||
|
case StatusCode.CODE500:
|
||
|
{
|
||
|
Status = 500;
|
||
|
Value = msg;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public enum StatusCode
|
||
|
{
|
||
|
CODE401,
|
||
|
CODE403,
|
||
|
CODE404,
|
||
|
CODE500
|
||
|
}
|
||
|
}
|