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<ThStudent> {
|
int updateByIdcard(@Param("list") List<ThStudent> list);
|
|
|
}
|