龚焕茏
2024-05-06 24c9d860ced4d058b866a9fb548a8ef1d1412c20
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);
}