12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.fdkankan.fusion.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2025-05-13
- */
- @Getter
- @Setter
- @TableName("t_case_tabulation")
- public class CaseTabulation implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- @TableField("case_id")
- private Integer caseId;
- /**
- * 数据
- */
- @TableField("store")
- private String store;
- @TableField("title")
- private String title;
- /**
- * 视口
- */
- @TableField("viewport")
- private String viewport;
- /**
- * 封面图
- */
- @TableField("cover")
- private String cover;
- /**
- * 纸张
- */
- @TableField("paper_key")
- private String paperKey;
- @TableField("is_auto_gen")
- private Boolean isAutoGen;
- @TableField("tb_status")
- @TableLogic
- private Integer tbStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- @TableField("overview_id")
- private Integer overviewId;
- @TableField(value = "map_url",updateStrategy = FieldStrategy.IGNORED)
- private String mapUrl;
- @TableField("high")
- private Integer high;
- @TableField("width")
- private Integer width;
- /**
- * 封面图
- */
- @TableField("list_cover")
- private String listCover;
- @TableField("sys_user_id")
- private Integer sysUserId;
- @TableField("platform_id")
- private Integer platformId;
- }
|