taskStatus

This commit is contained in:
2025-01-03 15:31:40 +08:00
parent c376e3b1b6
commit a91389ca99
19 changed files with 187 additions and 67 deletions

View File

@@ -105,4 +105,9 @@
where t.scenic_id = #{scenicId} and pid = 0 and t.status = 1
order by sort
</select>
<select id="listEnabledTemplateIdByScenicId" resultType="java.lang.Long">
select t.id
from template t
where t.scenic_id = #{scenicId} and t.pid = 0 and t.status = 1
</select>
</mapper>