|
@@ -2,6 +2,8 @@ package com.qmth.themis.business.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.qmth.themis.business.enums.*;
|
|
import com.qmth.themis.business.enums.*;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -20,22 +22,27 @@ import java.util.Date;
|
|
public class TOeExamRecord implements Serializable {
|
|
public class TOeExamRecord implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "主键")
|
|
@ApiModelProperty(value = "主键")
|
|
@TableId(value = "id")
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "考试批次ID")
|
|
@ApiModelProperty(value = "考试批次ID")
|
|
@TableField(value = "exam_id")
|
|
@TableField(value = "exam_id")
|
|
private Long examId;
|
|
private Long examId;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "考试场次ID")
|
|
@ApiModelProperty(value = "考试场次ID")
|
|
@TableField(value = "exam_activity_id")
|
|
@TableField(value = "exam_activity_id")
|
|
private Long examActivityId;
|
|
private Long examActivityId;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "考生ID")
|
|
@ApiModelProperty(value = "考生ID")
|
|
@TableField(value = "exam_student_id")
|
|
@TableField(value = "exam_student_id")
|
|
private Long examStudentId;
|
|
private Long examStudentId;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "实际使用的试卷ID")
|
|
@ApiModelProperty(value = "实际使用的试卷ID")
|
|
@TableField(value = "paper_id")
|
|
@TableField(value = "paper_id")
|
|
private Long paperId;
|
|
private Long paperId;
|
|
@@ -132,6 +139,7 @@ public class TOeExamRecord implements Serializable {
|
|
@TableField(value = "serial_number")
|
|
@TableField(value = "serial_number")
|
|
private Integer serialNumber;
|
|
private Integer serialNumber;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "最近断点记录ID")
|
|
@ApiModelProperty(value = "最近断点记录ID")
|
|
@TableField(value = "last_break_id")
|
|
@TableField(value = "last_break_id")
|
|
private Long lastBreakId;
|
|
private Long lastBreakId;
|
|
@@ -140,6 +148,7 @@ public class TOeExamRecord implements Serializable {
|
|
@TableField(value = "entry_authentication_result")
|
|
@TableField(value = "entry_authentication_result")
|
|
private VerifyExceptionEnum entryAuthenticationResult;
|
|
private VerifyExceptionEnum entryAuthenticationResult;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
@ApiModelProperty(value = "开考身份验证记录ID")
|
|
@ApiModelProperty(value = "开考身份验证记录ID")
|
|
@TableField(value = "entry_authentication_id")
|
|
@TableField(value = "entry_authentication_id")
|
|
private Long entryAuthenticationId;
|
|
private Long entryAuthenticationId;
|