package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/11/7 16:37
|
*/
|
@Data
|
@TableName("t_banner")
|
public class Banner {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 位置(1=首页,2=详情)
|
*/
|
@TableField("position")
|
private Integer position;
|
/**
|
* 图片路径
|
*/
|
@TableField("img_url")
|
private String imgUrl;
|
/**
|
* 富文本内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 排序
|
*/
|
@TableField("sort")
|
private Integer sort;
|
/**
|
* 添加人id
|
*/
|
@TableField("insert_user_id")
|
private Integer insertUserId;
|
/**
|
* 添加时间
|
*/
|
@TableField("insert_time")
|
private Date insertTime;
|
}
|