ReportEntity.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package jnpf.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import io.swagger.v3.oas.annotations.media.Schema;
  5. import jnpf.base.entity.SuperExtendEntity;
  6. import lombok.Data;
  7. /**
  8. * @author :JNPF开发平台组
  9. * @version: V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date :2024/5/11 下午4:35
  12. */
  13. @Data
  14. @TableName("report_template")
  15. public class ReportEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  16. /**
  17. * 主版本
  18. */
  19. @TableField("f_version_id")
  20. private String versionId;
  21. /**
  22. * 名称
  23. */
  24. @TableField("F_FULL_NAME")
  25. private String fullName;
  26. /**
  27. * 编码
  28. */
  29. @TableField("F_EN_CODE")
  30. private String enCode;
  31. /**
  32. * 分类
  33. */
  34. @TableField("F_CATEGORY")
  35. private String category;
  36. /**
  37. * 导出
  38. */
  39. @TableField("F_ALLOW_EXPORT")
  40. private Integer allowExport;
  41. /**
  42. * 打印
  43. */
  44. @TableField("F_ALLOW_PRINT")
  45. private Integer allowPrint;
  46. /**
  47. * 水印印
  48. */
  49. @TableField("F_ALLOW_WATERMARK")
  50. private Integer allowWatermark;
  51. /**
  52. * 水印配置
  53. */
  54. @TableField("F_WATERMARK_CONFIG")
  55. private String watermarkConfig;
  56. /**
  57. * 发布时勾选平台类型
  58. */
  59. @TableField("F_PLATFORM_RELEASE")
  60. private String platformRelease;
  61. @TableField("F_SYSTEM_ID")
  62. private String systemId;
  63. }