|
|
|
@ -338,6 +338,11 @@ public class OcrPicture implements BaseDto, java.io.Serializable {
|
|
|
|
|
@TableField(value = "server_thumbnail_url")
|
|
|
|
|
private String serverThumbnailUrl;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "可疑文件夹 0:不在,1:在")
|
|
|
|
|
@Schema(description = "可疑文件夹 0:不在,1:在")
|
|
|
|
|
@TableField(value = "suspiciousfile")
|
|
|
|
|
private Integer suspiciousfile;
|
|
|
|
|
|
|
|
|
|
//图片分类
|
|
|
|
|
@TableField(exist = false)
|
|
|
|
|
private OcrPictureclass ocrPictureclass;
|
|
|
|
@ -347,10 +352,6 @@ public class OcrPicture implements BaseDto, java.io.Serializable {
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
private SearchQuery searchQueryrolesShowleave;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "提报日期时间戳")
|
|
|
|
|
@TableField(value = "submit_date_timestamp")
|
|
|
|
|
private Long submitDateTimestamp;
|
|
|
|
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
private final Map<String, String> query = Stream.of(
|
|
|
|
@ -419,7 +420,8 @@ public class OcrPicture implements BaseDto, java.io.Serializable {
|
|
|
|
|
new SimpleEntry<>("localpictrueurl", "localpictrueurl"),
|
|
|
|
|
new SimpleEntry<>("imgHash", "imgHash"),
|
|
|
|
|
new SimpleEntry<>("serverThumbnailUrl", "serverThumbnailUrl"),
|
|
|
|
|
new SimpleEntry<>("localThumbnailUrl", "localThumbnailUrl")
|
|
|
|
|
new SimpleEntry<>("localThumbnailUrl", "localThumbnailUrl"),
|
|
|
|
|
new SimpleEntry<>("suspiciousfile", "suspiciousfile")
|
|
|
|
|
)
|
|
|
|
|
.collect(Collectors.toMap(SimpleEntry::getKey, SimpleEntry::getValue));
|
|
|
|
|
|
|
|
|
|