aboutfacadeimpl.java

来自「这是基于spring +hibernate的项目」· Java 代码 · 共 61 行

JAVA
61
字号
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();
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?