| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package jnpf.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import jnpf.base.entity.SuperExtendEntity;
- 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;
- }
|