16 lines
372 B
Plaintext
16 lines
372 B
Plaintext
package kr.co.i4way.common.dao;
|
|
|
|
import java.util.Map;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository("commonDAO")
|
|
public class CommonDAO extends AbstractDAO{
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public Map<String, Object> selectFileInfo(Map<String, Object> map) throws Exception{
|
|
return (Map<String, Object>)selectOne("common.selectFileInfo", map);
|
|
}
|
|
|
|
}
|