5ef0eed5c339e8b5a21ccb01f07cf12110271784.svn-base
3.88 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.service.updata;
import java.util.List;
import java.util.Map;
import org.apache.cxf.endpoint.Client;
import org.apache.cxf.frontend.ClientProxy;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import org.apache.cxf.transport.http.HTTPConduit;
import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;
import org.springframework.beans.factory.annotation.Autowired;
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.common.utils.StringUtils;
import com.thinkgem.jeesite.modules.reg.dao.updata.RegBusSjhjtableDao;
import com.thinkgem.jeesite.modules.reg.entity.updata.RegBusSjhjtable;
import com.thinkgem.jeesite.modules.restws.webservice.IEventWebService;
/**
* 数据汇交Service
* @author xuyg
* @version 2016-08-10
*/
@Service
@Transactional(readOnly = true)
public class RegBusSjhjtableService extends CrudService<RegBusSjhjtableDao, RegBusSjhjtable> {
@Autowired
public RegBusSjhjtableDao regBusSjhjtableDao;
public RegBusSjhjtable get(String id) {
return super.get(id);
}
public List<RegBusSjhjtable> findList(RegBusSjhjtable regBusSjhjtable) {
return super.findList(regBusSjhjtable);
}
public Page<RegBusSjhjtable> findPage(Page<RegBusSjhjtable> page, RegBusSjhjtable regBusSjhjtable) {
return super.findPage(page, regBusSjhjtable);
}
@Transactional(readOnly = false)
public void save(RegBusSjhjtable regBusSjhjtable) {
super.save(regBusSjhjtable);
}
@Transactional(readOnly = false)
public void delete(RegBusSjhjtable regBusSjhjtable) {
super.delete(regBusSjhjtable);
}
/**
* @Title: findMaxBizmsgid
* @Description: 查询当前数据库里最大的宗地代码
* @param @return 设定文件
* @return String 返回类型
* @throws
*/
public String findMaxBizmsgid(){
if("oracle".equals(Global.getDbName())){
return dao.findMaxBizmsgidofOracle();
}else{
return dao.findMaxBizmsgid();
}
}
//上报日志接入查询
public String findAllnum(Map map){
return dao.allnum(map);
}
public String findScnum(Map map){
return dao.scnum(map);
}
public String findZynum(Map map){
return dao.zynum(map);
}
public String findBgnum(Map map){
return dao.bgnum(map);
}
public String findZxnum(Map map){
return dao.zxnum(map);
}
public String findGznum(Map map){
return dao.gznum(map);
}
public String findYynum(Map map){
return dao.yynum(map);
}
public String findYgnum(Map map){
return dao.ygnum(map);
}
public String findCfnum(Map map){
return dao.cfnum(map);
}
public String findDyaqnum(Map map){
return dao.dyaqnum(map);
}
public String findDyiqnum(Map map){
return dao.dyiqnum(map);
}
public String findTypeCount(Map map){
return dao.businessTypeCount(map);
}
public String findAllnum1(Map map){
return dao.allnum1(map);
}
public String findScnum1(Map map){
return dao.scnum1(map);
}
public String findZynum1(Map map){
return dao.zynum1(map);
}
public String findBgnum1(Map map){
return dao.bgnum1(map);
}
public String findZxnum1(Map map){
return dao.zxnum1(map);
}
public String findGznum1(Map map){
return dao.gznum1(map);
}
public String findYynum1(Map map){
return dao.yynum1(map);
}
public String findYgnum1(Map map){
return dao.ygnum1(map);
}
public String findCfnum1(Map map){
return dao.cfnum1(map);
}
public String findDyaqnum1(Map map){
return dao.dyaqnum1(map);
}
public String findDyiqnum1(Map map){
return dao.dyiqnum1(map);
}
/**
* 数据上报获取随机数
* @param regBusSlsq
*/
public String Frandom(String qxdm) {
return dao.Frandom(qxdm);
}
}