Commit f93da906 authored by 刘基明's avatar 刘基明

图片审核添加待审核类型

parent abba8913
......@@ -56,12 +56,9 @@ public class FileRecordEntity implements Serializable {
private String extInfo;
@ApiModelProperty(value = "审核状态 0:初试化 1:通过 2:不通过")
@ApiModelProperty(value = "审核状态 0:初试化 1:通过 2:不通过 3:需要人工再审")
private Integer checkStatus;
@ApiModelProperty(value = "阿里云校验任务id(用于同步查询结果)")
private String checkTaskId;
@ApiModelProperty(value = "审核结果记录")
private String checkResultLog;
......@@ -156,14 +153,6 @@ public class FileRecordEntity implements Serializable {
this.checkStatus = checkStatus;
}
public String getCheckTaskId() {
return checkTaskId;
}
public void setCheckTaskId(String checkTaskId) {
this.checkTaskId = checkTaskId;
}
public String getCheckResultLog() {
return checkResultLog;
}
......@@ -186,7 +175,6 @@ public class FileRecordEntity implements Serializable {
", deleteTag=" + deleteTag +
", extInfo=" + extInfo +
", checkStatus=" + checkStatus +
", checkTaskId=" + checkTaskId +
", checkResultLog=" + checkResultLog +
"}";
}
......
......@@ -15,7 +15,6 @@
<result column="delete_tag" property="deleteTag" />
<result column="ext_info" property="extInfo" />
<result column="check_status" property="checkStatus" />
<result column="check_task_id" property="checkTaskId" />
<result column="check_result_log" property="checkResultLog" />
</resultMap>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment