24 lines
554 B
Plaintext
24 lines
554 B
Plaintext
package kr.co.i4way.common.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import org.apache.log4j.Logger;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import kr.co.i4way.common.dao.CommonDAO;
|
|
|
|
@Service("commonService")
|
|
public class CommonServiceImpl implements CommonService{
|
|
Logger log = Logger.getLogger(this.getClass());
|
|
|
|
@Resource(name="commonDAO")
|
|
private CommonDAO commonDAO;
|
|
|
|
@Override
|
|
public Map<String, Object> selectFileInfo(Map<String, Object> map) throws Exception {
|
|
return commonDAO.selectFileInfo(map);
|
|
}
|
|
}
|