新增文件预览列表修复了任务显示ossId但是无法现在的情况

新增项目编号索引
This commit is contained in:
2025-05-20 09:11:45 +08:00
parent a0bc26ef3a
commit 1715aa3639
32 changed files with 592 additions and 175 deletions

View File

@@ -27,6 +27,7 @@
s.reporter,
s.project_id AS projectId,
s.remark,
s.type,
p.project_name AS projectName
FROM oa_report_summary s
LEFT JOIN sys_oa_project p ON s.project_id = p.project_id
@@ -42,6 +43,9 @@
</if>
<if test="bo.projectId != null">
AND s.project_id = #{bo.projectId}
</if>
<if test="bo.type != null">
AND s.type = #{bo.type}
</if>
AND s.del_flag = 0
</where>