From 26cdbc1511eeac6e6d1bb95bb5b1863b4ad7b866 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期三, 15 十一月 2023 09:05:52 +0800 Subject: [PATCH] 1. 修改风险值的查询逻辑; --- src/main/java/com/flightfeather/monitor/domain/ds1/mapper/RiskValueMapper.kt | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/RiskValueMapper.kt b/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/RiskValueMapper.kt index 0cd7327..38bbe02 100644 --- a/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/RiskValueMapper.kt +++ b/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/RiskValueMapper.kt @@ -2,7 +2,14 @@ import com.flightfeather.monitor.domain.ds1.entity.RiskValue import com.flightfeather.monitor.domain.util.MyMapper +import com.flightfeather.monitor.pojo.RiskValuePojo import org.apache.ibatis.annotations.Mapper +import sun.util.resources.LocaleData +import java.time.LocalDate +import java.util.* @Mapper -interface RiskValueMapper : MyMapper<RiskValue?> \ No newline at end of file +interface RiskValueMapper : MyMapper<RiskValue?> { + + fun queryRiskDataByMonth(mnCode: String?, month: LocalDate?, type: String?): List<RiskValuePojo?> +} \ No newline at end of file -- Gitblit v1.9.3