houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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.iailab.module.data.channel.modbus.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * ModBus设备表
 *
 * @author PanZhibao
 * @Description
 * @createTime 2023年04月24日 10:31:00
 */
@Data
@TableName("t_channel_modbus_device")
public class ChannelModBusDeviceEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @Schema(description = "主键")
    @TableId(value = "id",type = IdType.INPUT)
    private String id;
 
    /**
     * 设备名称
     */
    private String name;
 
    /**
     * IP地址
     */
    private String address;
 
    /**
     * 端口
     */
    private Integer port;
 
    /**
     * 不活动超时(ms)
     */
    private Integer connectInactivityTimeout;
 
    /**
     * 重连超时(ms)
     */
    private Integer reconnectInterval;
 
    /**
     * 重试次数
     */
    private Integer attemptsBeforeTimeout;
 
    /**
     * 重试间隔(ms)
     */
    private Integer waitToRetryMilliseconds;
 
    /**
     * 读超时(ms)
     */
    private Integer readTimeout;
 
    /**
     * 写超时(ms)
     */
    private Integer writeTimeout;
 
    /**
     * 是否使用优化
     */
    private Boolean useOptimizedBlockRead;
 
    /**
     * 系统内部用,默认空字符串
     */
    private String projectReference;
 
}