fix 修复流程定义查询错误

This commit is contained in:
gssong 2024-12-14 14:00:42 +08:00
parent 673984c482
commit 603d7a7a71

View File

@ -14,7 +14,7 @@
max(case when is_publish = 1 then version end),
max(version)
) as version
from flow_definition
from flow_definition where del_flag = '0'
group by flow_code
) b on (a.flow_code = b.flow_code and a.version = b.version)
where a.del_flag = '0'