Forráskód Böngészése

返回类型及分页设置

limingming 1 éve
szülő
commit
4230e8f985

+ 42 - 2
ruoyi-common/src/main/java/com/ruoyi/common/constant/Constants.java

@@ -37,12 +37,22 @@ public class Constants
     /**
      * 通用成功标识
      */
-    public static final String SUCCESS = "0";
+    public static final String SUCCESS = "200";
 
     /**
      * 通用失败标识
      */
-    public static final String FAIL = "1";
+    public static final String FAIL = "444";
+
+    /**
+     * 登录成功状态
+     */
+    public static final String LOGIN_SUCCESS_STATUS = "0";
+
+    /**
+     * 登录失败状态
+     */
+    public static final String LOGIN_FAIL_STATUS = "1";
 
     /**
      * 登录成功
@@ -63,6 +73,26 @@ public class Constants
      * 登录失败
      */
     public static final String LOGIN_FAIL = "Error";
+
+    /**
+     * 当前记录起始索引
+     */
+    public static final String PAGE_NUM = "pageNum";
+
+    /**
+     * 每页显示记录数
+     */
+    public static final String PAGE_SIZE = "pageSize";
+
+    /**
+     * 排序列
+     */
+    public static final String ORDER_BY_COLUMN = "orderByColumn";
+
+    /**
+     * 排序的方向 "desc" 或者 "asc".
+     */
+    public static final String IS_ASC = "isAsc";
  
     /**
      * 验证码有效期(分钟)
@@ -139,4 +169,14 @@ public class Constants
      */
     public static final String[] JOB_ERROR_STR = { "java.net.URL", "javax.naming.InitialContext", "org.yaml.snakeyaml",
             "org.springframework", "org.apache", "com.ruoyi.common.utils.file", "com.ruoyi.common.config" };
+
+
+    public static final boolean R_COM_SUCCESS = true;
+    public static final boolean R_COM_DEFAULT_ERROR = true;
+    public static final String R_COM_DEFAULT_CODE = "-1";
+    public static final String R_COM_DEFAULT_STATUS = "1";
+    public static final String R_COM_SUCCESS_STATUS = "000000";
+    public static final String R_COM_SUCCESS_MSG = "OK";
+    public static final String R_COM_SUCCESS_MESSAGE = "成功";
+    public static final boolean R_COM_SUCCESS_ERROR = false;
 }

+ 1 - 1
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java

@@ -13,7 +13,7 @@ import com.fasterxml.jackson.annotation.JsonInclude;
  * 
  * @author ruoyi
  */
