liurunyu
2025-02-12 47033c5e68ced6ff6b6e2f8163f0a95dbc3bc321
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 ;
    }
 
}