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 com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* led广告屏主表
|
*
|
* @TableName pole_lightemit
|
*/
|
@TableName(value = "pole_lightemit")
|
@Data
|
public class PoleLightemitEntity implements Serializable {
|
/**
|
* LED ID
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long lightemitId;
|
|
/**
|
* LED名称
|
*/
|
private String lightemitName;
|
|
/**
|
* led屏控制卡编号
|
*/
|
private String lightemitControlCode;
|
|
/**
|
* 所显示图片地址
|
*/
|
private String url;
|
|
/**
|
* 显示时间
|
*/
|
private Integer playTime;
|
|
/**
|
* 加入时间
|
*/
|
private LocalDateTime addTime;
|
|
/**
|
* 请求body,节目主体的容器
|
*/
|
@JsonIgnore
|
private String requestBody;
|
|
/**
|
* 播放设置 0:使用播放接口; 1:使用xixunplayer播放接口
|
*/
|
private Integer playerSetting;
|
|
/**
|
* 状态 0:禁用 1:正常
|
*/
|
private Integer status;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建者ID
|
*/
|
private Long createUserId;
|
|
/**
|
* 客户id
|
*/
|
private Long clientId;
|
|
|
private Long userId;
|
|
/**
|
* 绑定灯杆ID
|
*/
|
|
@TableField(exist = false)
|
private Long streetlightId;
|
@JsonIgnore
|
@TableField(exist = false)
|
private Long poleId;
|
|
/**
|
*
|
*/
|
private LocalDateTime createTime;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* led屏幕开关
|
*/
|
@TableField(exist = false)
|
private Boolean isOpen;
|
|
/*
|
* 灯杆名称
|
*/
|
@TableField(exist = false)
|
private String streetlightName;
|
|
/*
|
* 灯杆名称
|
*/
|
@JsonIgnore
|
@TableField(exist = false)
|
private String poleName;
|
|
}
|