liurunyu
2023-11-27 c475f9ad3290c2593897736144758b54e2b2f407
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.dy.testClient;
 
public class ServerProperties {
    
    //RTU开始地址
    public static Long rtuAddrStart = 0L ;
    //RTU截止地址
    public static Long rtuAddrEnd = 0L ;
    //服务端IP
    public static String serverIp = "" ;
    //服务端上下文
    public static Integer serverPort = 0 ;
    //发送数据次数
    public static Integer sendTimes = 0 ;
    
    //mwTestServer控制是否启动
    public static boolean startWork = false ;
}