iuserservice.java

来自「struts」· Java 代码 · 共 33 行

JAVA
33
字号
package com.wiely.service;

import com.wiely.vo.User;



public interface IUserService {
	/**
	 * 
	 * @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 + -
显示快捷键?