示例#1
0
 @Override
 public List<Stu> pageStu(Page page) throws Exception {
   return stuDao.pageStu(page);
 }
示例#2
0
 @Override
 public int stuCount() throws Exception {
   return stuDao.stuCount();
 }
示例#3
0
 @Override
 public List<Stu> queryAll() throws Exception {
   return stuDao.queryAll();
 }
示例#4
0
 @Override
 public Stu queryByKey(int sid) throws Exception {
   return stuDao.queryByKey(sid);
 }
示例#5
0
 @Override
 public void updateStu(Stu stu) throws Exception {
   stuDao.updateStu(stu);
 }
示例#6
0
 @Override
 public void deleteStu(Stu stu) throws Exception {
   stuDao.deleteStu(stu);
 }
示例#7
0
 @Override
 public void saveStu(Stu stu) throws Exception {
   stuDao.saveStu(stu);
 }