af4fee5498f9c15c75d558f088c9906b4134cbb1.svn-base
2.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
/**
* Copyright © 2015-2018 <a href="#">J-Site</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.ycsl.web.ywzt;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import com.thinkgem.jeesite.common.config.Global;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.web.BaseController;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.modules.ycsl.entity.ywzt.YcslYwzt;
import com.thinkgem.jeesite.modules.ycsl.service.ywzt.YcslYwztService;
/**
* 一窗受理业务办理推送、调度Controller
* @author lw
* @version 2020-07-17
*/
@Controller
@RequestMapping(value = "${adminPath}/ycsl/ywzt/ycslYwzt")
public class YcslYwztController extends BaseController {
@Autowired
private YcslYwztService ycslYwztService;
@ModelAttribute
public YcslYwzt get(@RequestParam(required=false) String id) {
YcslYwzt entity = null;
if (StringUtils.isNotBlank(id)){
entity = ycslYwztService.get(id);
}
if (entity == null){
entity = new YcslYwzt();
}
return entity;
}
@RequiresPermissions("ycsl:ywzt:ycslYwzt:view")
@RequestMapping(value = {"list", ""})
public String list(YcslYwzt ycslYwzt, HttpServletRequest request, HttpServletResponse response, Model model) {
Page<YcslYwzt> page = ycslYwztService.findPage(new Page<YcslYwzt>(request, response), ycslYwzt);
model.addAttribute("page", page);
return "modules/ycsl/ywzt/ycslYwztList";
}
@RequiresPermissions("ycsl:ywzt:ycslYwzt:view")
@RequestMapping(value = "form")
public String form(YcslYwzt ycslYwzt, Model model) {
model.addAttribute("ycslYwzt", ycslYwzt);
return "modules/ycsl/ywzt/ycslYwztForm";
}
@RequiresPermissions("ycsl:ywzt:ycslYwzt:edit")
@RequestMapping(value = "save")
public String save(YcslYwzt ycslYwzt, Model model, RedirectAttributes redirectAttributes) {
if (!beanValidator(model, ycslYwzt)){
return form(ycslYwzt, model);
}
ycslYwztService.save(ycslYwzt);
addMessage(redirectAttributes, "保存lw成功");
return "redirect:"+Global.getAdminPath()+"/ycsl/ywzt/ycslYwzt/?repage";
}
@RequiresPermissions("ycsl:ywzt:ycslYwzt:edit")
@RequestMapping(value = "delete")
public String delete(YcslYwzt ycslYwzt, RedirectAttributes redirectAttributes) {
ycslYwztService.delete(ycslYwzt);
addMessage(redirectAttributes, "删除lw成功");
return "redirect:"+Global.getAdminPath()+"/ycsl/ywzt/ycslYwzt/?repage";
}
}