7afe94a94736f95c229287f029c10641d6959ccd.svn-base 722 Bytes
/**
 * Copyright © 2015-2018 ODM All rights reserved.
 */
package com.thinkgem.jeesite.modules.reg.dao.bus;

import org.springframework.transaction.annotation.Transactional;

import com.thinkgem.jeesite.common.persistence.CrudDao;
import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusCfdj;

/**
 * 查封登记信息表单维护DAO接口
 * @author xuyg
 * @version 2015-10-28
 */
@MyBatisDao
public interface RegBusCfdjDao extends CrudDao<RegBusCfdj> {
	public RegBusCfdj getByJfywh(String jfywh);
	public void fwcfdelete(RegBusCfdj regBusCfdj);
	public void deletecf(RegBusCfdj regBusCfdj);
	public void deletefwycf(RegBusCfdj regBusCfdj);
}