DocumentEntity.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package jnpf.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * 知识文档
  9. *
  10. * @author JNPF开发平台组
  11. * @version V3.1.0
  12. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  13. * @date 2019年9月26日 上午9:18
  14. */
  15. @Data
  16. @TableName("ext_document")
  17. public class DocumentEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  18. /**
  19. * 文档父级
  20. */
  21. @TableField("F_PARENT_ID")
  22. private String parentId;
  23. /**
  24. * 文档分类
  25. */
  26. @TableField("F_TYPE")
  27. private Integer type;
  28. /**
  29. * 文件名称
  30. */
  31. @TableField("F_FULL_NAME")
  32. private String fullName;
  33. /**
  34. * 文件路径
  35. */
  36. @TableField("F_FILE_PATH")
  37. private String filePath;
  38. /**
  39. * 文件大小
  40. */
  41. @TableField("F_FILE_SIZE")
  42. private String fileSize;
  43. /**
  44. * 文件后缀
  45. */
  46. @TableField("F_FILE_EXTENSION")
  47. private String fileExtension;
  48. /**
  49. * 阅读数量
  50. */
  51. @TableField("F_READ_COUNT")
  52. private Integer readCount;
  53. /**
  54. * 是否共享
  55. */
  56. @TableField("F_IS_SHARE")
  57. private Integer isShare;
  58. /**
  59. * 共享时间
  60. */
  61. @TableField("F_SHARE_TIME")
  62. private Date shareTime;
  63. /**
  64. * 文档下载地址
  65. */
  66. @TableField("F_UPLOAD_URL")
  67. private String uploaderUrl;
  68. }