parent
065c3107f4
commit
8a99fb4cfe
@ -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<TdPropertyNet> list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 打印界面
|
||||
*/
|
||||
@RequiresPermissions("system:propertynum:print")
|
||||
@GetMapping("/print/{useId}")
|
||||
public String print(@PathVariable("netId") String netId, ModelMap mmap)
|
||||
{
|
||||
List<TdPropertyNetinfo> tdPropertyNetinfos = tdPropertyNetinfoService.selectTdPropertyNetinfoByNetId(netId);
|
||||
mmap.put("tdPropertyNetinfos", tdPropertyNetinfos);
|
||||
return prefix + "/print";
|
||||
}
|
||||
|
||||
}
|
@ -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<TdPropertyManager> list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 打印界面
|
||||
*/
|
||||
@RequiresPermissions("system:propertynum:print")
|
||||
@GetMapping("/print/{useId}")
|
||||
public String print(@PathVariable("useId") String useId, ModelMap mmap)
|
||||
{
|
||||
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
|
||||
mmap.put("tdPropertyInfos", tdPropertyInfos);
|
||||
return prefix + "/print";
|
||||
}
|
||||
}
|
@ -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<TdFileDestory> list = tdFileDestoryService.selectTdFileDestoryList(tdFileDestory);
|
||||
List<TdFileReceive> tdFileReceiveList = new ArrayList<>();
|
||||
List<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<TdFileDestory> list = tdFileDestoryService.selectTdFileDestoryList(tdFileDestory);
|
||||
ExcelUtil<TdFileDestory> util = new ExcelUtil<TdFileDestory>(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";
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,121 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<th:block th:include="include :: header('涉密文件销毁列表')" />
|
||||
</head>
|
||||
<body class="gray-bg">
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
<label>文件名:</label>
|
||||
<input type="text" name="destoryFilename"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>销毁单位:</label>
|
||||
<input type="text" name="destoryDepart"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>销毁方式:</label>
|
||||
<input type="text" name="destoryStyle"/>
|
||||
</li>
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:filedestory:remove">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:filedestory:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('system:filedestory:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('system:filedestory:remove')}]];
|
||||
var prefix = ctx + "system/filedestory";
|
||||
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "涉密文件销毁",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'destoryId',
|
||||
title: 'id',
|
||||
visible: false
|
||||
},
|
||||
{
|
||||
field: 'receiveId',
|
||||
title: '接收id'
|
||||
},
|
||||
{
|
||||
field: 'destoryFilename',
|
||||
title: '文件名'
|
||||
},
|
||||
{
|
||||
field: 'destoryAddress',
|
||||
title: '销毁地点'
|
||||
},
|
||||
{
|
||||
field: 'destoryCount',
|
||||
title: '销毁数量'
|
||||
},
|
||||
{
|
||||
field: 'destoryDepart',
|
||||
title: '销毁单位'
|
||||
},
|
||||
{
|
||||
field: 'destoryUsername',
|
||||
title: '销毁人员'
|
||||
},
|
||||
{
|
||||
field: 'destoryStyle',
|
||||
title: '销毁方式'
|
||||
},
|
||||
{
|
||||
field: 'destoryDate',
|
||||
title: '销毁日期'
|
||||
},
|
||||
{
|
||||
field: 'remark',
|
||||
title: '备注'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.destoryId + '\')"><i class="fa fa-remove"></i>详情</a>');
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.destoryId + '\')"><i class="fa fa-remove"></i>删除</a>');
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.destoryId + '\')"><i class="fa fa-edit"></i>销毁</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -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();
|
||||
}
|
||||
}
|
@ -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<TdFileDestory> 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);
|
||||
}
|
@ -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<TdFileDestory> 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);
|
||||
}
|
@ -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<TdFileDestory> 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);
|
||||
}
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapper.TdFileDestoryMapper">
|
||||
|
||||
<resultMap type="TdFileDestory" id="TdFileDestoryResult">
|
||||
<result property="destoryId" column="destory_id" />
|
||||
<result property="receiveId" column="receive_id" />
|
||||
<result property="destoryFilename" column="destory_filename" />
|
||||
<result property="destoryAddress" column="destory_address" />
|
||||
<result property="destoryCount" column="destory_count" />
|
||||
<result property="destoryDepart" column="destory_depart" />
|
||||
<result property="destoryUsername" column="destory_username" />
|
||||
<result property="destoryStyle" column="destory_style" />
|
||||
<result property="destoryDate" column="destory_date" />
|
||||
<result property="remark" column="remark" />
|
||||
<!-- <collection property="TdFileReceive" ofType="com.ruoyi.system.domain.TdFileReceive" resultMap="TdFileReceiveResult" />-->
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectTdFileDestoryVo">
|
||||
select destory_id, receive_id, destory_filename, destory_address, destory_count, destory_depart, destory_username, destory_style, destory_date, remark from td_file_destory
|
||||
</sql>
|
||||
|
||||
<select id="selectTdFileDestoryList" parameterType="TdFileDestory" resultMap="TdFileDestoryResult">
|
||||
<include refid="selectTdFileDestoryVo"/>
|
||||
<where>
|
||||
<if test="receiveId != null and receiveId != ''"> and receive_id = #{receiveId}</if>
|
||||
<if test="destoryFilename != null and destoryFilename != ''"> and destory_filename like concat('%', #{destoryFilename}, '%')</if>
|
||||
<if test="destoryAddress != null and destoryAddress != ''"> and destory_address = #{destoryAddress}</if>
|
||||
<if test="destoryCount != null "> and destory_count = #{destoryCount}</if>
|
||||
<if test="destoryDepart != null and destoryDepart != ''"> and destory_depart = #{destoryDepart}</if>
|
||||
<if test="destoryUsername != null and destoryUsername != ''"> and destory_username like concat('%', #{destoryUsername}, '%')</if>
|
||||
<if test="destoryStyle != null and destoryStyle != ''"> and destory_style = #{destoryStyle}</if>
|
||||
<if test="destoryDate != null "> and destory_date = #{destoryDate}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectTdFileDestoryByDestoryId" parameterType="Long" resultMap="TdFileDestoryResult">
|
||||
<include refid="selectTdFileDestoryVo"/>
|
||||
where destory_id = #{destoryId}
|
||||
</select>
|
||||
|
||||
<insert id="insertTdFileDestory" parameterType="TdFileDestory" useGeneratedKeys="true" keyProperty="destoryId">
|
||||
insert into td_file_destory
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="receiveId != null">receive_id,</if>
|
||||
<if test="destoryFilename != null">destory_filename,</if>
|
||||
<if test="destoryAddress != null">destory_address,</if>
|
||||
<if test="destoryCount != null">destory_count,</if>
|
||||
<if test="destoryDepart != null">destory_depart,</if>
|
||||
<if test="destoryUsername != null">destory_username,</if>
|
||||
<if test="destoryStyle != null">destory_style,</if>
|
||||
<if test="destoryDate != null">destory_date,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="receiveId != null">#{receiveId},</if>
|
||||
<if test="destoryFilename != null">#{destoryFilename},</if>
|
||||
<if test="destoryAddress != null">#{destoryAddress},</if>
|
||||
<if test="destoryCount != null">#{destoryCount},</if>
|
||||
<if test="destoryDepart != null">#{destoryDepart},</if>
|
||||
<if test="destoryUsername != null">#{destoryUsername},</if>
|
||||
<if test="destoryStyle != null">#{destoryStyle},</if>
|
||||
<if test="destoryDate != null">#{destoryDate},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateTdFileDestory" parameterType="TdFileDestory">
|
||||
update td_file_destory
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="receiveId != null">receive_id = #{receiveId},</if>
|
||||
<if test="destoryFilename != null">destory_filename = #{destoryFilename},</if>
|
||||
<if test="destoryAddress != null">destory_address = #{destoryAddress},</if>
|
||||
<if test="destoryCount != null">destory_count = #{destoryCount},</if>
|
||||
<if test="destoryDepart != null">destory_depart = #{destoryDepart},</if>
|
||||
<if test="destoryUsername != null">destory_username = #{destoryUsername},</if>
|
||||
<if test="destoryStyle != null">destory_style = #{destoryStyle},</if>
|
||||
<if test="destoryDate != null">destory_date = #{destoryDate},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where destory_id = #{destoryId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteTdFileDestoryByDestoryId" parameterType="Long">
|
||||
delete from td_file_destory where destory_id = #{destoryId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteTdFileDestoryByDestoryIds" parameterType="String">
|
||||
delete from td_file_destory where destory_id in
|
||||
<foreach item="destoryId" collection="array" open="(" separator="," close=")">
|
||||
#{destoryId}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
Loading…
Reference in new issue