?? aboutfacadeimpl.java.svn-base
字號:
package com.pure.domain.logic.impl;
import java.util.List;
import org.springframework.dao.DataAccessException;
import com.pure.dao.AboutDAO;
import com.pure.domain.About;
import com.pure.domain.logic.AboutFacade;
import com.pure.page.Page;
public class AboutFacadeImpl implements AboutFacade {
private AboutDAO aboutDao;
public AboutDAO getAboutDao() {
return aboutDao;
}
public void setAboutDao(AboutDAO aboutDao) {
this.aboutDao = aboutDao;
}
public void insertAbout(About about) throws DataAccessException {
this.getAboutDao().insertAbout(about);
}
public void saveOrUpdate(About about){
this.getAboutDao().saveOrUpdate(about);
}
public List getAboutList(Page page) {
return this.getAboutDao().getAboutList(page);
}
public List getAboutList(int num, String hql) {
return this.getAboutDao().getAboutList(num, hql);
}
public About getAbout(int id) {
return this.getAboutDao().getAbout(id);
}
public int getTotal(String hql) {
return this.getAboutDao().getTotal(hql);
}
public void delAbout(int id) {
this.getAboutDao().delAbout(id);
}
public void updateAbout(About aboutSort) throws DataAccessException {
this.getAboutDao().updateAbout(aboutSort);
}
public About getFirstAbout() {
return this.getAboutDao().getFirstAbout();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -