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

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.entity.qjxt.BdcFghbqkb;
import com.thinkgem.jeesite.modules.reg.dao.qjxt.BdcFghbqkbDao;

/**
 * 权籍系统房屋分割后情况表单处理Service
 * @author xuyg
 * @version 2018-11-08
 */
@Service
@Transactional(readOnly = true)
public class BdcFghbqkbService extends CrudService<BdcFghbqkbDao, BdcFghbqkb> {

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