|
@@ -12,6 +12,9 @@ public class SendScanQrCodeMessageReq extends SendMessageBaseReq{
|
|
|
|
|
|
//考试记录id
|
|
|
private Long examRecordDataId;
|
|
|
+
|
|
|
+ //客户端id
|
|
|
+ private transient String clientId;
|
|
|
|
|
|
public String getEventType() {
|
|
|
return eventType;
|
|
@@ -25,4 +28,12 @@ public class SendScanQrCodeMessageReq extends SendMessageBaseReq{
|
|
|
public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
this.examRecordDataId = examRecordDataId;
|
|
|
}
|
|
|
+
|
|
|
+ public String getClientId() {
|
|
|
+ return clientId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClientId(String clientId) {
|
|
|
+ this.clientId = clientId;
|
|
|
+ }
|
|
|
}
|