|
@@ -1,13 +1,13 @@
|
|
package com.qmth.teachcloud.mark.entity;
|
|
package com.qmth.teachcloud.mark.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
-import java.time.LocalDateTime;
|
|
|
|
-import java.io.Serializable;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
* 评卷任务表
|
|
* 评卷任务表
|
|
@@ -24,10 +24,10 @@ public class MarkTask implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "主键")
|
|
@ApiModelProperty(value = "主键")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
- private Integer id;
|
|
|
|
|
|
+ private Long id;
|
|
|
|
|
|
@ApiModelProperty(value = "考试ID")
|
|
@ApiModelProperty(value = "考试ID")
|
|
- private Integer examId;
|
|
|
|
|
|
+ private Long examId;
|
|
|
|
|
|
@ApiModelProperty(value = "试卷编号")
|
|
@ApiModelProperty(value = "试卷编号")
|
|
private String paperNumber;
|
|
private String paperNumber;
|
|
@@ -36,7 +36,7 @@ public class MarkTask implements Serializable {
|
|
private Integer groupNumber;
|
|
private Integer groupNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "考生ID")
|
|
@ApiModelProperty(value = "考生ID")
|
|
- private Integer studentId;
|
|
|
|
|
|
+ private Long studentId;
|
|
|
|
|
|
@ApiModelProperty(value = "学号")
|
|
@ApiModelProperty(value = "学号")
|
|
private String studentCode;
|
|
private String studentCode;
|
|
@@ -51,10 +51,10 @@ public class MarkTask implements Serializable {
|
|
private String status;
|
|
private String status;
|
|
|
|
|
|
@ApiModelProperty(value = "评卷员ID")
|
|
@ApiModelProperty(value = "评卷员ID")
|
|
- private Integer userId;
|
|
|
|
|
|
+ private Long userId;
|
|
|
|
|
|
@ApiModelProperty(value = "评卷时间")
|
|
@ApiModelProperty(value = "评卷时间")
|
|
- private LocalDateTime markerTime;
|
|
|
|
|
|
+ private Long markerTime;
|
|
|
|
|
|
@ApiModelProperty(value = "评卷总分")
|
|
@ApiModelProperty(value = "评卷总分")
|
|
private Double markerScore;
|
|
private Double markerScore;
|
|
@@ -66,10 +66,10 @@ public class MarkTask implements Serializable {
|
|
private Integer markerSpent;
|
|
private Integer markerSpent;
|
|
|
|
|
|
@ApiModelProperty(value = "科组长ID")
|
|
@ApiModelProperty(value = "科组长ID")
|
|
- private Integer headerId;
|
|
|
|
|
|
+ private Long headerId;
|
|
|
|
|
|
@ApiModelProperty(value = "科组长评卷时间")
|
|
@ApiModelProperty(value = "科组长评卷时间")
|
|
- private LocalDateTime headerTime;
|
|
|
|
|
|
+ private Long headerTime;
|
|
|
|
|
|
@ApiModelProperty(value = "科组长总分")
|
|
@ApiModelProperty(value = "科组长总分")
|
|
private Double headerScore;
|
|
private Double headerScore;
|
|
@@ -77,18 +77,18 @@ public class MarkTask implements Serializable {
|
|
@ApiModelProperty(value = "科组长给分明细")
|
|
@ApiModelProperty(value = "科组长给分明细")
|
|
private String headerScoreList;
|
|
private String headerScoreList;
|
|
|
|
|
|
- public Integer getId() {
|
|
|
|
|
|
+ public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setId(Integer id) {
|
|
|
|
|
|
+ public void setId(Long id) {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
- public Integer getExamId() {
|
|
|
|
|
|
+ public Long getExamId() {
|
|
return examId;
|
|
return examId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setExamId(Integer examId) {
|
|
|
|
|
|
+ public void setExamId(Long examId) {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
}
|
|
}
|
|
public String getPaperNumber() {
|
|
public String getPaperNumber() {
|
|
@@ -105,11 +105,11 @@ public class MarkTask implements Serializable {
|
|
public void setGroupNumber(Integer groupNumber) {
|
|
public void setGroupNumber(Integer groupNumber) {
|
|
this.groupNumber = groupNumber;
|
|
this.groupNumber = groupNumber;
|
|
}
|
|
}
|
|
- public Integer getStudentId() {
|
|
|
|
|
|
+ public Long getStudentId() {
|
|
return studentId;
|
|
return studentId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStudentId(Integer studentId) {
|
|
|
|
|
|
+ public void setStudentId(Long studentId) {
|
|
this.studentId = studentId;
|
|
this.studentId = studentId;
|
|
}
|
|
}
|
|
public String getStudentCode() {
|
|
public String getStudentCode() {
|
|
@@ -140,18 +140,18 @@ public class MarkTask implements Serializable {
|
|
public void setStatus(String status) {
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
- public Integer getUserId() {
|
|
|
|
|
|
+ public Long getUserId() {
|
|
return userId;
|
|
return userId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setUserId(Integer userId) {
|
|
|
|
|
|
+ public void setUserId(Long userId) {
|
|
this.userId = userId;
|
|
this.userId = userId;
|
|
}
|
|
}
|
|
- public LocalDateTime getMarkerTime() {
|
|
|
|
|
|
+ public Long getMarkerTime() {
|
|
return markerTime;
|
|
return markerTime;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMarkerTime(LocalDateTime markerTime) {
|
|
|
|
|
|
+ public void setMarkerTime(Long markerTime) {
|
|
this.markerTime = markerTime;
|
|
this.markerTime = markerTime;
|
|
}
|
|
}
|
|
public Double getMarkerScore() {
|
|
public Double getMarkerScore() {
|
|
@@ -175,18 +175,18 @@ public class MarkTask implements Serializable {
|
|
public void setMarkerSpent(Integer markerSpent) {
|
|
public void setMarkerSpent(Integer markerSpent) {
|
|
this.markerSpent = markerSpent;
|
|
this.markerSpent = markerSpent;
|
|
}
|
|
}
|
|
- public Integer getHeaderId() {
|
|
|
|
|
|
+ public Long getHeaderId() {
|
|
return headerId;
|
|
return headerId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setHeaderId(Integer headerId) {
|
|
|
|
|
|
+ public void setHeaderId(Long headerId) {
|
|
this.headerId = headerId;
|
|
this.headerId = headerId;
|
|
}
|
|
}
|
|
- public LocalDateTime getHeaderTime() {
|
|
|
|
|
|
+ public Long getHeaderTime() {
|
|
return headerTime;
|
|
return headerTime;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setHeaderTime(LocalDateTime headerTime) {
|
|
|
|
|
|
+ public void setHeaderTime(Long headerTime) {
|
|
this.headerTime = headerTime;
|
|
this.headerTime = headerTime;
|
|
}
|
|
}
|
|
public Double getHeaderScore() {
|
|
public Double getHeaderScore() {
|