14 lines
389 B
Plaintext
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;
|
|
}
|