13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
package com.ruoyi.fuzhou.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 io.swagger.v3.oas.annotations.media.Schema;
 
import java.io.Serializable;
 
/**
 * <p>
 * 数据接收信息
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-10
 */
@TableName("RECEIVE_INFO")
@Schema(description = "数据接收信息")
public class ReceiveInfo implements Serializable {
 
    @Schema(title = "主键")
    @TableId(value = "ID", type = IdType.ASSIGN_ID)
    private Long id;
 
    @Schema(title = "数据内容")
    @TableField("CONTENT")
    private String content;
 
    @Schema(title = "协议")
    @TableField("PROTOCOL")
    private String protocol;
 
    @Schema(title = "设备名称")
    @TableField("DEVICE_NAME")
    private String deviceName;
 
    @Schema(title = "设备类型")
    @TableField("DEVICT_TYPE")
    private Integer deviceType;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getProtocol() {
        return protocol;
    }
 
    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public Integer getDeviceType() {
        return deviceType;
    }
 
    public void setDeviceType(Integer deviceType) {
        this.deviceType = deviceType;
    }
}