liurunyu
2025-02-26 5599ea07c557223e5a8f0acae755de852d2fe008
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 ;
    }
 
}