package com.propertyManagement.business.domain; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.propertyManagement.common.core.domain.BaseEntity; import lombok.Data; import lombok.EqualsAndHashCode; /** * 轮播图 对象 wx_slideshow * * @author liushuai * @date 2025-06-09 */ @Data @EqualsAndHashCode(callSuper = true) @TableName("wx_slideshow") public class WxSlideshow extends BaseEntity { private static final long serialVersionUID=1L; /** * 主键 */ @TableId(value = "id") private Long id; /** * 图片地址 */ private String url; /** * 跳转地址 */ private String skipUrl; /** * 类型(1首页轮播图 2个人中心轮播图) */ private Integer type; /** * 是否启用(0否 1是) */ private Integer isEnable; }