update 文档管理 翻译bug修改

This commit is contained in:
yyb
2025-08-04 11:27:08 +08:00
parent c73dc4db7b
commit 95573662ff
13 changed files with 206 additions and 17 deletions

View File

@@ -17,7 +17,10 @@ SELECT
update_time as updateTime,
create_time as createTime,
type,
child_type as childType
child_type as childType,
article_url as articleUrl,
title_url as titleUrl,
coin
FROM
manage_documents
<where>
@@ -64,7 +67,10 @@ FROM
update_time as updateTime,
create_time as createTime,
type,
child_type as childType
child_type as childType,
article_url as articleUrl,
title_url as titleUrl,
coin
FROM
manage_documents
<where>
@@ -103,11 +109,20 @@ FROM
update_time as updateTime,
create_time as createTime,
type,
child_type as childType
child_type as childType,
article_url as articleUrl,
title_url as titleUrl,
coin
from
manage_documents
where
del = false and type = #{type} and child_type = #{childType}
<where>
del = false and child_type = #{childType}
<if test="type != null">
AND type = #{type}
</if>
</where>
order by id desc
</select>
</mapper>