i-framework-lite/.svn/pristine/f2/f2e0c3b06994898d32d018e5c22...

14 lines
389 B
Plaintext

package kr.co.i4way.sample.dao;
import java.util.ArrayList;
import java.util.Map;
import kr.co.i4way.sample.model.TestListVo;
import kr.co.i4way.sample.model.WallInfoVo;
public interface SampleDao {
public String getDual() throws Exception;
public ArrayList getTestList(TestListVo testlistvo) throws Exception;
public ArrayList getWallInfo(WallInfoVo wallinfovo) throws Exception;
}