|
@@ -13,7 +13,7 @@ public class GetQrCodeReq extends BaseRequest {
|
|
|
private Long examRecordDataId;
|
|
|
|
|
|
private Long examStudentId;
|
|
|
- private String questionId;
|
|
|
+ private Integer order;
|
|
|
//获取token的key
|
|
|
private String tokenKey;
|
|
|
|
|
@@ -33,12 +33,12 @@ public class GetQrCodeReq extends BaseRequest {
|
|
|
this.examStudentId = examStudentId;
|
|
|
}
|
|
|
|
|
|
- public String getQuestionId() {
|
|
|
- return questionId;
|
|
|
+ public Integer getOrder() {
|
|
|
+ return order;
|
|
|
}
|
|
|
|
|
|
- public void setQuestionId(String questionId) {
|
|
|
- this.questionId = questionId;
|
|
|
+ public void setOrder(Integer order) {
|
|
|
+ this.order = order;
|
|
|
}
|
|
|
|
|
|
public String getTokenKey() {
|