|
|
@@ -0,0 +1,225 @@
|
|
|
+/**
|
|
|
+ * Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
|
|
|
+ */
|
|
|
+package com.jeeplus.modules.mpmanager.web;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import javax.validation.ConstraintViolationException;
|
|
|
+
|
|
|
+import org.apache.shiro.authz.annotation.Logical;
|
|
|
+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.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import com.google.common.collect.Lists;
|
|
|
+import com.jeeplus.common.utils.DateUtils;
|
|
|
+import com.jeeplus.common.config.Global;
|
|
|
+import com.jeeplus.common.json.AjaxJson;
|
|
|
+import com.jeeplus.core.persistence.Page;
|
|
|
+import com.jeeplus.core.web.BaseController;
|
|
|
+import com.jeeplus.common.utils.StringUtils;
|
|
|
+import com.jeeplus.common.utils.excel.ExportExcel;
|
|
|
+import com.jeeplus.common.utils.excel.ImportExcel;
|
|
|
+import com.jeeplus.modules.mpmanager.entity.MpTaskSetting;
|
|
|
+import com.jeeplus.modules.mpmanager.service.MpTaskSettingService;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 任务设置Controller
|
|
|
+ * @author zwq
|
|
|
+ * @version 2019-09-06
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping(value = "${adminPath}/mpmanager/mpTaskSetting")
|
|
|
+public class MpTaskSettingController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private MpTaskSettingService mpTaskSettingService;
|
|
|
+
|
|
|
+ @ModelAttribute
|
|
|
+ public MpTaskSetting get(@RequestParam(required=false) String id) {
|
|
|
+ MpTaskSetting entity = null;
|
|
|
+ if (StringUtils.isNotBlank(id)){
|
|
|
+ entity = mpTaskSettingService.get(id);
|
|
|
+ }
|
|
|
+ if (entity == null){
|
|
|
+ entity = new MpTaskSetting();
|
|
|
+ }
|
|
|
+ return entity;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务设置列表页面
|
|
|
+ */
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:list")
|
|
|
+ @RequestMapping(value = {"list", ""})
|
|
|
+ public String list(MpTaskSetting mpTaskSetting, Model model) {
|
|
|
+ model.addAttribute("mpTaskSetting", mpTaskSetting);
|
|
|
+ return "modules/mpmanager/mpTaskSettingList";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务设置列表数据
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:list")
|
|
|
+ @RequestMapping(value = "data")
|
|
|
+ public Map<String, Object> data(MpTaskSetting mpTaskSetting, HttpServletRequest request, HttpServletResponse response, Model model) {
|
|
|
+ Page<MpTaskSetting> page = mpTaskSettingService.findPage(new Page<MpTaskSetting>(request, response), mpTaskSetting);
|
|
|
+ return getBootstrapData(page);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查看,增加,编辑任务设置表单页面
|
|
|
+ */
|
|
|
+ @RequiresPermissions(value={"mpmanager:mpTaskSetting:view","mpmanager:mpTaskSetting:add","mpmanager:mpTaskSetting:edit"},logical=Logical.OR)
|
|
|
+ @RequestMapping(value = "form/{mode}")
|
|
|
+ public String form(@PathVariable String mode, MpTaskSetting mpTaskSetting, Model model) {
|
|
|
+ model.addAttribute("mpTaskSetting", mpTaskSetting);
|
|
|
+ model.addAttribute("mode", mode);
|
|
|
+ return "modules/mpmanager/mpTaskSettingForm";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存任务设置
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions(value={"mpmanager:mpTaskSetting:add","mpmanager:mpTaskSetting:edit"},logical=Logical.OR)
|
|
|
+ @RequestMapping(value = "save")
|
|
|
+ public AjaxJson save(MpTaskSetting mpTaskSetting, Model model) throws Exception{
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ /**
|
|
|
+ * 后台hibernate-validation插件校验
|
|
|
+ */
|
|
|
+ String errMsg = beanValidator(mpTaskSetting);
|
|
|
+ if (StringUtils.isNotBlank(errMsg)){
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg(errMsg);
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+ //新增或编辑表单保存
|
|
|
+ mpTaskSettingService.save(mpTaskSetting);//保存
|
|
|
+ j.setSuccess(true);
|
|
|
+ j.setMsg("保存任务设置成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除任务设置
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:del")
|
|
|
+ @RequestMapping(value = "delete")
|
|
|
+ public AjaxJson delete(MpTaskSetting mpTaskSetting) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ mpTaskSettingService.delete(mpTaskSetting);
|
|
|
+ j.setMsg("删除任务设置成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量删除任务设置
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:del")
|
|
|
+ @RequestMapping(value = "deleteAll")
|
|
|
+ public AjaxJson deleteAll(String ids) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ String idArray[] =ids.split(",");
|
|
|
+ for(String id : idArray){
|
|
|
+ mpTaskSettingService.delete(mpTaskSettingService.get(id));
|
|
|
+ }
|
|
|
+ j.setMsg("删除任务设置成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出excel文件
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:export")
|
|
|
+ @RequestMapping(value = "export")
|
|
|
+ public AjaxJson exportFile(MpTaskSetting mpTaskSetting, HttpServletRequest request, HttpServletResponse response) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ String fileName = "任务设置"+DateUtils.getDate("yyyyMMddHHmmss")+".xlsx";
|
|
|
+ Page<MpTaskSetting> page = mpTaskSettingService.findPage(new Page<MpTaskSetting>(request, response, -1), mpTaskSetting);
|
|
|
+ new ExportExcel("任务设置", MpTaskSetting.class).setDataList(page.getList()).write(response, fileName).dispose();
|
|
|
+ j.setSuccess(true);
|
|
|
+ j.setMsg("导出成功!");
|
|
|
+ return j;
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg("导出任务设置记录失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入Excel数据
|
|
|
+
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:import")
|
|
|
+ @RequestMapping(value = "import")
|
|
|
+ public AjaxJson importFile(@RequestParam("file")MultipartFile file, HttpServletResponse response, HttpServletRequest request) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ int successNum = 0;
|
|
|
+ int failureNum = 0;
|
|
|
+ StringBuilder failureMsg = new StringBuilder();
|
|
|
+ ImportExcel ei = new ImportExcel(file, 1, 0);
|
|
|
+ List<MpTaskSetting> list = ei.getDataList(MpTaskSetting.class);
|
|
|
+ for (MpTaskSetting mpTaskSetting : list){
|
|
|
+ try{
|
|
|
+ mpTaskSettingService.save(mpTaskSetting);
|
|
|
+ successNum++;
|
|
|
+ }catch(ConstraintViolationException ex){
|
|
|
+ failureNum++;
|
|
|
+ }catch (Exception ex) {
|
|
|
+ failureNum++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (failureNum>0){
|
|
|
+ failureMsg.insert(0, ",失败 "+failureNum+" 条任务设置记录。");
|
|
|
+ }
|
|
|
+ j.setMsg( "已成功导入 "+successNum+" 条任务设置记录"+failureMsg);
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg("导入任务设置失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下载导入任务设置数据模板
|
|
|
+ */
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("mpmanager:mpTaskSetting:import")
|
|
|
+ @RequestMapping(value = "import/template")
|
|
|
+ public AjaxJson importFileTemplate(HttpServletResponse response) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ String fileName = "任务设置数据导入模板.xlsx";
|
|
|
+ List<MpTaskSetting> list = Lists.newArrayList();
|
|
|
+ new ExportExcel("任务设置数据", MpTaskSetting.class, 1).setDataList(list).write(response, fileName).dispose();
|
|
|
+ return null;
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg( "导入模板下载失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|