package com.sandu.ximon.dao.domain;
|
|
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 java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
import java.util.Map;
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
|
/**
|
* 新诺瓦节目表
|
* @TableName new_nova_program
|
*/
|
@TableName(value ="new_nova_program")
|
@Data
|
public class NewNovaProgram implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 节目id
|
*/
|
private Integer pid;
|
|
/**
|
* 节目名称
|
*/
|
private String name;
|
|
/**
|
* 是否插播 0否 1是
|
*/
|
private Integer insertPlay;
|
|
/**
|
* 是否立即播放 0否 1是
|
*/
|
private Integer startPlayAfterTransferred;
|
|
/**
|
* 节目内容
|
*/
|
@TableField(exist = false)
|
private List<Map> pageInfo;
|
|
/**
|
* 节目内容
|
*/
|
@JsonIgnore
|
private String pageInfoJsonStr;
|
|
/**
|
* 节目文件
|
*/
|
@TableField(exist = false)
|
private List<String> files;
|
|
/**
|
* 节目宽
|
*/
|
private Integer width;
|
|
/**
|
* 节目高
|
*/
|
private Integer height;
|
|
/**
|
* 节目缩略图
|
*/
|
private String screenShot;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|