From 3706d2e1db45e64a1375b92300901de39e35e464 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期二, 25 一月 2022 21:50:54 +0800 Subject: [PATCH] update 去除链式调用注解 不符合规范导致很多奇葩问题 例如: copy为空问题 --- ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java | 198 ++++++++++++++++++++++++------------------------- 1 files changed, 98 insertions(+), 100 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java index 7c388c5..333af88 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/AjaxResult.java @@ -6,7 +6,6 @@ import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; -import lombok.experimental.Accessors; /** * 鎿嶄綔娑堟伅鎻愰啋 @@ -16,119 +15,118 @@ @Data @NoArgsConstructor @AllArgsConstructor -@Accessors(chain = true) @ApiModel("璇锋眰鍝嶅簲瀵硅薄") public class AjaxResult<T> { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; - /** - * 鐘舵�佺爜 - */ - @ApiModelProperty("娑堟伅鐘舵�佺爜") - private int code; + /** + * 鐘舵�佺爜 + */ + @ApiModelProperty("娑堟伅鐘舵�佺爜") + private int code; - /** - * 杩斿洖鍐呭 - */ - @ApiModelProperty("娑堟伅鍐呭") - private String msg; + /** + * 杩斿洖鍐呭 + */ + @ApiModelProperty("娑堟伅鍐呭") + private String msg; - /** - * 鏁版嵁瀵硅薄 - */ - @ApiModelProperty("鏁版嵁瀵硅薄") - private T data; + /** + * 鏁版嵁瀵硅薄 + */ + @ApiModelProperty("鏁版嵁瀵硅薄") + private T data; - /** - * 鍒濆鍖栦竴涓柊鍒涘缓鐨� AjaxResult 瀵硅薄 - * - * @param code 鐘舵�佺爜 - * @param msg 杩斿洖鍐呭 - */ - public AjaxResult(int code, String msg) { - this.code = code; - this.msg = msg; - } + /** + * 鍒濆鍖栦竴涓柊鍒涘缓鐨� AjaxResult 瀵硅薄 + * + * @param code 鐘舵�佺爜 + * @param msg 杩斿洖鍐呭 + */ + public AjaxResult(int code, String msg) { + this.code = code; + this.msg = msg; + } - /** - * 杩斿洖鎴愬姛娑堟伅 - * - * @return 鎴愬姛娑堟伅 - */ - public static AjaxResult<Void> success() { - return AjaxResult.success("鎿嶄綔鎴愬姛"); - } + /** + * 杩斿洖鎴愬姛娑堟伅 + * + * @return 鎴愬姛娑堟伅 + */ + public static AjaxResult<Void> success() { + return AjaxResult.success("鎿嶄綔鎴愬姛"); + } - /** - * 杩斿洖鎴愬姛鏁版嵁 - * - * @return 鎴愬姛娑堟伅 - */ - public static <T> AjaxResult<T> success(T data) { - return AjaxResult.success("鎿嶄綔鎴愬姛", data); - } + /** + * 杩斿洖鎴愬姛鏁版嵁 + * + * @return 鎴愬姛娑堟伅 + */ + public static <T> AjaxResult<T> success(T data) { + return AjaxResult.success("鎿嶄綔鎴愬姛", data); + } - /** - * 杩斿洖鎴愬姛娑堟伅 - * - * @param msg 杩斿洖鍐呭 - * @return 鎴愬姛娑堟伅 - */ - public static AjaxResult<Void> success(String msg) { - return AjaxResult.success(msg, null); - } + /** + * 杩斿洖鎴愬姛娑堟伅 + * + * @param msg 杩斿洖鍐呭 + * @return 鎴愬姛娑堟伅 + */ + public static AjaxResult<Void> success(String msg) { + return AjaxResult.success(msg, null); + } - /** - * 杩斿洖鎴愬姛娑堟伅 - * - * @param msg 杩斿洖鍐呭 - * @param data 鏁版嵁瀵硅薄 - * @return 鎴愬姛娑堟伅 - */ - public static <T> AjaxResult<T> success(String msg, T data) { - return new AjaxResult<>(HttpStatus.HTTP_OK, msg, data); - } + /** + * 杩斿洖鎴愬姛娑堟伅 + * + * @param msg 杩斿洖鍐呭 + * @param data 鏁版嵁瀵硅薄 + * @return 鎴愬姛娑堟伅 + */ + public static <T> AjaxResult<T> success(String msg, T data) { + return new AjaxResult<>(HttpStatus.HTTP_OK, msg, data); + } - /** - * 杩斿洖閿欒娑堟伅 - * - * @return - */ - public static AjaxResult<Void> error() { - return AjaxResult.error("鎿嶄綔澶辫触"); - } + /** + * 杩斿洖閿欒娑堟伅 + * + * @return + */ + public static AjaxResult<Void> error() { + return AjaxResult.error("鎿嶄綔澶辫触"); + } - /** - * 杩斿洖閿欒娑堟伅 - * - * @param msg 杩斿洖鍐呭 - * @return 璀﹀憡娑堟伅 - */ - public static AjaxResult<Void> error(String msg) { - return AjaxResult.error(msg, null); - } + /** + * 杩斿洖閿欒娑堟伅 + * + * @param msg 杩斿洖鍐呭 + * @return 璀﹀憡娑堟伅 + */ + public static AjaxResult<Void> error(String msg) { + return AjaxResult.error(msg, null); + } - /** - * 杩斿洖閿欒娑堟伅 - * - * @param msg 杩斿洖鍐呭 - * @param data 鏁版嵁瀵硅薄 - * @return 璀﹀憡娑堟伅 - */ - public static <T> AjaxResult<T> error(String msg, T data) { - return new AjaxResult<>(HttpStatus.HTTP_INTERNAL_ERROR, msg, data); - } + /** + * 杩斿洖閿欒娑堟伅 + * + * @param msg 杩斿洖鍐呭 + * @param data 鏁版嵁瀵硅薄 + * @return 璀﹀憡娑堟伅 + */ + public static <T> AjaxResult<T> error(String msg, T data) { + return new AjaxResult<>(HttpStatus.HTTP_INTERNAL_ERROR, msg, data); + } - /** - * 杩斿洖閿欒娑堟伅 - * - * @param code 鐘舵�佺爜 - * @param msg 杩斿洖鍐呭 - * @return 璀﹀憡娑堟伅 - */ - public static AjaxResult<Void> error(int code, String msg) { - return new AjaxResult<>(code, msg, null); - } + /** + * 杩斿洖閿欒娑堟伅 + * + * @param code 鐘舵�佺爜 + * @param msg 杩斿洖鍐呭 + * @return 璀﹀憡娑堟伅 + */ + public static AjaxResult<Void> error(int code, String msg) { + return new AjaxResult<>(code, msg, null); + } } -- Gitblit v1.9.3