fuliqi
2024-04-30 eea5bc9be7deb06106d6274abeb29ebe4b83af44
ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java
@@ -1,16 +1,21 @@
package com.ycl.platform.mapper;
import annotation.AutoFill;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.dto.CheckScoreDTO;
import com.ycl.platform.domain.entity.CheckScore;
import enumeration.OperationType;
import java.util.List;
import java.util.Map;
/**
 * 考核积分明细Mapper接口
 * 
 * @author ruoyi
 * @date 2024-04-01
 * @date 2024-04-22
 */
public interface CheckScoreMapper
public interface CheckScoreMapper extends BaseMapper<CheckScore>
{
    /**
     * 查询考核积分明细
@@ -59,4 +64,9 @@
     * @return 结果
     */
    public int deleteCheckScoreByIds(Long[] ids);
    @AutoFill(OperationType.UPDATE)
    int publishCheckScore(CheckScoreDTO checkScoreDTO);
    List<Map> selectScoreIndex(String tableName,Long deptId,String date);
}