Commit fbf99d92 by WeiCong

1.更换bd底层新包

2.兼容version
parent 1f39b884
......@@ -10,6 +10,7 @@ public class Result {
private Map<String, Object> codetable;
private Object data;
private String verison;
private static final String EMPTY="";
public String getVerison() {
return verison;
......@@ -19,6 +20,10 @@ public class Result {
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) {
this.retcod = retcod;
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