package com.ycl.jxkg.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ycl.jxkg.domain.entity.TaskExamCustomerAnswer; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface TaskExamCustomerAnswerMapper extends BaseMapper { TaskExamCustomerAnswer getByTUid(@Param("tid") Integer tid, @Param("uid") Integer uid); List selectByTUid(@Param("taskIds") List taskIds, @Param("uid") Integer uid); }