package com.gkhy.exam.institutionalaccess.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.institutionalaccess.entity.ThBatch; import com.gkhy.exam.institutionalaccess.model.query.ThBatchQuery; import com.gkhy.exam.institutionalaccess.model.vo.ThBatchVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository @Mapper public interface ThBatchMapper extends BaseMapper { List listByPage(@Param("query") ThBatchQuery query); List getByUuids(@Param("batchUuids") List batchUuids); Integer insertBatch(@Param("batchList") List batchList); Integer updateBatch(@Param("batchList") List batchList); List getBatchNameByUuids(@Param("batchUuids")List batchUuids); }