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

2 months ago
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;
2 months ago
/**
*
*/
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}