You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
671 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package mvc»ù´¡1;
/**
* @author The Administrator
* @version 1.0
* @created 26-10ÔÂ-2025 22:49:47
*/
class StudentDAO {
/**
* æ¨¡æŸæ•°æ<C2B0>®åº“(实际开å<E282AC>中是数æ<C2B0>®åº“连接ï¼?
*/
private static List<Student> studentDB = new ArrayList<>();
public StudentDAO(){
}
public void finalize() throws Throwable {
}
/**
* 查询所有学�
*/
public List<Student> findAll(){
return null;
}
/**
* æ ¹æ<C2B9>®ID查询学生
*
* @param id
*/
public Student findById(int id){
return null;
}
/**
* æ<>å…¥æ°å­¦ç”?
*
* @param s
*/
public void insert(Student s){
}
}//end StudentDAO