multi-system/src/main/java/com/gkhy/exam/system/mapper/InconsistentMapper.java
@@ -3,6 +3,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.system.domain.Inconsistent; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @@ -17,6 +18,6 @@ @Mapper public interface InconsistentMapper extends BaseMapper<Inconsistent> { List<Inconsistent> selectInconsistentList(Integer companyId); List<Inconsistent> selectInconsistentList(@Param("companyId") Integer companyId, @Param("year") String year); }