bug修复等

This commit is contained in:
2025-11-19 09:49:12 +08:00
parent c9e6f781fa
commit 06234bbcc1
18 changed files with 852 additions and 337 deletions

View File

@@ -135,13 +135,20 @@
s.ys_remark,
s.ys_user,
s.task_count,
s.ys_date
from zt_story s
s.ys_date,
su.title userStoryName,
su.id userStoryId,
ps.title parentName,
su.openedDate userStoryCreateTime,
su.openedBy userStoryCreateUser
from zt_story s
left join zt_story_user su on s.user_story = su.id
left join zt_storyreview v on s.id = v.story and s.version = v.version
left join zt_story ps on s.parent = ps.id
where 1=1
and product = #{qo.productId}
and s.product = #{qo.productId}
<if test="qo.searchVal == 'ALL' ">
</if>