标签修改

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

View File

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