|
@@ -10,6 +10,8 @@ public class GetQuestionListResp extends BaseResponse{
|
|
private static final long serialVersionUID = 5831902383553781609L;
|
|
private static final long serialVersionUID = 5831902383553781609L;
|
|
|
|
|
|
private Map<String, DefaultQuestion> map;
|
|
private Map<String, DefaultQuestion> map;
|
|
|
|
+
|
|
|
|
+ private String json;
|
|
|
|
|
|
public Map<String, DefaultQuestion> getMap() {
|
|
public Map<String, DefaultQuestion> getMap() {
|
|
return map;
|
|
return map;
|
|
@@ -19,4 +21,11 @@ public class GetQuestionListResp extends BaseResponse{
|
|
this.map = map;
|
|
this.map = map;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getJson() {
|
|
|
|
+ return json;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setJson(String json) {
|
|
|
|
+ this.json = json;
|
|
|
|
+ }
|
|
}
|
|
}
|