qirong
2023-06-20 e40857210a448e805913ed66f3b378d2a501c58f
src/main/java/com/mindskip/xzs/repository/QuestionSubjectMapper.java
@@ -2,6 +2,7 @@
import com.mindskip.xzs.domain.QuestionSubject;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -13,7 +14,7 @@
     * @param ids
     * @return
     */
    Integer removes(Integer[] ids);
    Integer removes(@Param("ids") Integer[] ids);
    /**
     *
@@ -24,4 +25,8 @@
    Integer saves(List<QuestionSubject> list);
    Integer removeQuestionId(Integer questionId);
    Integer removeSubjectId(Integer subjectId);
    List<QuestionSubject> getSubject(Integer id);
}