| | |
| | | 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; |
| | | |
| | |
| | | @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); |
| | | } |