zhubaomin
2025-04-07 9fb370afff71f4d5659d8904e8751479280d5b48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dy.rtuMw.server;
 
 
import com.dy.rtuMw.server.msCenter.MsCenterConfigVo;
import com.dy.rtuMw.server.msCenter.MsCenterUnitAdapter;
 
public class AdapterImp_MsCenterUnit implements MsCenterUnitAdapter {
    
    private MsCenterConfigVo configVo ;
 
    public MsCenterConfigVo getConfig() {
        return configVo;
    }
    
    public void setConfig(MsCenterConfigVo configVo){
        this.configVo = configVo ;
    }
 
}