package com.mindskip.xzs.repository; import com.mindskip.xzs.domain.DeptQuestion; import com.mindskip.xzs.domain.vo.DeptQuestionVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author:xp * @date:2024/5/22 10:38 */ @Mapper public interface DeptQuestionMapper { void add(@Param("deptQuestions") List deptQuestions); void remove(@Param("questionId") Integer questionId); /** 查询部门信息 */ List deptByQuestionId(@Param("questionId") Integer questionId); }