This commit is contained in:
张良(004796)
2023-12-21 17:12:30 +08:00
parent b0e25ab21c
commit fa643e87df
36 changed files with 1102 additions and 3 deletions

View File

@@ -0,0 +1,66 @@
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;
}