9a483f7cae67c2f8a3215b2f808e961c7fa3feee.svn-base 2.93 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.ZhjQsjgmsb;
import com.thinkgem.jeesite.modules.zhj.service.ZhjQsjgmsbService;

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

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

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

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

}