代码提交

This commit is contained in:
liang.chao 2025-12-04 15:33:48 +08:00
parent 13cf881db1
commit c4a706cf3b
2 changed files with 4 additions and 1 deletions

View File

@ -167,6 +167,8 @@ public class DaKyProFilesContentsDto extends PageDomain {
private String proName;
private String singleProName;
private String isRectification;
// 归档描述
private String description;
private List<DaKyProFilesContentsDto> children = new ArrayList<>();
}

View File

@ -56,7 +56,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<update id="updateFileStatus">
UPDATE da_ky_project
SET
file_status = '1'
file_status = '1',
description = #{description}
WHERE
id = #{proId}
</update>