📄 iuserservice.java
字号:
package com.briup.service;import com.briup.bean.Student;import com.briup.bean.User;import com.briup.common.exception.UserServiceException;public interface IUserService { public User login(String username, String password) throws UserServiceException; public void register(Student student, User user) throws UserServiceException; public void update(Student student, User user) throws UserServiceException; public void saveStudent(Student student) throws UserServiceException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -