package com.dy.aceMw.server; 
 | 
  
 | 
import com.dy.common.mw.support.SupportUnitAdapter; 
 | 
import com.dy.common.mw.support.SupportUnitConfigVo; 
 | 
  
 | 
public class AdapterImp_SupportUnit implements SupportUnitAdapter { 
 | 
     
 | 
    private SupportUnitConfigVo configVo = null ; 
 | 
  
 | 
    @Override 
 | 
    public SupportUnitConfigVo getConfig() { 
 | 
        return this.configVo; 
 | 
    } 
 | 
  
 | 
    public void setConfig(SupportUnitConfigVo configVo) { 
 | 
        this.configVo = configVo; 
 | 
    } 
 | 
  
 | 
  
 | 
} 
 |