328feb204dffed4decb8d686fc5154613fb34788.svn-base
1.01 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
/**
* Copyright © 2015-2018 <a href="#">J-Site</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.web.bus;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.thinkgem.jeesite.common.web.BaseController;
/**
* 一窗受理业务数据分插Controller
* @author wb
*/
@Controller
@RequestMapping(value = "${adminPath}/reg/bus/regBusSlywController")
public class RegBusSlywController extends BaseController {
/**
* 流程自动启动从受理环节获取数据并分插
* 2018-10-18
*/
public String InsertSlyw() {
String flag = "0";
return flag;
}
/**
* 解析一窗请求xml,获取查询参数
* @return
*/
public void AnalysisXml(String xml) {
}
/**
* 一窗受理,土地首次登记
*/
public void tdsccommimt(){
}
/**
* 一窗受理,土地转移登记
*/
public void tdzycommimt(){
}
/**
* 一窗受理,房屋转移登记
*/
public void fwzycommimt(){
}
}