From df500bf6ee29b3fead5b920ed366230b62a4c7ee Mon Sep 17 00:00:00 2001 From: zmc <zmc_li@foxmail.com> Date: 星期三, 22 十一月 2023 09:57:42 +0800 Subject: [PATCH] 1.新增了站点信息查询的接口 2.修改了扬尘已有接口的参数以及sql语句 3.修改了用户登陆接口 --- src/main/java/com/flightfeather/monitor/service/RiskValueService.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/flightfeather/monitor/service/RiskValueService.java b/src/main/java/com/flightfeather/monitor/service/RiskValueService.java index 5d39c8a..f1453ac 100644 --- a/src/main/java/com/flightfeather/monitor/service/RiskValueService.java +++ b/src/main/java/com/flightfeather/monitor/service/RiskValueService.java @@ -1,6 +1,7 @@ package com.flightfeather.monitor.service; import com.flightfeather.monitor.domain.ds1.entity.RiskValue; +import com.flightfeather.monitor.pojo.RiskValuePojo; import java.util.List; @@ -12,5 +13,5 @@ * @param type * @return */ - List<RiskValue> queryRiskDataByMonth(String mnCode, String month, String type); + List<RiskValuePojo> queryRiskDataByMonth(String mnCode, String month, String type); } -- Gitblit v1.9.3