From 2a57a16c9b54e23050a4fa534abb5ebbb6e846a8 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期一, 05 八月 2024 16:03:14 +0800 Subject: [PATCH] feign获取token完善 --- ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java index 59510a7..aaf2b40 100644 --- a/ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java @@ -3,6 +3,7 @@ import annotation.AutoFill; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ycl.platform.domain.dto.CheckScoreDTO; +import com.ycl.platform.domain.dto.ScoreIndexDTO; import com.ycl.platform.domain.entity.CheckScore; import enumeration.OperationType; @@ -68,5 +69,9 @@ @AutoFill(OperationType.UPDATE) int publishCheckScore(CheckScoreDTO checkScoreDTO); - List<Map> selectScoreIndex(String tableName,Long deptId,String date); + List<Map> selectScoreIndex(ScoreIndexDTO scoreIndexDTO); + + void saveBatch(List<CheckScore> scoreList); + + List<CheckScore> selectCheckScoreMap(CheckScore checkScore); } -- Gitblit v1.8.0