| | |
| | | package com.ruoyi.common.core.domain; |
| | | |
| | | import cn.hutool.core.lang.Validator; |
| | | import cn.hutool.http.HttpStatus; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | |
| | | import java.util.HashMap; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 操作消息提醒 |
| | | * |
| | | * @author ruoyi |
| | | * @author Lion Li |
| | | */ |
| | | public class AjaxResult<T> extends HashMap<String, Object> |
| | | { |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Accessors(chain = true) |
| | | @ApiModel("请求响应对象") |
| | | public class AjaxResult<T> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 状态码 */ |
| | | public static final String CODE_TAG = "code"; |
| | | |
| | | /** 返回内容 */ |
| | | public static final String MSG_TAG = "msg"; |
| | | |
| | | /** 数据对象 */ |
| | | public static final String DATA_TAG = "data"; |
| | | |
| | | public Integer getCode(){ |
| | | return (Integer) super.get(CODE_TAG); |
| | | } |
| | | |
| | | public String getMsg(){ |
| | | return (String) super.get(MSG_TAG); |
| | | } |
| | | public T getData(){ |
| | | return (T) super.get(DATA_TAG); |
| | | } |
| | | /** |
| | | * 状态码 |
| | | */ |
| | | @ApiModelProperty("消息状态码") |
| | | private int code; |
| | | |
| | | /** |
| | | * 初始化一个新创建的 AjaxResult 对象,使其表示一个空消息。 |
| | | * 返回内容 |
| | | */ |
| | | public AjaxResult() |
| | | { |
| | | } |
| | | @ApiModelProperty("消息内容") |
| | | private String msg; |
| | | |
| | | /** |
| | | * 数据对象 |
| | | */ |
| | | @ApiModelProperty("数据对象") |
| | | private T data; |
| | | |
| | | /** |
| | | * 初始化一个新创建的 AjaxResult 对象 |
| | |
| | | * @param code 状态码 |
| | | * @param msg 返回内容 |
| | | */ |
| | | public AjaxResult(int code, String msg) |
| | | { |
| | | super.put(CODE_TAG, code); |
| | | super.put(MSG_TAG, msg); |
| | | } |
| | | |
| | | /** |
| | | * 初始化一个新创建的 AjaxResult 对象 |
| | | * |
| | | * @param code 状态码 |
| | | * @param msg 返回内容 |
| | | * @param data 数据对象 |
| | | */ |
| | | public AjaxResult(int code, String msg, T data) |
| | | { |
| | | super.put(CODE_TAG, code); |
| | | super.put(MSG_TAG, msg); |
| | | if (Validator.isNotNull(data)) |
| | | { |
| | | super.put(DATA_TAG, data); |
| | | } |
| | | public AjaxResult(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | /** |
| | |
| | | * |
| | | * @return 成功消息 |
| | | */ |
| | | public static AjaxResult<Void> success() |
| | | { |
| | | public static AjaxResult<Void> success() { |
| | | return AjaxResult.success("操作成功"); |
| | | } |
| | | |
| | |
| | | * |
| | | * @return 成功消息 |
| | | */ |
| | | public static <T> AjaxResult<T> success(T data) |
| | | { |
| | | public static <T> AjaxResult<T> success(T data) { |
| | | return AjaxResult.success("操作成功", data); |
| | | } |
| | | |
| | |
| | | * @param msg 返回内容 |
| | | * @return 成功消息 |
| | | */ |
| | | public static AjaxResult<Void> success(String msg) |
| | | { |
| | | public static AjaxResult<Void> success(String msg) { |
| | | return AjaxResult.success(msg, null); |
| | | } |
| | | |
| | |
| | | * @param data 数据对象 |
| | | * @return 成功消息 |
| | | */ |
| | | public static <T> AjaxResult<T> success(String msg, T data) |
| | | { |
| | | return new AjaxResult(HttpStatus.HTTP_OK, msg, data); |
| | | public static <T> AjaxResult<T> success(String msg, T data) { |
| | | return new AjaxResult<>(HttpStatus.HTTP_OK, msg, data); |
| | | } |
| | | |
| | | /** |
| | |
| | | * |
| | | * @return |
| | | */ |
| | | public static AjaxResult<Void> error() |
| | | { |
| | | public static AjaxResult<Void> error() { |
| | | return AjaxResult.error("操作失败"); |
| | | } |
| | | |
| | |
| | | * @param msg 返回内容 |
| | | * @return 警告消息 |
| | | */ |
| | | public static AjaxResult<Void> error(String msg) |
| | | { |
| | | public static AjaxResult<Void> error(String msg) { |
| | | return AjaxResult.error(msg, null); |
| | | } |
| | | |
| | |
| | | * @param data 数据对象 |
| | | * @return 警告消息 |
| | | */ |
| | | public static <T> AjaxResult<T> error(String msg, T data) |
| | | { |
| | | return new AjaxResult(HttpStatus.HTTP_INTERNAL_ERROR, msg, data); |
| | | public static <T> AjaxResult<T> error(String msg, T data) { |
| | | return new AjaxResult<>(HttpStatus.HTTP_INTERNAL_ERROR, msg, data); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param msg 返回内容 |
| | | * @return 警告消息 |
| | | */ |
| | | public static AjaxResult<Void> error(int code, String msg) |
| | | { |
| | | return new AjaxResult(code, msg, null); |
| | | public static AjaxResult<Void> error(int code, String msg) { |
| | | return new AjaxResult<>(code, msg, null); |
| | | } |
| | | |
| | | } |