xiangpei
2024-08-09 891a0a7c52c25a31f318b7ff256aa45f0600512a
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,15 @@
    @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);
    /**
     * 首页考核预警
     * @return 数据
     */
    List<Map<String, Object>> home();
}