kongdeqiang
2024-09-26 1d42efe4cbd6b1028a28ff7f3ef2b3d721051c2f
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
package com.boying.entity.led;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.persistence.Column;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName LedBean.java
 * @Description TODO
 * @createTime 2023年03月01日 14:35:00
 */
@Data
public class LedBean {
    private int id = 1;
    private String ledId = "led";
    private String name = "123";
    private String ipAddress = "led";
    private int port = 1;
    private int isDefault =1;
    private int type =1;
    private String password = "led";
    @ApiModelProperty(value = "状态")
    private Integer status = 1;
 
    @ApiModelProperty(value = "下发指令时间")
    private String timeStamp = "led";
 
    @ApiModelProperty(value = "第一行颜色")
    private Integer color1;
 
    @ApiModelProperty(value = "第一行内容")
    private String content1;
 
    @ApiModelProperty(value = "LED1显示模式:0静态显示,1向左移动,2向右移动,3向上移动,4向下移动,5向左展开,6向右展开")
    private Integer disMode1;
 
    @ApiModelProperty(value = "第一行状态")
    private Integer status1;
 
    @ApiModelProperty(value = "第二行颜色")
    private Integer color2;
 
    @ApiModelProperty(value = "第二行内容")
    private String content2;
 
    @ApiModelProperty(value = "LED1显示模式:0静态显示,1向左移动,2向右移动,3向上移动,4向下移动,5向左展开,6向右展开")
    private Integer disMode2;
 
    @ApiModelProperty(value = "第二行状态")
    private Integer status2;
 
    @ApiModelProperty(value = "第三行颜色")
    private Integer color3;
 
    @ApiModelProperty(value = "第三行内容")
    private String content3;
 
    @ApiModelProperty(value = "LED1显示模式:0静态显示,1向左移动,2向右移动,3向上移动,4向下移动,5向左展开,6向右展开")
    private Integer disMode3;
 
    @ApiModelProperty(value = "第三行状态")
    private Integer status3;
 
    @ApiModelProperty(value = "第四行颜色")
    private Integer color4;
 
    @ApiModelProperty(value = "第四行内容")
    private String content4;
 
    @ApiModelProperty(value = "LED1显示模式:0静态显示,1向左移动,2向右移动,3向上移动,4向下移动,5向左展开,6向右展开")
    private Integer disMode4;
 
    @ApiModelProperty(value = "第四行状态")
    private Integer status4;
 
    @ApiModelProperty(value = "语音播报内容")
    private String voiceContent;
 
    @ApiModelProperty(value = "编号")
    private Integer number;
 
}