18b58580c357db83e49796beeb80adc619e6bc60.svn-base 1.61 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.entity.bus.RegBusRights;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusRightsDao;

/**
 * 确权信息维护Service
 * @author xuyg
 * @version 2016-04-23
 */
@Service
@Transactional(readOnly = true)
public class RegBusRightsService extends CrudService<RegBusRightsDao, RegBusRights> {

	public RegBusRights get(String id) {
		return super.get(id);
	}
	
	public RegBusRights getByBdcdyh(String bdcdyh) {
		return dao.getByBdcdyh(bdcdyh);
	}
	
	public List<RegBusRights> findList(RegBusRights regBusRights) {
		return super.findList(regBusRights);
	}
	
	public Page<RegBusRights> findPage(Page<RegBusRights> page, RegBusRights regBusRights) {
		return super.findPage(page, regBusRights);
	}
	
	@Transactional(readOnly = false)
	public void save(RegBusRights regBusRights) {
		super.save(regBusRights);
	}
	
	@Transactional(readOnly = false)
	public void updateRegBusRights(RegBusRights regBusRights) {
		dao.updateRegBusRights(regBusRights);
	}
	
	@Transactional(readOnly = false)
	public void deleteRegBusRights(String bdcdyh) {
		dao.deleteRegBusRights(bdcdyh);
	}
	
	@Transactional(readOnly = false)
	public void delete(RegBusRights regBusRights) {
		super.delete(regBusRights);
	}
	
}