29ad22411baed499eba5ebe1aa1c0e31ff613d95.svn-base 3.29 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.SRegBusSjhjtable;
import com.thinkgem.jeesite.modules.sumdata.service.datatable.SRegBusSjhjtableService;

/**
 * s_reg_bus_sjhjtableController
 * @author xuyg
 * @version 2017-03-08
 */
@Controller
@RequestMapping(value = "${adminPath}/sumdata/datatable/sRegBusSjhjtable")
public class SRegBusSjhjtableController extends BaseController {

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

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

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

}