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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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.math.BigInteger;
 
/**
 * <p>
 * 雷达数据接收管理
 * </p>
 *
 * @author sunjiawei
 * @since 2025-05-21
 */
 
@TableName("RECEIVE_SLM_INFO")
@Schema(description = "雷达数据接收管理")
public class ReceiveSlmInfo {
 
     @Schema(title ="主键")
    @TableId(value = "ID",  type = IdType.ASSIGN_ID)
    private BigInteger id;
 
     @Schema(title ="设备名称")
    @TableField("DEVICE_NAME")
    private String deviceName;
 
     @Schema(title ="地址码")
    @TableField("DEVICE_ADDRESS")
    private byte deviceAddress;
 
     @Schema(title ="网关ip")
    @TableField("IP")
    private String ip;
 
     @Schema(title ="网关端口")
    @TableField("PORT")
    private Integer port;
 
     @Schema(title ="功能码")
    @TableField("FUNCTION_CODE")
    private byte functionCode;
 
     @Schema(title ="寄存器地址")
    @TableField("REGISTER_ADRESS")
    private Integer registerAdress;
 
     @Schema(title ="寄存器数量")
    @TableField("REGISTER_COUNT")
    private Integer registerCount;
 
     @Schema(title ="校验码")
    @TableField("CRC")
    private Integer crc;
 
     @Schema(title ="返回数据类型")
    @TableField("DATA_TYPE")
    private Integer dataType;
 
     @Schema(title ="数据含义")
    @TableField("PARAM")
    private String param;
 
     @Schema(title ="含义编码")
    @TableField("PARAM_CODE")
    private String paramCode;
 
     @Schema(title ="单位")
    @TableField("UNIT")
    private String unit;
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public byte getDeviceAddress() {
        return deviceAddress;
    }
 
    public void setDeviceAddress(byte deviceAddress) {
        this.deviceAddress = deviceAddress;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public Integer getPort() {
        return port;
    }
 
    public void setPort(Integer port) {
        this.port = port;
    }
 
    public byte getFunctionCode() {
        return functionCode;
    }
 
    public void setFunctionCode(byte functionCode) {
        this.functionCode = functionCode;
    }
 
    public Integer getRegisterAdress() {
        return registerAdress;
    }
 
    public void setRegisterAdress(Integer registerAdress) {
        this.registerAdress = registerAdress;
    }
 
    public Integer getRegisterCount() {
        return registerCount;
    }
 
    public void setRegisterCount(Integer registerCount) {
        this.registerCount = registerCount;
    }
 
    public Integer getCrc() {
        return crc;
    }
 
    public void setCrc(Integer crc) {
        this.crc = crc;
    }
 
    public Integer getDataType() {
        return dataType;
    }
 
    public void setDataType(Integer dataType) {
        this.dataType = dataType;
    }
 
    public String getParam() {
        return param;
    }
 
    public void setParam(String param) {
        this.param = param;
    }
 
    public String getParamCode() {
        return paramCode;
    }
 
    public void setParamCode(String paramCode) {
        this.paramCode = paramCode;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
}