38cd428399c0c66d4b7c9727fd86162fb5ba7753.svn-base 1.5 KB
/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.reg.service.bus;

import java.util.List;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.service.CrudService;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusHisHouseCfdjDao;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusHisHouseCfdj;


/**
 * 查封历史Service
 * @author lzj
 * @version 2019-10-23
 */
@Service
@Transactional(readOnly = true)
public class RegBusHisHouseCfdjService extends CrudService<RegBusHisHouseCfdjDao, RegBusHisHouseCfdj> {

	public RegBusHisHouseCfdj get(String id) {
		return super.get(id);
	}
	
	public List<RegBusHisHouseCfdj> findList(RegBusHisHouseCfdj regBusHisHouseCfdj) {
		return super.findList(regBusHisHouseCfdj);
	}
	
	public Page<RegBusHisHouseCfdj> findPage(Page<RegBusHisHouseCfdj> page, RegBusHisHouseCfdj regBusHisHouseCfdj) {
		return super.findPage(page, regBusHisHouseCfdj);
	}
	
	@Transactional(readOnly = false)
	public void save(RegBusHisHouseCfdj regBusHisHouseCfdj) {
		super.save(regBusHisHouseCfdj);
	}
	
	@Transactional(readOnly = false)
	public void delete(RegBusHisHouseCfdj regBusHisHouseCfdj) {
		super.delete(regBusHisHouseCfdj);
	}

	public void deletefwycf(RegBusHisHouseCfdj cf) {
		// TODO Auto-generated method stub
		dao.deletefwycf(cf);
	}
	
}