📄 userdao.java
字号:
package com.wiely.dao;
import com.wiely.vo.User;
public interface UserDAO {
/**
*
* @param user
* @return
* @describe the method login user and return User object to provide the action
*/
public User login(User user);
/**
*
* @param user
* @return
* @describe the new user register and return user
*/
public User register(User user);
/**
*
* @param user
* @return
* @describe find the special user according the userTO
*/
public int findUser(User user);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -