Commit fbf99d92 by WeiCong

1.更换bd底层新包

2.兼容version
parent 1f39b884
...@@ -10,6 +10,7 @@ public class Result { ...@@ -10,6 +10,7 @@ public class Result {
private Map<String, Object> codetable; private Map<String, Object> codetable;
private Object data; private Object data;
private String verison; private String verison;
private static final String EMPTY="";
public String getVerison() { public String getVerison() {
return verison; return verison;
...@@ -19,6 +20,10 @@ public class Result { ...@@ -19,6 +20,10 @@ public class Result {
this.verison = verison; this.verison = verison;
} }
public Result(String retcod, String retmsg, Object data) {
this(retcod,retmsg,data,EMPTY);
}
public Result(String retcod, String retmsg, Object data,String verison) { public Result(String retcod, String retmsg, Object data,String verison) {
this.retcod = retcod; this.retcod = retcod;
this.retmsg = retmsg; this.retmsg = retmsg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment