bug: 内外部会议导入排序设为会议时间倒序

This commit is contained in:
wxyclub
2023-11-23 22:50:12 +08:00
parent 8d596d0e53
commit c0d38e35d7
@@ -137,7 +137,7 @@
<foreach collection="exportIdList" item="id" open="(" close=")" separator=",">
#{id}
</foreach>
order by iom.MEETING_NAME
order by iom.MEETING_TIME desc
</select>
<select id="queryAllMeeting" resultMap="BaseResultMap">
select
@@ -150,6 +150,6 @@
where iom.VALID_FLAG = 0
<include refid="Base_Where_Clause" />
<include refid="MeetingTopic_where" />
order by iom.MEETING_NAME
order by iom.MEETING_TIME desc
</select>
</mapper>