档案配置

This commit is contained in:
liang.chao 2025-09-12 10:29:07 +08:00
parent 0bdcbbef7b
commit 9f32e36cae
4 changed files with 6 additions and 6 deletions

View File

@ -49,7 +49,6 @@ public class ProjectController extends BaseController {
@ApiOperation(value = "档案目录下拉")
@GetMapping("getFileCatalogSelect")
@SysLog(title = "档案目录下拉", module = "档案管理->档案目录下拉", businessType = OperaType.QUERY, details = "档案目录下拉", logType = 1)
@RequiresPermissions("file:catalog:select")
public AjaxResult getFileCatalogSelect(ArchivalCatalogueDto dto) {
try {
List<SelectDto> list = service.getFileCatalogSelect(dto);

View File

@ -34,12 +34,12 @@ public class DaKyProFilesContentsDto {
/**
* 层级
*/
private String level;
private Integer level;
/**
* 分类号/案卷排序号
*/
private Long sort;
private Integer sort;
/**
* 档案标识代码

View File

@ -1,5 +1,6 @@
package com.bonus.web.service.impl;
import cn.hutool.core.collection.CollectionUtil;
import com.bonus.common.core.domain.AjaxResult;
import com.bonus.common.utils.bean.BeanUtils;
import com.bonus.web.domain.ArchivalCatalogueDto;

View File

@ -49,9 +49,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<update id="updateContentsName">
UPDATE da_ky_project
SET
content_name = #{contentsName}
contents_name = #{contentsName}
WHERE
id = #{id}
id = #{proId}
</update>
<select id="list" resultType="com.bonus.web.domain.ProjectDto">
@ -137,6 +137,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
INNER JOIN child_nodes c ON t.parent_id = c.id
WHERE t.del_flag = '1'
)
SELECT * FROM child_nodes
SELECT * FROM child_nodes ORDER BY id asc
</select>
</mapper>