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