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.

26 lines
518 B

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