CaseTabulation.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package com.fdkankan.fusion.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * <p>
  9. *
  10. * </p>
  11. *
  12. * @author
  13. * @since 2025-05-13
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_case_tabulation")
  18. public class CaseTabulation implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Integer id;
  22. @TableField("case_id")
  23. private Integer caseId;
  24. /**
  25. * 数据
  26. */
  27. @TableField("store")
  28. private String store;
  29. @TableField("title")
  30. private String title;
  31. /**
  32. * 视口
  33. */
  34. @TableField("viewport")
  35. private String viewport;
  36. /**
  37. * 封面图
  38. */
  39. @TableField("cover")
  40. private String cover;
  41. /**
  42. * 纸张
  43. */
  44. @TableField("paper_key")
  45. private String paperKey;
  46. @TableField("is_auto_gen")
  47. private Boolean isAutoGen;
  48. @TableField("tb_status")
  49. @TableLogic
  50. private Integer tbStatus;
  51. @TableField("create_time")
  52. private Date createTime;
  53. @TableField("update_time")
  54. private Date updateTime;
  55. @TableField("overview_id")
  56. private Integer overviewId;
  57. @TableField(value = "map_url",updateStrategy = FieldStrategy.IGNORED)
  58. private String mapUrl;
  59. @TableField("high")
  60. private Integer high;
  61. @TableField("width")
  62. private Integer width;
  63. /**
  64. * 封面图
  65. */
  66. @TableField("list_cover")
  67. private String listCover;
  68. @TableField("sys_user_id")
  69. private Integer sysUserId;
  70. @TableField("platform_id")
  71. private Integer platformId;
  72. }