|
@@ -1,14 +1,17 @@
|
|
|
package com.qmth.teachcloud.mark.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.teachcloud.mark.bean.ArrayResult;
|
|
|
+import com.qmth.teachcloud.mark.bean.BoolResult;
|
|
|
+
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -19,139 +22,144 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
* @since 2023-09-22
|
|
|
*/
|
|
|
@TableName("scan_paper_page")
|
|
|
-@ApiModel(value="ScanPaperPage对象", description="")
|
|
|
+@ApiModel(value = "ScanPaperPage对象", description = "")
|
|
|
public class ScanPaperPage implements Serializable {
|
|
|
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- @TableId(value = "paper_id")
|
|
|
- private Long paperId;
|
|
|
-
|
|
|
- private Integer pageIndex;
|
|
|
-
|
|
|
- private String absent;
|
|
|
-
|
|
|
- private String breach;
|
|
|
-
|
|
|
- private String question;
|
|
|
-
|
|
|
- private String selective;
|
|
|
-
|
|
|
- private String sheetPath;
|
|
|
-
|
|
|
- private String recogData;
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long creatorId;
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long updaterId;
|
|
|
-
|
|
|
- private Long createTime;
|
|
|
-
|
|
|
- private Long updateTime;
|
|
|
-
|
|
|
- public Long getPaperId() {
|
|
|
- return paperId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaperId(Long paperId) {
|
|
|
- this.paperId = paperId;
|
|
|
- }
|
|
|
- public Integer getPageIndex() {
|
|
|
- return pageIndex;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPageIndex(Integer pageIndex) {
|
|
|
- this.pageIndex = pageIndex;
|
|
|
- }
|
|
|
- public String getAbsent() {
|
|
|
- return absent;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAbsent(String absent) {
|
|
|
- this.absent = absent;
|
|
|
- }
|
|
|
- public String getBreach() {
|
|
|
- return breach;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBreach(String breach) {
|
|
|
- this.breach = breach;
|
|
|
- }
|
|
|
- public String getQuestion() {
|
|
|
- return question;
|
|
|
- }
|
|
|
-
|
|
|
- public void setQuestion(String question) {
|
|
|
- this.question = question;
|
|
|
- }
|
|
|
- public String getSelective() {
|
|
|
- return selective;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSelective(String selective) {
|
|
|
- this.selective = selective;
|
|
|
- }
|
|
|
- public String getSheetPath() {
|
|
|
- return sheetPath;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSheetPath(String sheetPath) {
|
|
|
- this.sheetPath = sheetPath;
|
|
|
- }
|
|
|
- public String getRecogData() {
|
|
|
- return recogData;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRecogData(String recogData) {
|
|
|
- this.recogData = recogData;
|
|
|
- }
|
|
|
- public Long getCreatorId() {
|
|
|
- return creatorId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatorId(Long creatorId) {
|
|
|
- this.creatorId = creatorId;
|
|
|
- }
|
|
|
- public Long getUpdaterId() {
|
|
|
- return updaterId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdaterId(Long updaterId) {
|
|
|
- this.updaterId = updaterId;
|
|
|
- }
|
|
|
- public Long getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Long createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
- public Long getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(Long updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "ScanPaperPage{" +
|
|
|
- "paperId=" + paperId +
|
|
|
- ", pageIndex=" + pageIndex +
|
|
|
- ", absent=" + absent +
|
|
|
- ", breach=" + breach +
|
|
|
- ", question=" + question +
|
|
|
- ", selective=" + selective +
|
|
|
- ", sheetPath=" + sheetPath +
|
|
|
- ", recogData=" + recogData +
|
|
|
- ", creatorId=" + creatorId +
|
|
|
- ", updaterId=" + updaterId +
|
|
|
- ", createTime=" + createTime +
|
|
|
- ", updateTime=" + updateTime +
|
|
|
- "}";
|
|
|
- }
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ @TableId(value = "paper_id")
|
|
|
+ private Long paperId;
|
|
|
+
|
|
|
+ private Integer pageIndex;
|
|
|
+
|
|
|
+ @TableField(value = "absent", typeHandler = JacksonTypeHandler.class)
|
|
|
+ private BoolResult absent;
|
|
|
+
|
|
|
+ @TableField(value = "breach", typeHandler = JacksonTypeHandler.class)
|
|
|
+ private BoolResult breach;
|
|
|
+
|
|
|
+ @TableField(value = "question", typeHandler = JacksonTypeHandler.class)
|
|
|
+ private ArrayResult question;
|
|
|
+
|
|
|
+ @TableField(value = "selective", typeHandler = JacksonTypeHandler.class)
|
|
|
+ private ArrayResult selective;
|
|
|
+
|
|
|
+ private String sheetPath;
|
|
|
+
|
|
|
+ private String recogData;
|
|
|
+
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long creatorId;
|
|
|
+
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long updaterId;
|
|
|
+
|
|
|
+ private Long createTime;
|
|
|
+
|
|
|
+ private Long updateTime;
|
|
|
+
|
|
|
+ public Long getPaperId() {
|
|
|
+ return paperId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaperId(Long paperId) {
|
|
|
+ this.paperId = paperId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPageIndex() {
|
|
|
+ return pageIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageIndex(Integer pageIndex) {
|
|
|
+ this.pageIndex = pageIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BoolResult getAbsent() {
|
|
|
+ return absent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAbsent(BoolResult absent) {
|
|
|
+ this.absent = absent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BoolResult getBreach() {
|
|
|
+ return breach;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBreach(BoolResult breach) {
|
|
|
+ this.breach = breach;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ArrayResult getQuestion() {
|
|
|
+ return question;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuestion(ArrayResult question) {
|
|
|
+ this.question = question;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ArrayResult getSelective() {
|
|
|
+ return selective;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSelective(ArrayResult selective) {
|
|
|
+ this.selective = selective;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSheetPath() {
|
|
|
+ return sheetPath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSheetPath(String sheetPath) {
|
|
|
+ this.sheetPath = sheetPath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRecogData() {
|
|
|
+ return recogData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecogData(String recogData) {
|
|
|
+ this.recogData = recogData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreatorId() {
|
|
|
+ return creatorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatorId(Long creatorId) {
|
|
|
+ this.creatorId = creatorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUpdaterId() {
|
|
|
+ return updaterId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdaterId(Long updaterId) {
|
|
|
+ this.updaterId = updaterId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Long createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Long updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ScanPaperPage{" + "paperId=" + paperId + ", pageIndex=" + pageIndex + ", absent=" + absent + ", breach="
|
|
|
+ + breach + ", question=" + question + ", selective=" + selective + ", sheetPath=" + sheetPath
|
|
|
+ + ", recogData=" + recogData + ", creatorId=" + creatorId + ", updaterId=" + updaterId + ", createTime="
|
|
|
+ + createTime + ", updateTime=" + updateTime + "}";
|
|
|
+ }
|
|
|
}
|