package com.xcong.excoin.modules.platform.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
@Data
|
@TableName("platform_banner")
|
public class PlatformBannerEntity{
|
|
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 标题
|
*/
|
private String name;
|
/**
|
* 图片链接
|
*/
|
private String image_url;
|
/**
|
* 是否可跳转 1-是2-否
|
*/
|
private String is_jump;
|
/**
|
* 跳转外部或内部 1-内2-外
|
*/
|
private int is_inside;
|
/**
|
* 跳转链接
|
*/
|
private String jump_url;
|
/**
|
* 显示端口 1-pc2-手机
|
*/
|
private int show_port;
|
/**
|
* 联系方式
|
*/
|
private String sort;
|
|
private String is_top;
|
}
|