a7800cab3ad8f3581c0185ac13df1ca5ac554de4.svn-base
2.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.bus;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.thinkgem.jeesite.common.config.Global;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.service.CrudService;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusDyaq;
import com.thinkgem.jeesite.modules.reg.entity.bus.RegBusFdcq2;
import com.thinkgem.jeesite.modules.reg.dao.bus.RegBusFdcq2Dao;
/**
* 房地产权登记信息(独幢、层、套、间房屋)维护Service
* @author xuyg
* @version 2015-10-15
*/
@Service
@Transactional(readOnly = true)
public class RegBusFdcq2Service extends CrudService<RegBusFdcq2Dao, RegBusFdcq2> {
public RegBusFdcq2 get(String id) {
return super.get(id);
}
public List<RegBusFdcq2> findList(RegBusFdcq2 regBusFdcq2) {
return super.findList(regBusFdcq2);
}
public Page<RegBusFdcq2> findPage(Page<RegBusFdcq2> page, RegBusFdcq2 regBusFdcq2) {
return super.findPage(page, regBusFdcq2);
}
@Transactional(readOnly = false)
public void insert(RegBusFdcq2 regBusFdcq2) {
regBusFdcq2.preInsert();
dao.insert(regBusFdcq2);
}
@Transactional(readOnly = false)
public void save(RegBusFdcq2 regBusFdcq2) {
super.save(regBusFdcq2);
}
@Transactional(readOnly = false)
public void updateZdftfs(Map<String, String> map) {
dao.updateZdftfs(map);
}
@Transactional(readOnly = false)
public void delete(RegBusFdcq2 regBusFdcq2) {
super.delete(regBusFdcq2);
}
@Transactional(readOnly = false)
public void deletefdcq2(RegBusFdcq2 regBusFdcq2){
dao.deletefdcq2(regBusFdcq2);
}
@Transactional(readOnly = false)
public void updateFdcq2(Map<String, String> map){
if("oracle".equals(Global.getDbName())){
dao.OracleUpdateFdcq2(map);
}else {
dao.updateFdcq2(map);
}
}
public List<RegBusFdcq2> zdftfslist(RegBusFdcq2 regBusFdcq2) {
return dao.zdftfslist(regBusFdcq2);
}
public List<RegBusFdcq2> findzdinfo(RegBusFdcq2 regBusFdcq2) {
return dao.findzdinfo(regBusFdcq2);
}
public void updateCxqqdh(Map<String,String> params) {
// TODO Auto-generated method stub
dao.updateCxqqdh(params);
}
public void updatePjnr(Map<String,String> params) {
// TODO Auto-generated method stub
dao.updatePjnr(params);
}
public Map<String, String> getOne(String string) {
// TODO Auto-generated method stub
return dao.getOne(string);
}
public List<RegBusFdcq2> getByHtbh(String htbh) {
// TODO Auto-generated method stub
return dao.getByHtbh(htbh);
}
}