|
@@ -0,0 +1,100 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.student.face.api.bean;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
|
+
|
|
|
+public class ExamCaptureQueueBean implements JsonSerializable {
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 2994965466631802174L;
|
|
|
+
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ec_oe_exam_record_data ID
|
|
|
+ */
|
|
|
+ private Long examRecordDataId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 底照URL
|
|
|
+ */
|
|
|
+ private String basePhotoUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件URL
|
|
|
+ */
|
|
|
+ private String fileUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件名称
|
|
|
+ */
|
|
|
+ private String fileName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 错误信息
|
|
|
+ */
|
|
|
+ private String errorMsg;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBasePhotoUrl() {
|
|
|
+ return basePhotoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBasePhotoUrl(String basePhotoUrl) {
|
|
|
+ this.basePhotoUrl = basePhotoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFileUrl() {
|
|
|
+ return fileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileUrl(String fileUrl) {
|
|
|
+ this.fileUrl = fileUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFileName() {
|
|
|
+ return fileName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileName(String fileName) {
|
|
|
+ this.fileName = fileName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getErrorMsg() {
|
|
|
+ return errorMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setErrorMsg(String errorMsg) {
|
|
|
+ this.errorMsg = errorMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|