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; /** *
* *
* * @author * @since 2024-07-03 */ @Getter @Setter @TableName("t_case_settings_resource") public class CaseSettingsResource implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; @TableField("case_id") private Integer caseId; /** * 名称 */ @TableField("name") private String name; /** * 资源链接 */ @TableField("resource") private String resource; /** */ @TableField("back_type") private String backType; @TableField("tb_status") @TableLogic private Integer tbStatus; @TableField("create_time") private Date createTime; @TableField("update_time") private Date updateTime; @TableField("scale") private Double scale; }