47f99f508b074f2f7400ca516c001d8321c195b4.svn-base
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.dao.bus;
import java.util.List;
import java.util.Map;
import com.thinkgem.jeesite.common.persistence.CrudDao;
import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusFdcq2;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusGd;
/**
* 房地产权登记信息(独幢、层、套、间房屋)维护DAO接口
* @author xuyg
* @version 2015-10-15
*/
@MyBatisDao
public interface RegBusFdcq2Dao extends CrudDao<RegBusFdcq2> {
/***
* @Title: deletefdcq2
* @Description: 根据(ywh等属性)清除当前业务下的房屋产权信息
* @param @param regBusFdcq2 设定文件
* @return void 返回类型
* @throws
*/
public void deletefdcq2(RegBusFdcq2 regBusFdcq2);
public void updateZdftfs(Map<String, String> map);
public void updateFdcq2(Map<String, String> map);
public void OracleUpdateFdcq2(Map<String, String> map);
public List<RegBusFdcq2> zdftfslist(RegBusFdcq2 regBusFdcq2);
public List<RegBusFdcq2> findzdinfo(RegBusFdcq2 regBusFdcq2);
public void updateCxqqdh(Map<String, String> params);
public void updatePjnr(Map<String, String> params);
public Map<String, String> getOne(String string);
public List<RegBusFdcq2> getByHtbh(String htbh);
public List<Map> queryFwcbByCqzh(Map map);
}