67 lines
1.2 KiB
Java
67 lines
1.2 KiB
Java
package com.ruoyi.cai.domain;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import lombok.Data;
|
||
|
||
import java.io.Serializable;
|
||
import java.time.LocalDateTime;
|
||
|
||
/**
|
||
* 轮播对象 cai_banner
|
||
*
|
||
* @author 77
|
||
* @date 2023-12-21
|
||
*/
|
||
@Data
|
||
@TableName("cai_banner")
|
||
public class CaiBanner implements Serializable {
|
||
|
||
private static final long serialVersionUID=1L;
|
||
|
||
/**
|
||
*
|
||
*/
|
||
@TableId(value = "id")
|
||
private Integer id;
|
||
/**
|
||
* 0 图片 1 视频
|
||
*/
|
||
private Integer type;
|
||
/**
|
||
* 类别 1 首页轮播
|
||
*/
|
||
private Integer cid;
|
||
/**
|
||
* 标题
|
||
*/
|
||
private String title;
|
||
/**
|
||
* 图片地址
|
||
*/
|
||
private String image;
|
||
/**
|
||
* 链接类型 1 网页 2 app内页 3 JSON数据
|
||
*/
|
||
private Integer linkType;
|
||
/**
|
||
* 链接地址
|
||
*/
|
||
private String linkUrl;
|
||
/**
|
||
* 排序
|
||
*/
|
||
private Integer sort;
|
||
/**
|
||
* 状态 0 可用 1 不可用
|
||
*/
|
||
private Integer status;
|
||
/**
|
||
* 图片地址,跳转H5内页详情
|
||
*/
|
||
private String imageDetails;
|
||
|
||
private LocalDateTime createTime;
|
||
|
||
}
|