You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.6 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.supervision.pdfqaserver.domain;
import com.baomidou.mybatisplus.annotation.*;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
/**
* pdf信息
* @TableName pdf_info
*/
@TableName(value ="pdf_info")
@Data
public class PdfInfo implements Serializable {
/**
*
*/
private Integer id;
/**
* pdf路径
*/
private String path;
/**
* 文件名
*/
private String filename;
/**
* 处理状态 0:未分析 1正在分析 2分析成功 3分析失败 4开始数据抽取 5抽取成功 6抽取失败
*/
private int processStatus;
/**
* 开始分析时间
*/
private LocalDateTime analysisStartTime;
/**
* 分析结束时间
*/
private LocalDateTime analysisEndTime;
/**
* 开始抽取时间
*/
private LocalDateTime extractionStartTime;
/**
* 结束抽取时间
*/
private LocalDateTime extractionEndTime;
/**
* 训练状态 0:开始训练 1训练成功 2训练失败
*/
private Integer trainStatus;
/**
* 开始训练时间
*/
private LocalDateTime trainStartTime;
/**
* 结束训练时间
*/
private LocalDateTime trainEndTime;
/**
* 领域分类id
*/
private String domainCategoryId;
/**
* 文档内容类型 0:研报 1对话
*/
private String contentType;
/**
* 创建时间
*/
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}