Commit 41052a89 by zhangkb

修改短板结果按照时间降序排序

parent 430419fd
...@@ -136,7 +136,7 @@ public class IndicatorsReportService { ...@@ -136,7 +136,7 @@ public class IndicatorsReportService {
indReportData.setCatalogType(driveIndDef.getCatalogId()==null? "":driveIndDef.getCatalogId().toString()); indReportData.setCatalogType(driveIndDef.getCatalogId()==null? "":driveIndDef.getCatalogId().toString());
} }
indReportData.setCompareObj(calData.getCompareObj());//对标对象 indReportData.setCompareObj(calData.getCompareObj());//对标对象
indReportData.setCompareObjDesc(calData.getCompareObj());//对标对象描述 indReportData.setCompareObjDesc(calData.getCompareObjDesc());//对标对象描述
indReportData.setCompareDate(calData.getDate()); indReportData.setCompareDate(calData.getDate());
indReportData.setCurrentValue(calData.getValue()); indReportData.setCurrentValue(calData.getValue());
indReportData.setCurrentRank(calData.getRank().toString()); indReportData.setCurrentRank(calData.getRank().toString());
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
<foreach item="id" collection="codes" open="(" close=")" separator=","> <foreach item="id" collection="codes" open="(" close=")" separator=",">
#{id} #{id}
</foreach> </foreach>
order by last_update_time desc
limit #{start},#{end} limit #{start},#{end}
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment