YcslSjclService.java 1.33 KB
/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.ycsl.service;

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.ycsl.entity.YcslSjcl;
import com.thinkgem.jeesite.modules.ycsl.dao.YcslSjclDao;

/**
 * 一窗受理-收件材料Service
 * @author lzj
 * @version 2020-12-24
 */
@Service
@Transactional(readOnly = true)
public class YcslSjclService extends CrudService<YcslSjclDao, YcslSjcl> {

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

	@Transactional(readOnly = false)
	public void deleteByproid(String proid) {
		// TODO Auto-generated method stub
		dao.deleteByproid(proid);
	}
	
}