package jnpf.entity;
|
|
import jnpf.base.entity.SuperExtendEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 知识文档
|
*
|
* @author JNPF开发平台组
|
* @version V3.1.0
|
* @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
|
* @date 2019年9月26日 上午9:18
|
*/
|
@Data
|
@TableName("ext_document")
|
public class DocumentEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
|
|
/**
|
* 文档父级
|
*/
|
@TableField("F_PARENT_ID")
|
private String parentId;
|
|
/**
|
* 文档分类
|
*/
|
@TableField("F_TYPE")
|
private Integer type;
|
|
/**
|
* 文件名称
|
*/
|
@TableField("F_FULL_NAME")
|
private String fullName;
|
|
/**
|
* 文件路径
|
*/
|
@TableField("F_FILE_PATH")
|
private String filePath;
|
|
/**
|
* 文件大小
|
*/
|
@TableField("F_FILE_SIZE")
|
private String fileSize;
|
|
/**
|
* 文件后缀
|
*/
|
@TableField("F_FILE_EXTENSION")
|
private String fileExtension;
|
|
/**
|
* 阅读数量
|
*/
|
@TableField("F_READ_COUNT")
|
private Integer readCount;
|
|
/**
|
* 是否共享
|
*/
|
@TableField("F_IS_SHARE")
|
private Integer isShare;
|
|
/**
|
* 共享时间
|
*/
|
@TableField("F_SHARE_TIME")
|
private Date shareTime;
|
|
/**
|
* 文档下载地址
|
*/
|
@TableField("F_UPLOAD_URL")
|
private String uploaderUrl;
|
}
|