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.
 
 
 
 

32 lines
526 B

namespace learun.util
{
/// <summary>
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.11
/// 描 述:接口响应码
/// </summary>
public enum ResponseCode
{
/// <summary>
/// 成功
/// </summary>
success = 200,
/// <summary>
/// 失败
/// </summary>
fail = 400,
/// <summary>
/// 异常
/// </summary>
exception = 500,
/// <summary>
/// 没有登录信息
/// </summary>
nologin = 410
}
}