Files
cai-server/ruoyi-cai/src/main/java/com/ruoyi/cai/domain/CaiBanner.java
张良(004796) fa643e87df init
2023-12-21 17:12:30 +08:00

67 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}