liurunyu
2024-12-05 267e622c876bea09b61af34fc93cd08b022aa423
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
package com.dy.rtuMw.server.local.localProtocol;
 
import com.dy.common.mw.protocol.rtuState.RtuStatus;
import com.dy.rtuMw.server.forTcp.RtuStatusDealer;
import java.util.Map;
 
/**
 * @Author: liurunyu
 * @Date: 2024/11/3 16:27
 * @Description
 */
public class RtuStatusDeal {
 
    /**
     * 查询状态
     */
    public Map<String, RtuStatus> dealAll(){
        return RtuStatusDealer.allStatus();
    }
 
 
    /**
     * 查询状态
     */
    public Map<String, RtuStatus> dealSome(String[] rtuAddrGrp){
        return RtuStatusDealer.someStatus(rtuAddrGrp) ;
    }
 
 
 
    /**
     * 查询状态
     */
    public RtuStatus dealOne(String rtuAddr){
        return RtuStatusDealer.oneStatus(rtuAddr) ;
    }
}