2024-11-28 13:36:05 +08:00
|
|
|
|
using Infrastructure.Constant;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Infrastructure.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ApiResult : Dictionary<string, object>
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly string CODE_TAG = "code";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回内容
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly string MSG_TAG = "msg";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数据对象
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly string DATA_TAG = "data";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 初始化一个新创建的APIResult对象,使其表示一个空消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public ApiResult()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 初始化一个新创建的 ApiResult 对象
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="code"></param>
|
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
|
public ApiResult(int code, string msg)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(CODE_TAG, code);
|
|
|
|
|
|
Add(MSG_TAG, msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 初始化一个新创建的 ApiResult 对象
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="code"></param>
|
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
|
/// <param name="data"></param>
|
|
|
|
|
|
public ApiResult(int code, string msg, object data)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(CODE_TAG, code);
|
|
|
|
|
|
Add(MSG_TAG, msg);
|
|
|
|
|
|
if (data != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(DATA_TAG, data);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-12-04 10:35:39 +08:00
|
|
|
|
public ApiResult(int code, object data)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(CODE_TAG, code);
|
|
|
|
|
|
|
|
|
|
|
|
if (data != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(DATA_TAG, data);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-11-28 13:36:05 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回成功消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// < returns > 成功消息 </ returns >
|
|
|
|
|
|
public static ApiResult Success() { return new ApiResult(HttpStatus.SUCCESS, "success"); }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回成功消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="data"></param>
|
|
|
|
|
|
/// <returns> 成功消息 </returns >
|
|
|
|
|
|
public static ApiResult Success(object data) { return new ApiResult(HttpStatus.SUCCESS, "success", data); }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回成功消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="msg">返回内容</param>
|
|
|
|
|
|
/// <returns>成功消息</returns>
|
|
|
|
|
|
public static ApiResult Success(string msg) { return new ApiResult(HttpStatus.SUCCESS, msg, null); }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回成功消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="msg">返回内容</param>
|
|
|
|
|
|
/// <param name="data">数据对象</param>
|
|
|
|
|
|
/// <returns>成功消息</returns>
|
|
|
|
|
|
public static ApiResult Success(string msg, object data) { return new ApiResult(HttpStatus.SUCCESS, msg, data); }
|
|
|
|
|
|
|
|
|
|
|
|
public static ApiResult Error(ResultCode code, string msg = "")
|
|
|
|
|
|
{
|
|
|
|
|
|
return Error((int)code, msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回失败消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="code"></param>
|
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public static ApiResult Error(int code, string msg) { return new ApiResult(code, msg); }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回失败消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public static ApiResult Error(string msg) { return new ApiResult((int)ResultCode.CUSTOM_ERROR, msg); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否为成功消息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public bool IsSuccess()
|
|
|
|
|
|
{
|
|
|
|
|
|
return HttpStatus.SUCCESS == (int)this[CODE_TAG];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 方便链式调用
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public ApiResult Put(string key, object value)
|
|
|
|
|
|
{
|
|
|
|
|
|
Add(key, value);
|
|
|
|
|
|
return this;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|