完成了修改

This commit is contained in:
2025-12-28 21:58:11 +08:00
parent 7b874c3a49
commit 9aa97edb0e
6 changed files with 176 additions and 8 deletions

View File

@@ -45,4 +45,7 @@ public class QuestionsService {
public void delete(Integer id){
questionsDao.delete(id);
}
public boolean update(Questions question){
return questionsDao.update(question);
}
}