From 8a99fb4cfec13f578bb1835758b7363e12ee3be6 Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Thu, 16 May 2024 14:52:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E6=96=87=E4=BB=B6=E6=8E=A5?= =?UTF-8?q?=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/count/SysFilenumController.java | 63 ++++++++ .../system/count/SysNetworknumController.java | 60 +++++++ .../count/SysPropertynumController.java | 57 +++++++ .../filemanager/TdFileDestoryController.java | 139 ++++++++++++++++ .../filemanager/TdFileExtractController.java | 10 ++ .../templates/system/filedestory/edit.html | 91 +++++++++++ .../system/filedestory/filedestory.html | 121 ++++++++++++++ .../system/fileprovide/filenum/filenum.html | 10 ++ .../system/fileprovide/filenum/print.html | 10 ++ .../system/network/networknum/networknum.html | 10 ++ .../system/network/networknum/print.html | 10 ++ .../system/property/propertynum/print.html | 10 ++ .../property/propertynum/propertynum.html | 10 ++ .../ruoyi/system/domain/TdFileDestory.java | 153 ++++++++++++++++++ .../system/mapper/TdFileDestoryMapper.java | 61 +++++++ .../system/mapper/TdFileReceiveMapper.java | 7 + .../system/service/ITdFileDestoryService.java | 61 +++++++ .../system/service/ITdFileReceiveService.java | 2 + .../impl/TdFileDestoryServiceImpl.java | 94 +++++++++++ .../impl/TdFileReceiveServiceImpl.java | 5 + .../mapper/system/TdFileDestoryMapper.xml | 97 +++++++++++ .../mapper/system/TdFileReceiveMapper.xml | 5 + 22 files changed, 1086 insertions(+) create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysFilenumController.java create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysPropertynumController.java create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileDestoryController.java create mode 100644 ruoyi-admin/src/main/resources/templates/system/filedestory/edit.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/filedestory/filedestory.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/print.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/network/networknum/networknum.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/network/networknum/print.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/property/propertynum/print.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/domain/TdFileDestory.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileDestoryMapper.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileDestoryService.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileDestoryServiceImpl.java create mode 100644 ruoyi-system/src/main/resources/mapper/system/TdFileDestoryMapper.xml diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysFilenumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysFilenumController.java new file mode 100644 index 0000000..dc92281 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysFilenumController.java @@ -0,0 +1,63 @@ +package com.ruoyi.web.controller.system.count; + +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.system.domain.TdFileProvide; +import com.ruoyi.system.domain.TdFileReceive; +import com.ruoyi.system.domain.TdPropertyNetinfo; +import com.ruoyi.system.service.ISysDeptService; +import com.ruoyi.system.service.ITdFileProvideService; +import com.ruoyi.system.service.ITdFileReceiveService; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +/** + * 涉密文件统计 + */ +@Controller +@RequestMapping("/system/filenum") +public class SysFilenumController extends BaseController { + private String prefix = "system/fileprovide/filenum"; + + @Autowired + private ITdFileProvideService tdFileProvideService; + @Autowired + private ITdFileReceiveService tdFileReceiveService; + + @RequiresPermissions("system:filenum:view") + @GetMapping() + public String fileprovide() + { + return prefix + "/filenum"; + } + + /** + * 查询文件下发列表 + */ + @RequiresPermissions("system:filenum:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdFileProvide tdFileProvide) + { + startPage(); + List list = tdFileProvideService.selectTdFileProvideList(tdFileProvide); + return getDataTable(list); + } + + /** + * 打印界面,根据文件编号区分 + */ + @RequiresPermissions("system:filenum:print") + @GetMapping("/print/{fileId}") + public String print(@PathVariable("fileId") String fileId, ModelMap mmap) + { + List tdFileReceives = tdFileReceiveService.selectTdFileReceiveByFileId(fileId); + mmap.put("tdFileReceives", tdFileReceives); + return prefix + "/print"; + } +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java new file mode 100644 index 0000000..bc5d9b0 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java @@ -0,0 +1,60 @@ +package com.ruoyi.web.controller.system.count; + +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.system.domain.TdPropertyInfo; +import com.ruoyi.system.domain.TdPropertyNet; +import com.ruoyi.system.domain.TdPropertyNetinfo; +import com.ruoyi.system.service.ITdPropertyNetService; +import com.ruoyi.system.service.ITdPropertyNetinfoService; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +@Controller +@RequestMapping("/system/networknum") +public class SysNetworknumController extends BaseController { + private String prefix = "system/network/networknum"; + + @Autowired + private ITdPropertyNetService tdPropertyNetService; + @Autowired + private ITdPropertyNetinfoService tdPropertyNetinfoService; + + @RequiresPermissions("system:networknum:view") + @GetMapping() + public String network() + { + return prefix + "/networknum"; + } + + /** + * 查询涉密网络设备列表 + */ + @RequiresPermissions("system:networknum:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdPropertyNet tdPropertyNet) + { + startPage(); + List list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet); + return getDataTable(list); + } + + /** + * 打印界面 + */ + @RequiresPermissions("system:propertynum:print") + @GetMapping("/print/{useId}") + public String print(@PathVariable("netId") String netId, ModelMap mmap) + { + List tdPropertyNetinfos = tdPropertyNetinfoService.selectTdPropertyNetinfoByNetId(netId); + mmap.put("tdPropertyNetinfos", tdPropertyNetinfos); + return prefix + "/print"; + } + +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysPropertynumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysPropertynumController.java new file mode 100644 index 0000000..f2eb311 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysPropertynumController.java @@ -0,0 +1,57 @@ +package com.ruoyi.web.controller.system.count; + +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.system.domain.TdPropertyInfo; +import com.ruoyi.system.domain.TdPropertyManager; +import com.ruoyi.system.service.ITdPropertyInfoService; +import com.ruoyi.system.service.ITdPropertyManagerService; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +@Controller +@RequestMapping("/system/propertynum") +public class SysPropertynumController extends BaseController { + private String prefix = "system/property/propertynum"; + @Autowired + private ITdPropertyManagerService tdPropertyManagerService; + @Autowired + private ITdPropertyInfoService tdPropertyInfoService; + + @RequiresPermissions("system:propertynum:view") + @GetMapping() + public String property() + { + return prefix + "/propertynum"; + } + + /** + * 查询资产登记列表 + */ + @RequiresPermissions("system:propertynum:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdPropertyManager tdPropertyManager) + { + startPage(); + List list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager); + return getDataTable(list); + } + + /** + * 打印界面 + */ + @RequiresPermissions("system:propertynum:print") + @GetMapping("/print/{useId}") + public String print(@PathVariable("useId") String useId, ModelMap mmap) + { + List tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId); + mmap.put("tdPropertyInfos", tdPropertyInfos); + return prefix + "/print"; + } +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileDestoryController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileDestoryController.java new file mode 100644 index 0000000..1258a1b --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileDestoryController.java @@ -0,0 +1,139 @@ +package com.ruoyi.web.controller.system.filemanager; + +import java.util.ArrayList; +import java.util.List; + +import com.ruoyi.system.domain.TdFileProvide; +import com.ruoyi.system.domain.TdFileReceive; +import com.ruoyi.system.service.ITdFileProvideService; +import com.ruoyi.system.service.ITdFileReceiveService; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.system.domain.TdFileDestory; +import com.ruoyi.system.service.ITdFileDestoryService; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 涉密文件销毁Controller + * + * @author ruoyi + * @date 2024-05-15 + */ +@Controller +@RequestMapping("/system/filedestory") +public class TdFileDestoryController extends BaseController +{ + private String prefix = "system/filedestory"; + + @Autowired + private ITdFileDestoryService tdFileDestoryService; + @Autowired + private ITdFileReceiveService tdFileReceiveService; + @Autowired + private ITdFileProvideService tdFileProvideService; + + @RequiresPermissions("system:filedestory:view") + @GetMapping() + public String filedestory() + { + return prefix + "/filedestory"; + } + + /** + * 查询涉密文件销毁列表 + */ + @RequiresPermissions("system:filedestory:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdFileDestory tdFileDestory,ModelMap mmap) + { + startPage(); + List list = tdFileDestoryService.selectTdFileDestoryList(tdFileDestory); + List tdFileReceiveList = new ArrayList<>(); + List list1 = new ArrayList<>(); + for (TdFileDestory tdFileDestorylist : list){ + TdFileReceive tdFileReceive = tdFileReceiveService.selectTdFileReceiveByReceiveId(tdFileDestorylist.getReceiveId()); + tdFileReceiveList.add(tdFileReceive); + } + list1.add(list); + list1.add(tdFileReceiveList); + return getDataTable(list1); + } + + /** + * 导出涉密文件销毁列表 + */ + @RequiresPermissions("system:filedestory:export") + @Log(title = "涉密文件销毁", businessType = BusinessType.EXPORT) + @PostMapping("/export") + @ResponseBody + public AjaxResult export(TdFileDestory tdFileDestory) + { + List list = tdFileDestoryService.selectTdFileDestoryList(tdFileDestory); + ExcelUtil util = new ExcelUtil(TdFileDestory.class); + return util.exportExcel(list, "涉密文件销毁数据"); + } + + /** + * 修改涉密文件销毁 + */ + @RequiresPermissions("system:filedestory:edit") + @GetMapping("/edit/{destoryId}") + public String edit(@PathVariable("destoryId") Long destoryId, ModelMap mmap) + { + TdFileDestory tdFileDestory = tdFileDestoryService.selectTdFileDestoryByDestoryId(destoryId); + String fileId = (tdFileReceiveService.selectTdFileReceiveByReceiveId(tdFileDestory.getReceiveId())).getFileId(); + TdFileProvide tdFileProvide = tdFileProvideService.selectTdFileProvideByFileId(fileId); + mmap.put("tdFileProvide", tdFileProvide); + mmap.put("tdFileDestory", tdFileDestory); + return prefix + "/edit"; + } + + /** + * 修改保存涉密文件销毁 + */ + @RequiresPermissions("system:filedestory:edit") + @Log(title = "涉密文件销毁", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(TdFileDestory tdFileDestory) + { + return toAjax(tdFileDestoryService.updateTdFileDestory(tdFileDestory)); + } + + /** + * 删除涉密文件销毁 + */ + @RequiresPermissions("system:filedestory:remove") + @Log(title = "涉密文件销毁", businessType = BusinessType.DELETE) + @PostMapping( "/remove") + @ResponseBody + public AjaxResult remove(String ids) + { + return toAjax(tdFileDestoryService.deleteTdFileDestoryByDestoryIds(ids)); + } + + /** + * 涉密文件销毁详情 + */ + @RequiresPermissions("system:filedestory:detail") + @GetMapping("/detail/{destoryId}") + public String detail(@PathVariable("destoryId") Long destoryId, ModelMap mmap) + { + TdFileDestory tdFileDestory = tdFileDestoryService.selectTdFileDestoryByDestoryId(destoryId); + String fileId = (tdFileReceiveService.selectTdFileReceiveByReceiveId(tdFileDestory.getReceiveId())).getFileId(); + TdFileProvide tdFileProvide = tdFileProvideService.selectTdFileProvideByFileId(fileId); + mmap.put("tdFileProvide", tdFileProvide); + mmap.put("tdFileDestory", tdFileDestory); + return prefix + "/detail"; + } + +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java index f0d19ae..008aecf 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java @@ -6,8 +6,10 @@ import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.page.TableDataInfo; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.system.domain.TdFileDestory; import com.ruoyi.system.domain.TdFileReceive; import com.ruoyi.system.service.ISysDeptService; +import com.ruoyi.system.service.ITdFileDestoryService; import com.ruoyi.system.service.ITdFileReceiveService; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; @@ -29,6 +31,8 @@ public class TdFileExtractController extends BaseController { private ITdFileReceiveService tdFileReceiveService; @Autowired private ISysDeptService deptService; + @Autowired + private ITdFileDestoryService tdFileDestoryService; @RequiresPermissions("system:fileextract:view") @@ -94,6 +98,12 @@ public class TdFileExtractController extends BaseController { @ResponseBody public AjaxResult editSave(TdFileReceive tdFileReceive) { + TdFileDestory tdFileDestory = new TdFileDestory(); + if (tdFileReceive.getExtractState().equals("1")){ + tdFileDestory.setReceiveId(tdFileReceive.getReceiveId()); + tdFileDestory.setDestoryFilename(tdFileReceive.getFileName()); + tdFileDestoryService.insertTdFileDestory(tdFileDestory); + } return toAjax(tdFileReceiveService.updateTdFileReceive(tdFileReceive)); } diff --git a/ruoyi-admin/src/main/resources/templates/system/filedestory/edit.html b/ruoyi-admin/src/main/resources/templates/system/filedestory/edit.html new file mode 100644 index 0000000..a0aa828 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/filedestory/edit.html @@ -0,0 +1,91 @@ + + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/filedestory/filedestory.html b/ruoyi-admin/src/main/resources/templates/system/filedestory/filedestory.html new file mode 100644 index 0000000..8f4a01a --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/filedestory/filedestory.html @@ -0,0 +1,121 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/print.html b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/print.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/print.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/network/networknum/networknum.html b/ruoyi-admin/src/main/resources/templates/system/network/networknum/networknum.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/network/networknum/networknum.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/network/networknum/print.html b/ruoyi-admin/src/main/resources/templates/system/network/networknum/print.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/network/networknum/print.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/property/propertynum/print.html b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/print.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/print.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/property/propertynum/propertynum.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdFileDestory.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdFileDestory.java new file mode 100644 index 0000000..e3f8f9a --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdFileDestory.java @@ -0,0 +1,153 @@ +package com.ruoyi.system.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 涉密文件销毁对象 td_file_destory + * + * @author ruoyi + * @date 2024-05-15 + */ +public class TdFileDestory extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** id */ + private Long destoryId; + + /** 接收id */ + @Excel(name = "接收id") + private Long receiveId; + + /** 文件名 */ + @Excel(name = "文件名") + private String destoryFilename; + + /** 销毁地点 */ + @Excel(name = "销毁地点") + private String destoryAddress; + + /** 销毁数量 */ + @Excel(name = "销毁数量") + private Long destoryCount; + + /** 销毁单位 */ + @Excel(name = "销毁单位") + private String destoryDepart; + + /** 销毁人员 */ + @Excel(name = "销毁人员") + private String destoryUsername; + + /** 销毁方式 */ + @Excel(name = "销毁方式") + private String destoryStyle; + + /** 销毁日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "销毁日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date destoryDate; + + public void setDestoryId(Long destoryId) + { + this.destoryId = destoryId; + } + + public Long getDestoryId() + { + return destoryId; + } + public void setReceiveId(Long receiveId) + { + this.receiveId = receiveId; + } + + public Long getReceiveId() + { + return receiveId; + } + public void setDestoryFilename(String destoryFilename) + { + this.destoryFilename = destoryFilename; + } + + public String getDestoryFilename() + { + return destoryFilename; + } + public void setDestoryAddress(String destoryAddress) + { + this.destoryAddress = destoryAddress; + } + + public String getDestoryAddress() + { + return destoryAddress; + } + public void setDestoryCount(Long destoryCount) + { + this.destoryCount = destoryCount; + } + + public Long getDestoryCount() + { + return destoryCount; + } + public void setDestoryDepart(String destoryDepart) + { + this.destoryDepart = destoryDepart; + } + + public String getDestoryDepart() + { + return destoryDepart; + } + public void setDestoryUsername(String destoryUsername) + { + this.destoryUsername = destoryUsername; + } + + public String getDestoryUsername() + { + return destoryUsername; + } + public void setDestoryStyle(String destoryStyle) + { + this.destoryStyle = destoryStyle; + } + + public String getDestoryStyle() + { + return destoryStyle; + } + public void setDestoryDate(Date destoryDate) + { + this.destoryDate = destoryDate; + } + + public Date getDestoryDate() + { + return destoryDate; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("destoryId", getDestoryId()) + .append("receiveId", getReceiveId()) + .append("destoryFilename", getDestoryFilename()) + .append("destoryAddress", getDestoryAddress()) + .append("destoryCount", getDestoryCount()) + .append("destoryDepart", getDestoryDepart()) + .append("destoryUsername", getDestoryUsername()) + .append("destoryStyle", getDestoryStyle()) + .append("destoryDate", getDestoryDate()) + .append("remark", getRemark()) + .toString(); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileDestoryMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileDestoryMapper.java new file mode 100644 index 0000000..f948e9e --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileDestoryMapper.java @@ -0,0 +1,61 @@ +package com.ruoyi.system.mapper; + +import java.util.List; +import com.ruoyi.system.domain.TdFileDestory; + +/** + * 涉密文件销毁Mapper接口 + * + * @author ruoyi + * @date 2024-05-15 + */ +public interface TdFileDestoryMapper +{ + /** + * 查询涉密文件销毁 + * + * @param destoryId 涉密文件销毁主键 + * @return 涉密文件销毁 + */ + public TdFileDestory selectTdFileDestoryByDestoryId(Long destoryId); + + /** + * 查询涉密文件销毁列表 + * + * @param tdFileDestory 涉密文件销毁 + * @return 涉密文件销毁集合 + */ + public List selectTdFileDestoryList(TdFileDestory tdFileDestory); + + /** + * 新增涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + public int insertTdFileDestory(TdFileDestory tdFileDestory); + + /** + * 修改涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + public int updateTdFileDestory(TdFileDestory tdFileDestory); + + /** + * 删除涉密文件销毁 + * + * @param destoryId 涉密文件销毁主键 + * @return 结果 + */ + public int deleteTdFileDestoryByDestoryId(Long destoryId); + + /** + * 批量删除涉密文件销毁 + * + * @param destoryIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteTdFileDestoryByDestoryIds(String[] destoryIds); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java index 18b65a3..0acaba4 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java @@ -19,6 +19,13 @@ public interface TdFileReceiveMapper */ public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId); + /** + * 根据fileid查询文件列表 + * @param fileId + * @return + */ + public List selectTdFileReceiveByFileId(String fileId); + public List selectTdFileReceiveByReceiveDepart(String receiveDepart); /** diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileDestoryService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileDestoryService.java new file mode 100644 index 0000000..393ae59 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileDestoryService.java @@ -0,0 +1,61 @@ +package com.ruoyi.system.service; + +import java.util.List; +import com.ruoyi.system.domain.TdFileDestory; + +/** + * 涉密文件销毁Service接口 + * + * @author ruoyi + * @date 2024-05-15 + */ +public interface ITdFileDestoryService +{ + /** + * 查询涉密文件销毁 + * + * @param destoryId 涉密文件销毁主键 + * @return 涉密文件销毁 + */ + public TdFileDestory selectTdFileDestoryByDestoryId(Long destoryId); + + /** + * 查询涉密文件销毁列表 + * + * @param tdFileDestory 涉密文件销毁 + * @return 涉密文件销毁集合 + */ + public List selectTdFileDestoryList(TdFileDestory tdFileDestory); + + /** + * 新增涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + public int insertTdFileDestory(TdFileDestory tdFileDestory); + + /** + * 修改涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + public int updateTdFileDestory(TdFileDestory tdFileDestory); + + /** + * 批量删除涉密文件销毁 + * + * @param destoryIds 需要删除的涉密文件销毁主键集合 + * @return 结果 + */ + public int deleteTdFileDestoryByDestoryIds(String destoryIds); + + /** + * 删除涉密文件销毁信息 + * + * @param destoryId 涉密文件销毁主键 + * @return 结果 + */ + public int deleteTdFileDestoryByDestoryId(Long destoryId); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java index 27b7a1e..6977aab 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java @@ -19,6 +19,8 @@ public interface ITdFileReceiveService */ public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId); + public List selectTdFileReceiveByFileId(String fileId); + /** * 根据部门查询接收列表 * @param receiveDepart diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileDestoryServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileDestoryServiceImpl.java new file mode 100644 index 0000000..c94473b --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileDestoryServiceImpl.java @@ -0,0 +1,94 @@ +package com.ruoyi.system.service.impl; + +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.system.mapper.TdFileDestoryMapper; +import com.ruoyi.system.domain.TdFileDestory; +import com.ruoyi.system.service.ITdFileDestoryService; +import com.ruoyi.common.core.text.Convert; + +/** + * 涉密文件销毁Service业务层处理 + * + * @author ruoyi + * @date 2024-05-15 + */ +@Service +public class TdFileDestoryServiceImpl implements ITdFileDestoryService +{ + @Autowired + private TdFileDestoryMapper tdFileDestoryMapper; + + /** + * 查询涉密文件销毁 + * + * @param destoryId 涉密文件销毁主键 + * @return 涉密文件销毁 + */ + @Override + public TdFileDestory selectTdFileDestoryByDestoryId(Long destoryId) + { + return tdFileDestoryMapper.selectTdFileDestoryByDestoryId(destoryId); + } + + /** + * 查询涉密文件销毁列表 + * + * @param tdFileDestory 涉密文件销毁 + * @return 涉密文件销毁 + */ + @Override + public List selectTdFileDestoryList(TdFileDestory tdFileDestory) + { + return tdFileDestoryMapper.selectTdFileDestoryList(tdFileDestory); + } + + /** + * 新增涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + @Override + public int insertTdFileDestory(TdFileDestory tdFileDestory) + { + return tdFileDestoryMapper.insertTdFileDestory(tdFileDestory); + } + + /** + * 修改涉密文件销毁 + * + * @param tdFileDestory 涉密文件销毁 + * @return 结果 + */ + @Override + public int updateTdFileDestory(TdFileDestory tdFileDestory) + { + return tdFileDestoryMapper.updateTdFileDestory(tdFileDestory); + } + + /** + * 批量删除涉密文件销毁 + * + * @param destoryIds 需要删除的涉密文件销毁主键 + * @return 结果 + */ + @Override + public int deleteTdFileDestoryByDestoryIds(String destoryIds) + { + return tdFileDestoryMapper.deleteTdFileDestoryByDestoryIds(Convert.toStrArray(destoryIds)); + } + + /** + * 删除涉密文件销毁信息 + * + * @param destoryId 涉密文件销毁主键 + * @return 结果 + */ + @Override + public int deleteTdFileDestoryByDestoryId(Long destoryId) + { + return tdFileDestoryMapper.deleteTdFileDestoryByDestoryId(destoryId); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java index a981f02..61f4486 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java @@ -32,6 +32,11 @@ public class TdFileReceiveServiceImpl implements ITdFileReceiveService return tdFileReceiveMapper.selectTdFileReceiveByReceiveId(receiveId); } + @Override + public List selectTdFileReceiveByFileId(String fileId) { + return tdFileReceiveMapper.selectTdFileReceiveByFileId(fileId); + } + @Override public List selectTdFileReceiveByReceiveDepart(String receiveDepart) { return tdFileReceiveMapper.selectTdFileReceiveByReceiveDepart(receiveDepart); diff --git a/ruoyi-system/src/main/resources/mapper/system/TdFileDestoryMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdFileDestoryMapper.xml new file mode 100644 index 0000000..620effd --- /dev/null +++ b/ruoyi-system/src/main/resources/mapper/system/TdFileDestoryMapper.xml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + select destory_id, receive_id, destory_filename, destory_address, destory_count, destory_depart, destory_username, destory_style, destory_date, remark from td_file_destory + + + + + + + + insert into td_file_destory + + receive_id, + destory_filename, + destory_address, + destory_count, + destory_depart, + destory_username, + destory_style, + destory_date, + remark, + + + #{receiveId}, + #{destoryFilename}, + #{destoryAddress}, + #{destoryCount}, + #{destoryDepart}, + #{destoryUsername}, + #{destoryStyle}, + #{destoryDate}, + #{remark}, + + + + + update td_file_destory + + receive_id = #{receiveId}, + destory_filename = #{destoryFilename}, + destory_address = #{destoryAddress}, + destory_count = #{destoryCount}, + destory_depart = #{destoryDepart}, + destory_username = #{destoryUsername}, + destory_style = #{destoryStyle}, + destory_date = #{destoryDate}, + remark = #{remark}, + + where destory_id = #{destoryId} + + + + delete from td_file_destory where destory_id = #{destoryId} + + + + delete from td_file_destory where destory_id in + + #{destoryId} + + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml index e44e113..b139a87 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml @@ -49,6 +49,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where receive_id = #{receiveId} + +