01 | package com.yyx.dao; |
02 |
03 | import java.util.List; |
04 |
05 | import com.yyx.po.Student; |
06 |
07 | public interface StudentDao { |
08 | public Student findStudentById(Integer id); |
09 | // public void deleteStudentById(Integer id); |
10 | public int deleteStudentById(Integer id); |
11 | public void updateStudentById(Student student); |
12 | public void addStudent(Student student); |
13 | public List<Student> findall(); |
14 | } |

Rubiai LV1
2024年12月26日
Administration620 LV1
2024年12月9日
111rose LV1
2024年11月22日
star33xxz LV1
2024年6月28日
2032867896 LV1
2024年6月20日
hongdongdong LV14
2024年6月18日
卢旯旯 LV4
2024年6月10日
yqlllll LV2
2024年6月4日
minjiang110 LV3
2024年1月3日
wwwww816 LV5
2023年12月19日