package com.dsh.course.feignClient.activity.model;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.dsh.course.entity.BaseBean;
|
import lombok.Data;
|
|
/**
|
* 广告
|
*/
|
@Data
|
@TableName("t_advertisement")
|
public class Advertisement extends BaseBean {
|
/**
|
* 广告名称
|
*/
|
@TableField("name")
|
private String name;
|
/**
|
* 图片路径
|
*/
|
@TableField("imgUrl")
|
private String imgUrl;
|
/**
|
* 广告类型(1:弹窗,2:首页底部)
|
*/
|
@TableField("type")
|
private Integer type;
|
/**
|
* 是否跳转(1:是,2:否)
|
*/
|
@TableField("isJump")
|
private Integer isJump;
|
/**
|
* 跳转类型(1:外部,2:内部)
|
*/
|
@TableField("jumpType")
|
private Integer jumpType;
|
/**
|
* 跳转地址
|
*/
|
@TableField("jumpUrl")
|
private String jumpUrl;
|
/**
|
* 文本内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 状态(1=已上线,2=已下线)
|
* @return
|
*/
|
@TableField("state")
|
private Integer state;
|
/**
|
* 所属省id
|
* @return
|
*/
|
@TableField("provinceId")
|
private Integer provinceId;
|
}
|