|
@@ -18,7 +18,7 @@ public class RespJsonBean implements Serializable {
|
|
|
|
|
|
private Integer returnCode; // 业务结果
|
|
|
|
|
|
- private Object returnMsg; //返回结果
|
|
|
+ private Object returnMsg; //返回结果
|
|
|
|
|
|
private Map<String, Object> message; // 返回的结果信息
|
|
|
|
|
@@ -68,15 +68,16 @@ public class RespJsonBean implements Serializable {
|
|
|
this.message = returnMsg;
|
|
|
}
|
|
|
|
|
|
- public Object getReturnMsg() {
|
|
|
- return returnMsg;
|
|
|
- }
|
|
|
|
|
|
- public void setReturnMsg(Object returnMsg) {
|
|
|
- this.returnMsg = returnMsg;
|
|
|
- }
|
|
|
+ public Object getReturnMsg() {
|
|
|
+ return returnMsg;
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
+ public void setReturnMsg(Object returnMsg) {
|
|
|
+ this.returnMsg = returnMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 添加返回结果 returnMsg='value'结果
|
|
|
* @param key
|
|
|
* @param value
|