iuserinfodao.java

来自「本平台是以web2.0为基本的标准」· Java 代码 · 共 28 行

JAVA
28
字号
package com.afuer.hib.dao.orgModel.Idao;

import java.io.Serializable;
import java.util.List;

import com.afuer.hib.form.UserInfo;
import org.springframework.dao.DataAccessException;

public interface IUserInfoDao {
	Serializable saveUserInfo(UserInfo userInfo) throws DataAccessException;

	void updateUserInfo(UserInfo userInfo) throws DataAccessException;

	List find(UserInfo userInfo) throws DataAccessException;

	List find(Integer id) throws DataAccessException;

	UserInfo get(Integer id) throws DataAccessException;

	List findAll() throws DataAccessException;

	List findFreeUsers() throws DataAccessException;

	UserInfo getUserInfo( String loginname) throws DataAccessException;
   Integer getAccounts( String loginName, String password)throws DataAccessException;
	void deleteUserInfo(Integer id) throws DataAccessException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?