This commit is contained in:
77
2024-05-05 17:49:06 +08:00
parent 7a0183a751
commit 5fc9c8fe13
7 changed files with 232 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package com.ruoyi.xq.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* 我的页面推广图对象 xq_user_banner
*
* @author 77
* @date 2024-05-05
*/
@Data
@TableName("xq_user_banner")
public class UserBanner implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Long id;
/**
* 轮播
*/
private String banner;
/**
* 1-启用 0-禁用
*/
private Integer enableStatus;
/**
* 0-无链接 1-站内链接 2-站外链接 3-图片
*/
private Integer linkType;
/**
* 链接
*/
private String linkUrl;
/**
*
*/
private Integer sort;
private LocalDateTime createTime;
private LocalDateTime updateTime;
}