82b3d0d3cca61e92df59418574acb3a40a9b360d.svn-base 1.25 KB
/**
 * Copyright © 2015-2018 ODM 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.RegBusGjzwsyq;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusGjzwsyqDao;

/**
 * 构筑物所有权信息维护Service
 * @author xuyg
 * @version 2015-10-15
 */
@Service
@Transactional(readOnly = true)
public class RegBusGjzwsyqService extends CrudService<RegBusGjzwsyqDao, RegBusGjzwsyq> {

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