123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.fdkankan.fusion.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- 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("viewport")
- private String viewport;
- /**
- * 封面图
- */
- @TableField("cover")
- private String cover;
- /**
- * 纸张
- */
- @TableField("paper_key")
- private String paperKey;
- @TableField("tb_status")
- @TableLogic
- private Integer tbStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- }
|