iuserservice.java
来自「本程序所写的排课」· Java 代码 · 共 14 行
JAVA
14 行
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 + =
减小字号Ctrl + -
显示快捷键?