Browse Source

refactor(runeconomy-xk): 优化 URL 映射和数据查询

- 在 ProEconEquipmentInfoDayTopServiceImpl 中优化数据查询逻辑,添加按记录日期排序
xushili 1 month ago
parent
commit
b2508244b4

+ 1 - 1
runeconomy-xk/src/main/java/com/gyee/runeconomy/controller/ProBasicEquipmentController.java

@@ -37,7 +37,7 @@ public class ProBasicEquipmentController {
      * @param type
      * @return
      */
-    @GetMapping("equipment-list")
+    @GetMapping("/equipment-list")
     @ResponseBody
     @CrossOrigin(origins = "*", maxAge = 3600)
     public R getWtPowerCurveFittingList(

+ 1 - 2
runeconomy-xk/src/main/java/com/gyee/runeconomy/service/auto/impl/ProEconEquipmentInfoDayTopServiceImpl.java

@@ -219,7 +219,6 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
 
         QueryWrapper<ProEconEquipmentInfoDayTop> qw = new QueryWrapper<>();
 
-
         if (StringUtils.isNotEmpty(windturbineId)) {
             qw.lambda().eq(ProEconEquipmentInfoDayTop::getWindturbineId, windturbineId);
         }
@@ -231,7 +230,7 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
             qw.lambda().ge(ProEconEquipmentInfoDayTop::getRecordDate, DateUtils.parseDate(beginDate)).
                     le(ProEconEquipmentInfoDayTop::getRecordDate, DateUtils.parseDate(endDate));
 
-
+        qw.orderByAsc("record_date");
         List<ProEconEquipmentInfoDayTop> list = baseMapper.selectList(qw);
         list.stream().forEach(i -> {
             i.setNemCode(CacheContext.wtmap.get(i.getWindturbineId()).getAname());