⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usermanagedaointerface.java

📁 hibernate项目实践
💻 JAVA
字号:
package com.px1987.webbbs.dao;
import java.util.*;
import com.px1987.webbbs.exception.WebBBSException;
public interface UserManageDAOInterface 
{
//	下面的方法是针对UserInfoBasePO类的	
	public ArrayList selectAllBaseUserInfo() throws    WebBBSException;
	public ArrayList selectSomeBaseUserInfo(String HQLSelect) throws    WebBBSException;
	
//下面的方法是针对UserInfoPO类的
	public ArrayList selectAllUserInfo() throws    WebBBSException;
	public ArrayList selectSomeUserInfo(String HQLSelect) throws    WebBBSException;
	public ArrayList selectAllRegisterUserNameInfo(String userName) throws    WebBBSException;
	
	public UserInfoPO selectOneUserInfo(String registerUserID) throws    WebBBSException;
	public UserInfoPO selectOneUserInfoByName(String userName) throws    WebBBSException;
	
	public ArrayList selectUserSomePropertyInfo(String HQLSelect) throws WebBBSException; 
    public UserInfoPO  SelectOneUserInfoData(String userName, String userPassWord) throws WebBBSException;
    
    
	public int selectTotalRegisterUserCounter() throws WebBBSException;
	
	public boolean insertOneUserInfo(UserInfoPO oneRegisterUserInfo) throws WebBBSException;
	public boolean updateOneUserInfo(UserInfoPO oneUpdatedRegisterUserInfo) throws WebBBSException;
	public boolean updateOneUserPassWord(String newPassWord, String registerUserId) throws WebBBSException;
	public boolean deleteOneUserInfo(String registerUserID) throws WebBBSException;
	public boolean  BatchDeleteUserInfo(ArrayList deletedUserIDs) throws WebBBSException;

}

⌨️ 快捷键说明

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