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.
39 lines
673 B
Java
39 lines
673 B
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;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
@TableField(fill = FieldFill.INSERT)
|
||
|
private LocalDateTime createTime;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|