1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.dy.testServer;
 
public class ServerProperties {
    
    //模拟客户的rtuAddr起始号
    public static Long rtuAddrStart = 0L ;
    //模拟客户的rtuAddr截止号
    public static Long rtuAddrEnd = 0L ;
    //每个mwTest分配的rtuAddr数
    public static Integer rtuAddrPerMwTest = 0 ;
    //服务端URL
    public static String tcpServerIp = "" ;
    //服务端上下文
    public static Integer tcpServerPort = 60000 ;
    //发送数据次数
    public static Integer sendTimes = 0 ;
 
}