2021与蓝度共同重构项目,服务端
liuhaonan
2021-12-15 b2b9931f33dcd81cc2d1ef4d6d60873aadc8c585
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
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.time.LocalDateTime;
import lombok.Data;
 
/**
 * LED表
 * @TableName led
 */
@TableName(value ="led")
@Data
public class LED implements Serializable {
    /**
     * 
     */
    @TableId
    private Long id;
 
    /**
     * 
     */
    private Long userId;
 
    /**
     * 种类  0:N   1:S
     */
    private Integer kind;
 
    /**
     * 板卡号
     */
    private String cardNo;
 
    /**
     * 在线状态 0:在线  1:离线
     */
    private Integer state;
 
    /**
     * 所属灯杆
     */
    private Long blongsPole;
 
    /**
     * 播放计划id
     */
    private Long playplanId;
 
    /**
     * IP地址
     */
    private String ip;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 灯杆ID
     */
    private String poleId;
 
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
 
    /**
     * 最近交互时间
     */
    private LocalDateTime updateTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}