293524587f97621e966508f75e491c7523634f38.svn-base 1.54 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.Propagation;
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.RegBusClhjFw;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusClhjFwDao;

/**
 * 存量数据汇交Service
 * @author wb
 * @version 2017-08-01
 */
@Service
@Transactional(readOnly = true)
public class RegBusClhjFwService extends CrudService<RegBusClhjFwDao, RegBusClhjFw> {

	public RegBusClhjFw get(String id) {
		return super.get(id);
	}
	
	public List<RegBusClhjFw> findList(RegBusClhjFw regBusClhjFw) {
		return super.findList(regBusClhjFw);
	}
	
	public List<RegBusClhjFw> findAllList(RegBusClhjFw regBusClhjFw) {
		return dao.findAllList(regBusClhjFw);
	}
	
	public List<String> findshlist() {
		return dao.findshlist();
	}
	
	public Page<RegBusClhjFw> findPage(Page<RegBusClhjFw> page, RegBusClhjFw regBusClhjFw) {
		return super.findPage(page, regBusClhjFw);
	}
	
	public void save(RegBusClhjFw regBusClhjFw){
		super.save(regBusClhjFw);
	}
	
	@Transactional(readOnly = false)
	public void delete(RegBusClhjFw regBusClhjFw){
		super.delete(regBusClhjFw);
	}
	
	public String findMaxYwhLs(){
		return dao.findMaxYwhLs();
	} 
}