标签修改

This commit is contained in:
zhangheng 2024-07-03 18:19:42 +08:00
parent 1d46e3c1e3
commit 77b2d8ef4b
2 changed files with 9 additions and 4 deletions

View File

@ -209,9 +209,13 @@
<select id="selectTaskPartitionList"
resultType="com.xinelu.manage.domain.taskpartitiondict.TaskPartitionDict">
select * from task_partition_dict where task_type_id in
select * from task_partition_dict
<where>
task_type_id in
<foreach item="ids" collection="list" open="(" separator="," close=")">
#{ids}
</foreach>
</where>
order by task_partition_sort
</select>
</mapper>

View File

@ -142,5 +142,6 @@
select id taskTypeId,
task_type_name
from task_type_dict
order by task_type_sort
</select>
</mapper>