| | |
| | | package com.sandu.ximon.dao.domain; |
| | | |
| | | import cn.hutool.core.date.DateTime; |
| | | 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广告屏主表 |
| | | * |
| | | * @author chenshun |
| | | * @email sunlightcs@gmail.com |
| | | * @date 2019-04-20 13:34:54 |
| | | * |
| | | * @TableName pole_lightemit |
| | | */ |
| | | @TableName(value = "pole_lightemit") |
| | | @Data |
| | | @TableName("pole_lightemit") |
| | | public class PoleLightemitEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * LED ID |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long lightemitId; |
| | | |
| | | /** |
| | | * LED ID |
| | | */ |
| | | @TableId |
| | | private Long lightemitId; |
| | | /** |
| | | * LED名称 |
| | | */ |
| | | private String lightemitName; |
| | | /** |
| | | * LED控制卡编号 |
| | | */ |
| | | private String lightemitControlCode; |
| | | /** |
| | | * 所显示图片地址 |
| | | */ |
| | | private String url; |
| | | /** |
| | | * 显示时间 |
| | | */ |
| | | private Integer playTime; |
| | | /** |
| | | * 加入时间(存储单灯数据更新时间) |
| | | */ |
| | | private DateTime addTime; |
| | | /* |
| | | 请求数据 |
| | | */ |
| | | private String requestBody; |
| | | /** |
| | | * 播放设置 0:使用播放接口; 1:使用xixunplayer播放接口 |
| | | */ |
| | | private Integer playerSetting; |
| | | /** |
| | | * 状态 0:禁用 1:正常 |
| | | */ |
| | | private Integer status; |
| | | /** |
| | | * 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 String remark; |
| | | /** |
| | | * 创建者ID |
| | | */ |
| | | private Long createUserId; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private DateTime createTime; |
| | | /** |
| | | * 绑定灯杆ID |
| | | */ |
| | | @TableField(exist = false) |
| | | private Long streetlightId; |
| | | /** |
| | | * 灯杆名称 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String streetlightName; |
| | | private Integer status; |
| | | |
| | | /** |
| | | * led屏幕开关 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Boolean isOpen; |
| | | /** |
| | | * 备注 |
| | | */ |
| | | 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; |
| | | |
| | | } |