b0dcde74d7f59df0d49369db7d4a2c5ed1141ec5.svn-base 1.29 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.BdcTdfghbqkb;
import com.thinkgem.jeesite.modules.reg.dao.qjxt.BdcTdfghbqkbDao;

/**
 * 权籍系统土地分割合并情况表Service
 * @author xuyg
 * @version 2019-01-03
 */
@Service
@Transactional(readOnly = true)
public class BdcTdfghbqkbService extends CrudService<BdcTdfghbqkbDao, BdcTdfghbqkb> {

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