|
@@ -9,24 +9,24 @@ public class SendMessageReq extends BaseRequest{
|
|
|
*/
|
|
|
private static final long serialVersionUID = 3147167204808636817L;
|
|
|
|
|
|
- private Long id;
|
|
|
+ private Long examRecordDataId;
|
|
|
|
|
|
- private String json;
|
|
|
+ private String returnMsgJson;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
}
|
|
|
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
}
|
|
|
|
|
|
- public String getJson() {
|
|
|
- return json;
|
|
|
+ public String getReturnMsgJson() {
|
|
|
+ return returnMsgJson;
|
|
|
}
|
|
|
|
|
|
- public void setJson(String json) {
|
|
|
- this.json = json;
|
|
|
+ public void setReturnMsgJson(String returnMsgJson) {
|
|
|
+ this.returnMsgJson = returnMsgJson;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|