userdao.java
来自「struts」· Java 代码 · 共 31 行
JAVA
31 行
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 + =
减小字号Ctrl + -
显示快捷键?