apzl_leasing/src_sys/com/amarsoft/app/als/sys/SystemConfigLoader.java
2018-06-03 22:26:41 +08:00

16 lines
375 B
Java

package com.amarsoft.app.als.sys;
import com.amarsoft.dict.als.cache.AbstractCache;
import com.amarsoft.dict.als.cache.loader.AbstractLoader;
import com.amarsoft.app.als.sys.SystemConfig;
public class SystemConfigLoader extends AbstractLoader{
@Override
public AbstractCache getCacheInstance() {
// TODO Auto-generated method stub
return new SystemConfig();
}
}