package com.dsh.other.feignclient.communityWorldCup.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 社区世界杯门店
|
* @author zhibing.pu
|
* @Date 2024/2/18 18:06
|
*/
|
@Data
|
public class WorldCupStore {
|
/**
|
* 主键
|
*/
|
private Integer id;
|
/**
|
* 世界杯id
|
*/
|
private Integer worldCupId;
|
/**
|
* 门店id
|
*/
|
private Integer storeId;
|
/**
|
* 是否开启世界杯按钮(0=否,1=是)
|
*/
|
private Integer isOpen;
|
/**
|
* 世界杯入口背景图
|
*/
|
private String backgroundImage;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
/**
|
* 展示类型 1:横屏 2:竖屏
|
*/
|
|
private Integer displayType;
|
}
|