涉密文件接收

master
20918 11 months ago
parent 065c3107f4
commit 8a99fb4cfe

@ -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<TdFileProvide> list = tdFileProvideService.selectTdFileProvideList(tdFileProvide);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:filenum:print")
@GetMapping("/print/{fileId}")
public String print(@PathVariable("fileId") String fileId, ModelMap mmap)
{
List<TdFileReceive> tdFileReceives = tdFileReceiveService.selectTdFileReceiveByFileId(fileId);
mmap.put("tdFileReceives", tdFileReceives);
return prefix + "/print";
}
}

@ -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";
}
}

@ -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));
}

@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('修改涉密文件销毁')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-filedestory-edit" th:object="${tdFileDestory}">
<input name="destoryId" th:field="*{destoryId}" type="hidden">
<div class="form-group">
<label class="col-sm-3 control-label">接收id</label>
<div class="col-sm-8">
<input name="receiveId" th:field="*{receiveId}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">文件名:</label>
<div class="col-sm-8">
<input name="destoryFilename" th:field="*{destoryFilename}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁地点:</label>
<div class="col-sm-8">
<textarea name="destoryAddress" class="form-control">[[*{destoryAddress}]]</textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁数量:</label>
<div class="col-sm-8">
<input name="destoryCount" th:field="*{destoryCount}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁单位:</label>
<div class="col-sm-8">
<input name="destoryDepart" th:field="*{destoryDepart}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁人员:</label>
<div class="col-sm-8">
<input name="destoryUsername" th:field="*{destoryUsername}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁方式:</label>
<div class="col-sm-8">
<input name="destoryStyle" th:field="*{destoryStyle}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="destoryDate" th:value="${#dates.format(tdFileDestory.destoryDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">备注:</label>
<div class="col-sm-8">
<textarea name="remark" class="form-control">[[*{remark}]]</textarea>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/filedestory";
$("#form-filedestory-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-filedestory-edit').serialize());
}
}
$("input[name='destoryDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>

@ -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>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</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);
}

@ -19,6 +19,13 @@ public interface TdFileReceiveMapper
*/
public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId);
/**
* fileid
* @param fileId
* @return
*/
public List<TdFileReceive> selectTdFileReceiveByFileId(String fileId);
public List<TdFileReceive> selectTdFileReceiveByReceiveDepart(String receiveDepart);
/**

@ -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);
}

@ -19,6 +19,8 @@ public interface ITdFileReceiveService
*/
public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId);
public List<TdFileReceive> selectTdFileReceiveByFileId(String fileId);
/**
*
* @param receiveDepart

@ -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);
}
}

@ -32,6 +32,11 @@ public class TdFileReceiveServiceImpl implements ITdFileReceiveService
return tdFileReceiveMapper.selectTdFileReceiveByReceiveId(receiveId);
}
@Override
public List<TdFileReceive> selectTdFileReceiveByFileId(String fileId) {
return tdFileReceiveMapper.selectTdFileReceiveByFileId(fileId);
}
@Override
public List<TdFileReceive> selectTdFileReceiveByReceiveDepart(String receiveDepart) {
return tdFileReceiveMapper.selectTdFileReceiveByReceiveDepart(receiveDepart);

@ -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>

@ -49,6 +49,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where receive_id = #{receiveId}
</select>
<select id="selectTdFileReceiveByFileId" parameterType="String" resultMap="TdFileReceiveResult">
<include refid="selectTdFileReceiveVo"/>
where file_id = #{fileId}
</select>
<select id="selectTdFileReceiveByReceiveDepart" parameterType="String" resultMap="TdFileReceiveResult">
<include refid="selectTdFileReceiveVo"/>
where receive_departid = #{receiveDepartid}

Loading…
Cancel
Save