package com.dsh.other.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.extension.activerecord.Model; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.io.Serializable; /** *

* *

* * @author administrator * @since 2023-09-19 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName("t_store_other_config_true") public class TStoreOtherConfigTrue extends Model { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 图片 */ @TableField("url") private String backgroundImage; /** * 跳转模块 */ private String name; /** * 跳转页面 */ private String page; /** * 跳转类型 */ private String type; /** * 跳转id */ @TableField("turnId") private String turnId; /** * 排序 */ private Integer sort; /** * 1开启 2关闭 */ private Integer state; private Integer pid; @TableField("pageId") private Integer pageId; @TableField("typeId") private Integer typeId; @Override protected Serializable pkVal() { return this.id; } }