zmc
2023-12-14 357c5a3c4659f1fe9e46e8c20827ab757c5d3929
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?>
interface RiskValueMapper : MyMapper<RiskValue?> {
    fun queryRiskDataByMonth(mnCode: String?, month: LocalDate?, type: String?): List<RiskValuePojo?>
}