-public class BaseEntity implements Serializable
+public class BaseEntity extends BasePageInfo implements Serializable
 {
     private static final long serialVersionUID = 1L;
 

+ 23 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseOrderInfo.java

@@ -0,0 +1,23 @@
+package com.ruoyi.common.core.domain;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+
+@Data
+public class BaseOrderInfo implements Serializable {
+
+    /**
+     * 需要进行排序的字段
+     */
+    @ApiModelProperty("需要排序的字段")
+    private String column;
+
+    /**
+     * 是否正序排列,默认 true
+     */
+    @ApiModelProperty("是否正序排列,默认 true")
+    private boolean asc = true;
+
+}

+ 40 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BasePageInfo.java

@@ -0,0 +1,40 @@
+package com.ruoyi.common.core.domain;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by TerryJ
+ */
+@Data
+public class BasePageInfo implements Serializable {
+
+    /**
+     * 每页显示条数,默认 10
+     */
+    @ApiModelProperty(value = "每页显示条数,默认 10")
+    private long size = 10;
+
+    /**
+     * 当前页
+     */
+    @ApiModelProperty(value = "排序字段信息")
+    private long current = 1;
+
+    /**
+     * 排序字段信息
+     */
+    @ApiModelProperty(value = "排序字段信息")
+    private List<BaseOrderInfo> orders = new ArrayList<>();
+
+    /**
+     * 是否进行 count 查询
+     */
+    @ApiModelProperty(value = "是否进行 count 查询 默认true")
+    private boolean isSearchCount = true;
+
+}

+ 77 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/CodeMsg.java

@@ -0,0 +1,77 @@
+package com.ruoyi.common.core.domain;
+
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+
+/**
+ * 编码 描述 枚举
+ */
+@Getter
+@AllArgsConstructor
+public enum CodeMsg implements ErrorEnum{
+
+    CODE_MSG_100(100, "操作成功"),
+
+    //系统级别 1xx
+    CODE_MSG_101(101, "参数错误"),
+
+    CODE_MSG_102(102, "签名校验失败"),
+    CODE_MSG_103(103, "登录信息过期,请重新登录"),
+    CODE_MSG_104(104, "禁止重复提交,请稍后再试"),
+    CODE_MSG_105(105, "用户不存在"),
+
+    //用户token 11x
+    CODE_MSG_110(110, "参数不能为空"),
+    CODE_MSG_111(111, "时间戳过期"),
+    CODE_MSG_112(112, "重复请求"),
+    CODE_MSG_113(113, "验签失败"),
+    CODE_MSG_114(114, "解析用户手机号失败"),
+
+    CODE_MSG_199(199, "未知异常"),
+
+
+    //业务级别 2xx
+    CODE_MSG_201(201, "账号或密码不正确"),
+    CODE_MSG_202(202,"验证码错误"),
+    CODE_MSG_221(221, "TOKEN已过期"),
+
+    //业务级别 3xx
+    CODE_MSG_301(301, "员工不存在"),
+    CODE_MSG_302(302, "您办理的号码不是黑龙江号码!"),
+    CODE_MSG_303(303, "您的号码与向您推荐业务的朋友非同一城市,办理失败。!"),
+    CODE_MSG_304(304, "没有找到对应的产品!"),
+
+    //业务级别 4xx
+    StatusMsg_403(403, "xxxx"),
+    StatusMsg_404(404, "数据不存在"),
+    StatusMsg_405(405, "服务器错误%s"),
+    StatusMsg_406(406, "%s 是非法的文件格式"),
+
+    //宽带业务BOSS异常
+    StatusMsg_KD_BOSS(501, "%s"),
+    StatusMsg_KD_502(502, "未获取到您的当前主资费"),
+    StatusMsg_KD_503(503, "您目前的手机账户余额为:%s元。您至少需交%s元话费方可参与本活动。"),
+    StatusMsg_KD_504(504, "您暂无可办理的家庭网组。"),
+    StatusMsg_KD_505(505, "未获取到您要添加的号码的详细信息!"),
+    StatusMsg_KD_506(506, "账户状态为:%s。无法添加"),
+    StatusMsg_KD_507(507, "家庭业务校验失败!"),
+    StatusMsg_KD_508(508, "营销案办理失败:%s"),
+    StatusMsg_KD_509(509, "选择要办理的业务错误,请刷新重试!"),
+
+
+    ;
+
+    private int code;
+    private String msg;
+
+    // 构造方法
+    public static String getMsg(int code) {
+        for (CodeMsg codeMsg : CodeMsg.values()) {
+            if (codeMsg.code == code) {
+                return codeMsg.msg;
+            }
+        }
+        return null;
+    }
+
+}

+ 9 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/ErrorEnum.java

@@ -0,0 +1,9 @@
+package com.ruoyi.common.core.domain;
+
+public interface ErrorEnum {
+
+    int getCode();
+
+    String getMsg();
+
+}

+ 45 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/PageInfo.java

@@ -0,0 +1,45 @@
+package com.ruoyi.common.core.domain;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.io.Serializable;
+import java.util.Collections;
+import java.util.List;
+
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class PageInfo<T> implements Serializable {
+
+    private static final long serialVersionUID = 8545992873220298798L;
+
+    /**
+     * 总数
+     */
+    @ApiModelProperty(value = "总数")
+    private long total = 0;
+
+    /**
+     * 每页显示条数
+     */
+    @ApiModelProperty(value = "每页显示条数")
+    private long size = 10;
+
+    /**
+     * 当前页
+     */
+    @ApiModelProperty(value = "当前页")
+    private long current = 1;
+
+    /**
+     * 查询数据列表
+     */
+    @ApiModelProperty(value = "数据列表")
+    private List<T> records = Collections.emptyList();
+    public PageInfo(List<T> records){
+        this.records = records;
+    }
+}

+ 75 - 53
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/R.java

@@ -1,71 +1,72 @@
 package com.ruoyi.common.core.domain;
 
+import com.ruoyi.common.constant.Constants;
+
 import java.io.Serializable;
-import com.ruoyi.common.constant.HttpStatus;
 
 /**
  * 响应信息主体
  *
- * @author ruoyi
+ * @author agile
  */
-public class R<T> implements Serializable
-{
+public class R<T> implements Serializable {
+    /**
+     * 成功
+     */
+    public static final int SUCCESS = Integer.parseInt(Constants.SUCCESS);
+    /**
+     * 失败
+     */
+    public static final int FAIL = Integer.parseInt(Constants.FAIL);
     private static final long serialVersionUID = 1L;
-
-    /** 成功 */
-    public static final int SUCCESS = HttpStatus.SUCCESS;
-
-    /** 失败 */
-    public static final int FAIL = HttpStatus.ERROR;
-
+    private static final String SUCCESS_MSG = "success";
     private int code;
 
     private String msg;
 
     private T data;
 
-    public static <T> R<T> ok()
-    {
-        return restResult(null, SUCCESS, "操作成功");
+    public static <T> R<T> ok() {
+        return restResult(null, SUCCESS, SUCCESS_MSG);
     }
 
-    public static <T> R<T> ok(T data)
-    {
-        return restResult(data, SUCCESS, "操作成功");
+    public static <T> R<T> create(T data) {
+        return restResult(data, SUCCESS, SUCCESS_MSG);
     }
 
-    public static <T> R<T> ok(T data, String msg)
-    {
+    public static <T> R<T> ok(T data) {
+        return restResult(data, SUCCESS, SUCCESS_MSG);
+    }
+
+    public static <T> R<T> ok(T data, String msg) {
         return restResult(data, SUCCESS, msg);
     }
 
-    public static <T> R<T> fail()
-    {
-        return restResult(null, FAIL, "操作失败");
+    public static <T> R<T> fail() {
+        return restResult(null, FAIL, null);
     }
 
-    public static <T> R<T> fail(String msg)
-    {
+    public static <T> R<T> fail(String msg) {
         return restResult(null, FAIL, msg);
     }
 
-    public static <T> R<T> fail(T data)
-    {
-        return restResult(data, FAIL, "操作失败");
+    public static <T> R<T> fail(T data) {
+        return restResult(data, FAIL, null);
     }
 
-    public static <T> R<T> fail(T data, String msg)
-    {
+    public static <T> R<T> fail(T data, String msg) {
         return restResult(data, FAIL, msg);
     }
 
-    public static <T> R<T> fail(int code, String msg)
-    {
+    public static <T> R<T> fail(int code, String msg) {
         return restResult(null, code, msg);
     }
 
-    private static <T> R<T> restResult(T data, int code, String msg)
-    {
+    public static <T> R<T> fail(ErrorEnum errorEnum) {
+        return restResult(null, errorEnum.getCode(), errorEnum.getMsg());
+    }
+
+    private static <T> R<T> restResult(T data, int code, String msg) {
         R<T> apiResult = new R<>();
         apiResult.setCode(code);
         apiResult.setData(data);
@@ -73,43 +74,64 @@ public class R<T> implements Serializable
         return apiResult;
     }
 
-    public int getCode()
-    {
+    public static <T> Boolean isError(R<T> ret) {
+        return !isSuccess(ret);
+    }
+
+    public static <T> Boolean isSuccess(R<T> ret) {
+        return R.SUCCESS == ret.getCode();
+    }
+
+    public boolean isOk() {
+        return this.getCode() == 200;
+    }
+
+    public boolean isNotOk() {
+        return this.getCode() != 200;
+    }
+
+    public void setCodeMsg(CodeMsg codeMsg) {
+        this.code = codeMsg.getCode();
+        this.msg = codeMsg.getMsg();
+    }
+
+    public void setCodeMsg(CodeMsg codeMsg,String... args) {
+        this.setCodeMsg(codeMsg);
+        if (null != args) {
+            this.msg = String.format(codeMsg.getMsg(),args);
+        }
+    }
+
+    public int getCode() {
         return code;
     }
 
-    public void setCode(int code)
-    {
+    public void setCode(int code) {
         this.code = code;
     }
 
-    public String getMsg()
-    {
+    public String getMsg() {
         return msg;
     }
 
-    public void setMsg(String msg)
-    {
+    public void setMsg(String msg) {
         this.msg = msg;
     }
 
-    public T getData()
-    {
+    public T getData() {
         return data;
     }
 
-    public void setData(T data)
-    {
+    public void setData(T data) {
         this.data = data;
     }
 
-    public static <T> Boolean isError(R<T> ret)
-    {
-        return !isSuccess(ret);
-    }
-
-    public static <T> Boolean isSuccess(R<T> ret)
-    {
-        return R.SUCCESS == ret.getCode();
+    @Override
+    public String toString() {
+        return "{" +
+                "code=" + code +
+                ", msg='" + msg + '\'' +
+                ", data=" + data +
+                '}';
     }
 }