2021与蓝度共同重构项目,服务端
Van333
2022-12-29 727a69f859060093e685582fa10e5de82dcc138a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
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
     */
    @JsonIgnore
    private Long createUserId;
 
    /**
     * 客户id
     */
    private Long clientId;
 
 
    private Long userId;
 
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    /**
     * 以下参数不存在数据库表
     */
 
    /**
     * 绑定灯杆ID
     */
 
    @TableField(exist = false)
    private Long streetlightId;
 
    /**
     * led屏幕开关
     */
    @TableField(exist = false)
    private String isOpen;
 
    @TableField(exist = false)
    private boolean isOnLine;
 
    /**
     * 灯杆名称
     */
    @TableField(exist = false)
    private String streetlightName;
 
}