2c85a3391d7d863c7e9e2a03759e30998a5045e8.svn-base 3.33 KB
/**
 * Copyright &copy; 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.web.BaseController;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.modules.sumdata.entity.datatable.SRegBaseZbinfozrz;
import com.thinkgem.jeesite.modules.sumdata.service.datatable.SRegBaseZbinfozrzService;

/**
 * s_reg_base_zbinfozrzController
 * @author xuyg
 * @version 2017-03-07
 */
@Controller
@RequestMapping(value = "${adminPath}/sumdata/datatable/sRegBaseZbinfozrz")
public class SRegBaseZbinfozrzController extends BaseController {

	@Autowired
	private SRegBaseZbinfozrzService sRegBaseZbinfozrzService;
	
	@ModelAttribute
	public SRegBaseZbinfozrz get(@RequestParam(required=false) String id) {
		SRegBaseZbinfozrz entity = null;
		if (StringUtils.isNotBlank(id)){
			entity = sRegBaseZbinfozrzService.get(id);
		}
		if (entity == null){
			entity = new SRegBaseZbinfozrz();
		}
		return entity;
	}
	
	@RequiresPermissions("sumdata:datatable:sRegBaseZbinfozrz:view")
	@RequestMapping(value = {"list", ""})
	public String list(SRegBaseZbinfozrz sRegBaseZbinfozrz, HttpServletRequest request, HttpServletResponse response, Model model) {
		Page<SRegBaseZbinfozrz> page = sRegBaseZbinfozrzService.findPage(new Page<SRegBaseZbinfozrz>(request, response), sRegBaseZbinfozrz); 
		model.addAttribute("page", page);
		return "modules/sumdata/datatable/sRegBaseZbinfozrzList";
	}

	@RequiresPermissions("sumdata:datatable:sRegBaseZbinfozrz:view")
	@RequestMapping(value = "form")
	public String form(SRegBaseZbinfozrz sRegBaseZbinfozrz, Model model) {
		model.addAttribute("sRegBaseZbinfozrz", sRegBaseZbinfozrz);
		return "modules/sumdata/datatable/sRegBaseZbinfozrzForm";
	}

	@RequiresPermissions("sumdata:datatable:sRegBaseZbinfozrz:edit")
	@RequestMapping(value = "save")
	public String save(SRegBaseZbinfozrz sRegBaseZbinfozrz, Model model, RedirectAttributes redirectAttributes) {
		if (!beanValidator(model, sRegBaseZbinfozrz)){
			return form(sRegBaseZbinfozrz, model);
		}
		sRegBaseZbinfozrzService.save(sRegBaseZbinfozrz);
		addMessage(redirectAttributes, "保存s_reg_base_zbinfozrz成功");
		return "redirect:"+Global.getAdminPath()+"/sumdata/datatable/sRegBaseZbinfozrz/?repage";
	}
	
	@RequiresPermissions("sumdata:datatable:sRegBaseZbinfozrz:edit")
	@RequestMapping(value = "delete")
	public String delete(SRegBaseZbinfozrz sRegBaseZbinfozrz, RedirectAttributes redirectAttributes) {
		sRegBaseZbinfozrzService.delete(sRegBaseZbinfozrz);
		addMessage(redirectAttributes, "删除s_reg_base_zbinfozrz成功");
		return "redirect:"+Global.getAdminPath()+"/sumdata/datatable/sRegBaseZbinfozrz/?repage";
	}

}