update 文档管理系统新增子类型

This commit is contained in:
yyb
2025-07-23 09:57:16 +08:00
parent 00c490d28f
commit c73dc4db7b
12 changed files with 65 additions and 11 deletions

View File

@@ -16,7 +16,8 @@ SELECT
update_user as updateUser,
update_time as updateTime,
create_time as createTime,
type
type,
child_type as childType
FROM
manage_documents
<where>
@@ -62,7 +63,8 @@ FROM
update_user as updateUser,
update_time as updateTime,
create_time as createTime,
type
type,
child_type as childType
FROM
manage_documents
<where>
@@ -100,10 +102,12 @@ FROM
update_user as updateUser,
update_time as updateTime,
create_time as createTime,
type
type,
child_type as childType
from
manage_documents
where del = false and type = #{type}
where
del = false and type = #{type} and child_type = #{childType}
order by id desc
</select>
</mapper>