i-framework-lite/.svn/pristine/3a/3a1fd4c91cef512c5d341e6e0e0...

30 lines
698 B
Plaintext

package kr.co.i4way.sample.service;
import java.util.ArrayList;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import kr.co.i4way.sample.dao.SampleDao;
import kr.co.i4way.sample.model.TestListVo;
import kr.co.i4way.sample.model.WallInfoVo;
@Service
public class SampleService {
@Autowired SampleDao dao;
public String getDual() throws Exception{
return dao.getDual();
}
public ArrayList getTestList(TestListVo testlistvo) throws Exception{
return dao.getTestList(testlistvo);
}
public ArrayList getWallInfo(WallInfoVo wallinfovo) throws Exception{
return dao.getWallInfo(wallinfovo);
}
}