21cf4306c25e3d14901f82781daa90419d5753d1.svn-base 1.39 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.RegBusYydj;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusYydjDao;

/**
 * 异议登记信息业务表单Service
 * @author xuyg
 * @version 2015-10-28
 */
@Service
@Transactional(readOnly = true)
public class RegBusYydjService extends CrudService<RegBusYydjDao, RegBusYydj> {

	public RegBusYydj get(String id) {
		return super.get(id);
	}
	
	public RegBusYydj getByZxywh(String zxyyywh) {
		return dao.getByZxywh(zxyyywh);
	}
	
	public List<RegBusYydj> findList(RegBusYydj regBusYydj) {
		return super.findList(regBusYydj);
	}
	
	public Page<RegBusYydj> findPage(Page<RegBusYydj> page, RegBusYydj regBusYydj) {
		return super.findPage(page, regBusYydj);
	}
	
	@Transactional(readOnly = false)
	public void save(RegBusYydj regBusYydj) {
		super.save(regBusYydj);
	}
	
	@Transactional(readOnly = false)
	public void delete(RegBusYydj regBusYydj) {
		super.delete(regBusYydj);
	}
	@Transactional(readOnly = false)
	public void deleteyyywh(RegBusYydj regBusYydj) {
		dao.deleteyyywh(regBusYydj);
	}
}