From 83307d0b3279dd7792a41dced83a40018718b3fd Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Wed, 14 Aug 2024 09:45:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A1=88=E4=BB=B6=E7=99=BB=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/controller/manager/TdCaseManager.java | 39 +++++++ .../controller/tdcase/TdCaseController.java | 104 +++++++++++++++++- .../resources/templates/system/case/add.html | 10 ++ .../resources/templates/system/case/case.html | 10 ++ .../templates/system/case/detail.html | 10 ++ .../resources/templates/system/case/edit.html | 10 ++ .../system/mapper/tdcase/TdCaseMapper.java | 4 + .../system/service/tdcase/TdCaseService.java | 4 + .../tdcase/impl/TdCaseServiceImpl.java | 11 ++ .../resources/mapper/system/TdCaseMapper.xml | 11 ++ 10 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 ruoyi-admin/src/main/resources/templates/system/case/add.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/case/case.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/case/detail.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/case/edit.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/TdCaseManager.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/TdCaseManager.java index 4285938..7360d76 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/TdCaseManager.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/TdCaseManager.java @@ -1,9 +1,16 @@ package com.ruoyi.web.controller.manager; +import cn.hutool.core.convert.Convert; +import cn.hutool.core.text.CharSequenceUtil; +import com.ruoyi.common.utils.ShiroUtils; +import com.ruoyi.system.domain.tdcase.TdCase; import com.ruoyi.system.service.tdcase.TdCaseService; import org.springframework.stereotype.Component; import javax.annotation.Resource; +import java.util.Arrays; +import java.util.Date; +import java.util.List; /** * packageName com.ruoyi.web.controller.manager @@ -19,4 +26,36 @@ public class TdCaseManager { @Resource private TdCaseService caseService; + + public List selecttdCaseList(TdCase tdCase) { + return caseService.selectTdCaseList(tdCase); + } + + + + public boolean saveOrUpdate(TdCase tdCase) { + if (CharSequenceUtil.isNotBlank(tdCase.getId())) { + tdCase.setUpdateBy(ShiroUtils.getSysUser().getLoginName()); + tdCase.setUpdateTime(new Date()); + } else { + tdCase.setCreateBy(ShiroUtils.getSysUser().getLoginName()); + tdCase.setCreateTime(new Date()); + } + return caseService.saveOrUpdate(tdCase); + } + + + public TdCase selecttdCase(String id) { + return caseService.getById(id); + } + + public boolean deletedCaseByids(String ids) { + List list = Arrays.asList(Convert.toStrArray(ids)); + return caseService.removeByIds(list); + } + + public List selectList() { + return caseService.lambdaQuery().list(); + } + } diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/tdcase/TdCaseController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/tdcase/TdCaseController.java index 9214e0c..7aa9c20 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/tdcase/TdCaseController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/tdcase/TdCaseController.java @@ -1,11 +1,19 @@ package com.ruoyi.web.controller.tdcase; +import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.system.domain.tdcase.TdCase; import com.ruoyi.web.controller.manager.TdCaseManager; +import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; +import java.util.List; /** * packageName com.ruoyi.web.controller.tdcase @@ -20,8 +28,102 @@ import javax.annotation.Resource; @RequestMapping("/system/tdCase") public class TdCaseController extends BaseController { + private String prefix = "system/case"; @Resource private TdCaseManager tdCaseManager; + @RequiresPermissions("system:case:view") + @GetMapping() + public String place() { + return prefix + "/case"; + } + + /** + * 案件列表 + */ + @RequiresPermissions("system:case:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdCase tdCase) { + startPage(); + List tdCases = tdCaseManager.selecttdCaseList(tdCase); + return getDataTable(tdCases); + } + + + /** + * 新增案件 + */ + @GetMapping("/add") + public String add() { + return prefix + "/add"; + } + + /** + * 新增案件 + */ + @RequiresPermissions("system:case:add") + @Log(title = "失泄密案件", businessType = BusinessType.INSERT) + @PostMapping("/add") + @ResponseBody + public AjaxResult addSave(TdCase tdCase) { + return toAjax(tdCaseManager.saveOrUpdate(tdCase)); + } + + /** + * 修改案件 + */ + @RequiresPermissions("system:case:edit") + @GetMapping("/edit/{id}") + public String edit(@PathVariable("id") String id, ModelMap mmap) { + TdCase tdCase = tdCaseManager.selecttdCase(id); + mmap.put("tdCase", tdCase); + return prefix + "/edit"; + } + + /** + * 修改保存登记 + */ + @RequiresPermissions("system:case:edit") + @Log(title = "失泄密案件", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(TdCase tdCase) { + return toAjax(tdCaseManager.saveOrUpdate(tdCase)); + } + + /** + * 案件详情 + */ + @RequiresPermissions("system:case:detail") + @GetMapping("/detail/{id}") + public String detail(@PathVariable("id") String id, ModelMap mmap) { + TdCase tdCase = tdCaseManager.selecttdCase(id); + mmap.put("tdCase", tdCase); + return prefix + "/detail"; + } + + /** + * 删除案件 + */ + @RequiresPermissions("system:case:remove") + @Log(title = "失泄密案件", businessType = BusinessType.DELETE) + @PostMapping("/remove") + @ResponseBody + public AjaxResult remove(String ids) { + return toAjax(tdCaseManager.deletedCaseByids(ids)); + } + + /** + * + * 查询所有案件 + * @return com.ruoyi.common.core.domain.AjaxResult + */ + @PostMapping("/getList") + @ResponseBody + public AjaxResult getList() { + return AjaxResult.success(tdCaseManager.selectList()); + } + } diff --git a/ruoyi-admin/src/main/resources/templates/system/case/add.html b/ruoyi-admin/src/main/resources/templates/system/case/add.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/case/add.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/case/case.html b/ruoyi-admin/src/main/resources/templates/system/case/case.html new file mode 100644 index 0000000..c4ec13a --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/case/case.html @@ -0,0 +1,10 @@ + + + + + Title + + +1 + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/case/detail.html b/ruoyi-admin/src/main/resources/templates/system/case/detail.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/case/detail.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/case/edit.html b/ruoyi-admin/src/main/resources/templates/system/case/edit.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/case/edit.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/tdcase/TdCaseMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/tdcase/TdCaseMapper.java index d37870f..bb3723a 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/tdcase/TdCaseMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/tdcase/TdCaseMapper.java @@ -1,9 +1,12 @@ package com.ruoyi.system.mapper.tdcase; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.tdcase.TdCase; import org.apache.ibatis.annotations.Mapper; +import java.util.List; + /** * @author 13560 * @description 针对表【td_case(涉密案件管理)】的数据库操作Mapper @@ -12,6 +15,7 @@ import org.apache.ibatis.annotations.Mapper; */ @Mapper public interface TdCaseMapper extends BaseMapper { + public List selectTdCaseList(TdCase tdCase); } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/TdCaseService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/TdCaseService.java index 57f8c97..79ec279 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/TdCaseService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/TdCaseService.java @@ -1,13 +1,17 @@ package com.ruoyi.system.service.tdcase; import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.tdcase.TdCase; +import java.util.List; + /** * @author 13560 * @description 针对表【td_case(涉密案件管理)】的数据库操作Service * @createDate 2024-08-13 15:55:39 */ public interface TdCaseService extends IService { + public List selectTdCaseList(TdCase tdCase); } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/impl/TdCaseServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/impl/TdCaseServiceImpl.java index 5a45e42..99b7af7 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/impl/TdCaseServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/tdcase/impl/TdCaseServiceImpl.java @@ -1,11 +1,16 @@ package com.ruoyi.system.service.tdcase.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.tdcase.TdCase; +import com.ruoyi.system.mapper.place.TdPlaceMapper; import com.ruoyi.system.mapper.tdcase.TdCaseMapper; import com.ruoyi.system.service.tdcase.TdCaseService; import org.springframework.stereotype.Service; +import javax.annotation.Resource; +import java.util.List; + /** * @author 13560 * @description 针对表【td_case(涉密案件管理)】的数据库操作Service实现 @@ -14,6 +19,12 @@ import org.springframework.stereotype.Service; @Service public class TdCaseServiceImpl extends ServiceImpl implements TdCaseService { + @Resource + private TdCaseMapper caseMapper; + @Override + public List selectTdCaseList(TdCase tdCase) { + return caseMapper.selectTdCaseList(tdCase); + } } diff --git a/ruoyi-system/src/main/resources/mapper/system/TdCaseMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdCaseMapper.xml index 7bfb867..1ad07d7 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdCaseMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdCaseMapper.xml @@ -32,4 +32,15 @@ create_by,create_time,update_by, update_time,remark + + +