package com.WR.StudentMS.dao; import java.util.List; import com.WR.StudentMS.model.Registrationwmm; //用户管理DAO public interface RegistrationDaowmm { // 查询所有的学籍信息 List findAll(); // 根据主键查询学籍信息 Registrationwmm findById(String studentid); // 创建学籍信息 int create(Registrationwmm xuejim); // 修改学籍信息 int modify(Registrationwmm xuejim); // 删除学籍信息 int remove(Registrationwmm xuejim); }