484556d93da52332d0cb4d8831058c3b08ce2e4f.svn-base 3.22 KB
/**
 * Copyright &copy; 2015-2018 <a href="#">J-Site</a> All rights reserved.
 */
package com.thinkgem.jeesite.modules.zhj.web;

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.zhj.entity.ZhjZdjgmsb;
import com.thinkgem.jeesite.modules.zhj.service.ZhjZdjgmsbService;

/**
 * 智慧局权属结构描述表Controller
 * @author lzj
 * @version 2020-04-26
 */
@Controller
@RequestMapping(value = "${adminPath}/zhj/zhjZdjgmsb")
public class ZhjZdjgmsbController extends BaseController {

	@Autowired
	private ZhjZdjgmsbService zhjZdjgmsbService;
	
	@ModelAttribute
	public ZhjZdjgmsb get(@RequestParam(required=false) String id) {
		ZhjZdjgmsb entity = null;
		if (StringUtils.isNotBlank(id)){
			entity = zhjZdjgmsbService.get(id);
		}
		if (entity == null){
			entity = new ZhjZdjgmsb();
		}
		return entity;
	}
	
	@RequiresPermissions("zhj:zhjZdjgmsb:view")
	@RequestMapping(value = {"list", ""})
	public String list(ZhjZdjgmsb zhjZdjgmsb, HttpServletRequest request, HttpServletResponse response, Model model) {
		Page<ZhjZdjgmsb> page = zhjZdjgmsbService.findPage(new Page<ZhjZdjgmsb>(request, response), zhjZdjgmsb); 
		model.addAttribute("page", page);
		return "modules/zhj/zhjZdjgmsbList";
	}

	@RequiresPermissions("zhj:zhjZdjgmsb:view")
	@RequestMapping(value = "form")
	public String form(ZhjZdjgmsb zhjZdjgmsb, Model model) {
		model.addAttribute("zhjZdjgmsb", zhjZdjgmsb);
		return "modules/zhj/zhjZdjgmsbForm";
	}

	@RequiresPermissions("zhj:zhjZdjgmsb:edit")
	@RequestMapping(value = "save")
	public String save(ZhjZdjgmsb zhjZdjgmsb, Model model, RedirectAttributes redirectAttributes) {
		if (!beanValidator(model, zhjZdjgmsb)){
			return form(zhjZdjgmsb, model);
		}
		zhjZdjgmsbService.save(zhjZdjgmsb);
		addMessage(redirectAttributes, "保存智慧局权属结构描述表成功");
		return "redirect:"+Global.getAdminPath()+"/zhj/zhjZdjgmsb/?repage";
	}
	
	@RequiresPermissions("zhj:zhjZdjgmsb:edit")
	@RequestMapping(value = "delete")
	public String delete(ZhjZdjgmsb zhjZdjgmsb, RedirectAttributes redirectAttributes) {
		zhjZdjgmsbService.delete(zhjZdjgmsb);
		addMessage(redirectAttributes, "删除智慧局权属结构描述表成功");
		return "redirect:"+Global.getAdminPath()+"/zhj/zhjZdjgmsb/?repage";
	}

	@RequestMapping(value = "zhj")
	public String zhj(ZhjZdjgmsb zhjZdjgmsb, RedirectAttributes redirectAttributes) {
		zhjZdjgmsbService.zhjExcel(zhjZdjgmsb);
		addMessage(redirectAttributes, "智慧局数据生成成功");
		return "redirect:"+Global.getAdminPath()+"/zhj/zhjZdjgmsb/?repage";
	}
}