From 576c52d8d8e6fb1e738380cc5fc101a6a2b0b3a8 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期六, 04 九月 2021 16:00:57 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-bean/src/main/java/com/java110/vo/ResultVo.java | 34 ++++++++++++++++++++++++++++++++--
1 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/vo/ResultVo.java b/java110-bean/src/main/java/com/java110/vo/ResultVo.java
old mode 100644
new mode 100755
index bf12ff5..663c66d
--- a/java110-bean/src/main/java/com/java110/vo/ResultVo.java
+++ b/java110-bean/src/main/java/com/java110/vo/ResultVo.java
@@ -28,6 +28,7 @@
public static final int CODE_UNAUTHORIZED = 401; //璁よ瘉澶辫触
public static final int CODE_WECHAT_UNAUTHORIZED = 1401; //璁よ瘉澶辫触
+ public static final int CODE_BUSINESS_VERIFICATION = 5010; //涓氬姟鏍¢獙鏈�氳繃
public static final int ORDER_ERROR = 500; //璁㈠崟璋冨害寮傚父
@@ -50,7 +51,7 @@
private int records;
// 鎬昏褰曟暟
- private int total;
+ private long total;
//鐘舵��
private int code;
@@ -63,6 +64,9 @@
//鐢ㄦ潵瀛樻斁澶ц銆佸皬璁¢噾棰�
private Object sumTotal;
+
+ //鎵�闇�鏁版嵁
+ private Object rep;
public ResultVo() {
}
@@ -86,6 +90,14 @@
this.data = data;
}
+ public ResultVo(int records, long total, Object data) {
+ this.code = CODE_OK;
+ this.msg = MSG_OK;
+ this.records = records;
+ this.total = total;
+ this.data = data;
+ }
+
public ResultVo(int records, int total, Object data, Object sumTotal) {
this.code = CODE_OK;
this.msg = MSG_OK;
@@ -93,6 +105,16 @@
this.total = total;
this.data = data;
this.sumTotal = sumTotal;
+ }
+
+ public ResultVo(int records, int total, Object data, Object sumTotal, Object rep) {
+ this.code = CODE_OK;
+ this.msg = MSG_OK;
+ this.records = records;
+ this.total = total;
+ this.data = data;
+ this.sumTotal = sumTotal;
+ this.rep = rep;
}
public ResultVo(int code, String msg, Object data) {
@@ -133,7 +155,7 @@
this.records = records;
}
- public int getTotal() {
+ public long getTotal() {
return total;
}
@@ -173,6 +195,14 @@
this.sumTotal = sumTotal;
}
+ public Object getRep() {
+ return rep;
+ }
+
+ public void setRep(Object rep) {
+ this.rep = rep;
+ }
+
@Override
public String toString() {
return JSONObject.toJSONString(this, SerializerFeature.DisableCircularReferenceDetect, SerializerFeature.WriteDateUseDateFormat);
--
Gitblit v1.8.0