package com.gkhy.exam.institutionalaccess.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.institutionalaccess.entity.ThStudent; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.web.bind.annotation.RequestMapping; import java.util.List; @RequestMapping @Mapper public interface ThStudentMapper extends BaseMapper { Integer updateBatch(@Param("list") List list); Integer insertBatch(@Param("list") List saveSudentList); List getByIdCards(@Param("idcards") List idcards); List getNameByIdcards(@Param("idcards")List idcards); }