|  |  |  | 
|---|
|  |  |  | public class ServerProperties { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //是否为低功耗 | 
|---|
|  |  |  | public static String orgTag = "ym" ; | 
|---|
|  |  |  | //是否为低功耗 | 
|---|
|  |  |  | public static Boolean isLowPower = false ; | 
|---|
|  |  |  | //只处理指定RTU地址设备,其他设备数据丢弃,多个RTU地址用英文逗号隔开,如果配置空串(即无IMEI号),则接收全部水表数据,设置此目的是针对某个水表进行调试 | 
|---|
|  |  |  | public static Boolean onlyDealRtusTest = false ; | 
|---|
|  |  |  | public static String[] onlyDealRtus ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //在支持多通信协议时,只有RTU上线了,才能识别出该RTU实际用的通信协议,进而用此协议解析上行数据及构造下行命令。 | 
|---|
|  |  |  | //如果RTU未曾上线(通信中间件启动后该RTU未曾上线),那么在向它发送下行命令时,不能判断出其采用的协议,也不能构造命令,尤其是低功耗情况下,不上线是正常现象。 | 
|---|
|  |  |  | // 当只有一个协议情况下,在RTU未曾上线时,也能用此协议构造命令并缓存下来,尤其适合低功耗情况。 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //针对一个RTU,下发命令的时间间隔 | 
|---|
|  |  |  | public static Long commandSendInterval = 5 * 1000L ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //针对一个RTU,下发快速命令的时间间隔 | 
|---|
|  |  |  | public static Long fastCommandSendInterval = 1000L ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //命令已经发送达最大次数,仍未收到命令结果,需要在缓存继续等待,其等待最大时长 | 
|---|
|  |  |  | public static Long cachWaitResultTimeout = 15 * 1000L ; | 
|---|
|  |  |  | public static Long cacheWaitResultTimeout = 15 * 1000L ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //不在线缓存的命令最大缓存时长 | 
|---|
|  |  |  | public static Long offLineCachTimeout = 60 * 1000L ; | 
|---|
|  |  |  | public static Long offLineCacheTimeout = 60 * 1000L ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //TCP上行数据时刻缓存时长,当达到时长时,TCP上行数据时刻被清空,采用TCP上行数据时刻目的是,阻止上数据同时下发数据,因为RTU处理不过来 | 
|---|
|  |  |  | public static Long lastUpDataTimeLive = 1000L ; | 
|---|
|  |  |  | 
|---|
|  |  |  | //没有上行数据的分钟数,达到这个分钟数,认为RTU断网了,取值范围是2000_100000 | 
|---|
|  |  |  | public static Long disconnectedByNoUpDataMinutes = 3000L ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //工作报太频繁,N次上报处理1次 | 
|---|
|  |  |  | public static Integer workReportDealOneByTimes = 5 ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //触发发送钉钉报警消息的取水口日漏损量的最小值(包括但除0.0外) | 
|---|
|  |  |  | public static Double intakeAlarmLossMinValue = 1.0 ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //有报警发生时,向钉钉发送消息的间隔时长(分钟) | 
|---|
|  |  |  | public static Integer sendDingDingAlarmMsInterval = 60 ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //Mqtt模块是否启动 | 
|---|
|  |  |  | public static Boolean mqttUnitEnable = false ; | 
|---|
|  |  |  | public static Long acceptManureDataMinInterval = 60 * 60 * 1000L ;//默认60分钟 | 
|---|
|  |  |  | public static Long acceptSoilDataMinInterval = 60 * 60 * 1000L ;//默认60分钟 | 
|---|
|  |  |  | public static Long acceptWeatherDataMinInterval = 60 * 60 * 1000L ;//默认60分钟 | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|