修改排序

master
wany 2024-08-13 11:17:33 +08:00
parent c5654346ab
commit eb1168223f
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ public interface OsmoticPressRMapper extends BaseMapper<OsmoticPressR> {
and t.tm <![CDATA[<=]]> #{obj.dateTimeRangeSo.end} and t.tm <![CDATA[<=]]> #{obj.dateTimeRangeSo.end}
</if> </if>
</where> </where>
order by t.tm,t.station_code desc order by t.tm desc
</script> </script>
""") """)
Page<OsmoticPressR> queryPage(Page<OsmoticPressR> page,@Param("obj") OsmoticQueryPageSo osmoticQueryPageSo); Page<OsmoticPressR> queryPage(Page<OsmoticPressR> page,@Param("obj") OsmoticQueryPageSo osmoticQueryPageSo);

View File

@ -40,7 +40,7 @@ public interface OsmoticWarnRMapper extends BaseMapper<OsmoticWarnR> {
and t.tm <![CDATA[<=]]> #{obj.dateTimeRangeSo.end} and t.tm <![CDATA[<=]]> #{obj.dateTimeRangeSo.end}
</if> </if>
</where> </where>
order by t.tm,t.station_code desc order by t.tm desc
</script> </script>
""") """)
Page<OsmoticWarnVo> queryPage(Page<OsmoticWarnVo> page,@Param("obj") WarnPageSo warnPageSo); Page<OsmoticWarnVo> queryPage(Page<OsmoticWarnVo> page,@Param("obj") WarnPageSo warnPageSo);