a60d3a6b63635dc23a2c40fdb29dce3bd765a59a.svn-base
3.33 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
/**
* Copyright © 2015-2018 <a href="#">J-Site</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.sumdata.web.datatable;
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.utils.StringUtils;
import com.thinkgem.jeesite.common.web.BaseController;
import com.thinkgem.jeesite.modules.sumdata.entity.datatable.SRegBusFdcq2;
import com.thinkgem.jeesite.modules.sumdata.service.datatable.SRegBusFdcq2Service;
import com.thinkgem.jeesite.modules.sys.utils.DictUtils;
/**
* s_reg_bus_fdcq2Controller
* @author xuyg
* @version 2017-03-08
*/
@Controller
@RequestMapping(value = "${adminPath}/numdata/datatable/sRegBusFdcq2")
public class SRegBusFdcq2Controller extends BaseController {
@Autowired
private SRegBusFdcq2Service sRegBusFdcq2Service;
@ModelAttribute
public SRegBusFdcq2 get(@RequestParam(required=false) String id) {
SRegBusFdcq2 entity = null;
if (StringUtils.isNotBlank(id)){
entity = sRegBusFdcq2Service.get(id);
}
if (entity == null){
entity = new SRegBusFdcq2();
}
return entity;
}
@RequiresPermissions("numdata:datatable:sRegBusFdcq2:view")
@RequestMapping(value = {"list", ""})
public String list(SRegBusFdcq2 sRegBusFdcq2, HttpServletRequest request, HttpServletResponse response, Model model) {
Page<SRegBusFdcq2> page = sRegBusFdcq2Service.findPage(new Page<SRegBusFdcq2>(request, response), sRegBusFdcq2);
model.addAttribute("page", page);
return "modules/numdata/datatable/sRegBusFdcq2List";
}
@RequiresPermissions("numdata:datatable:sRegBusFdcq2:view")
@RequestMapping(value = "form")
public String form(SRegBusFdcq2 sRegBusFdcq2, Model model) {
model.addAttribute("sRegBusFdcq2", sRegBusFdcq2);
return "modules/numdata/datatable/sRegBusFdcq2Form";
}
@RequiresPermissions("numdata:datatable:sRegBusFdcq2:edit")
@RequestMapping(value = "save")
public String save(SRegBusFdcq2 sRegBusFdcq2, Model model, RedirectAttributes redirectAttributes) {
if (!beanValidator(model, sRegBusFdcq2)){
return form(sRegBusFdcq2, model);
}
if(StringUtils.isNotBlank(sRegBusFdcq2.getGhyt())){
sRegBusFdcq2.setYtmc(DictUtils.getDictLabel(sRegBusFdcq2.getGhyt(), "reg_bus_fwyt", ""));
}
sRegBusFdcq2Service.save(sRegBusFdcq2);
addMessage(redirectAttributes, "保存s_reg_bus_fdcq2成功");
return "redirect:"+Global.getAdminPath()+"/numdata/datatable/sRegBusFdcq2/?repage";
}
@RequiresPermissions("numdata:datatable:sRegBusFdcq2:edit")
@RequestMapping(value = "delete")
public String delete(SRegBusFdcq2 sRegBusFdcq2, RedirectAttributes redirectAttributes) {
sRegBusFdcq2Service.delete(sRegBusFdcq2);
addMessage(redirectAttributes, "删除s_reg_bus_fdcq2成功");
return "redirect:"+Global.getAdminPath()+"/numdata/datatable/sRegBusFdcq2/?repage";
}
}