userdao.java

来自「一个用struts tiles的在线影院web系统」· Java 代码 · 共 20 行

JAVA
20
字号
package com.eline.vod.security.dao;

import java.sql.SQLException;

import com.blue.web.common.exceptions.DAOSysException;
import com.blue.web.common.model.Page;
import com.eline.vod.security.model.User;

public interface UserDAO {
	User getAnonymousUser() throws DAOSysException, SQLException;

	User getUser(int userID, String userName, boolean isOnline, String lastAction) throws DAOSysException, SQLException;
	
	User getUserByMobilePIN(String mobilePIN) throws DAOSysException, SQLException;

	Page getUsers(int pageIndex, int pageSize, int sortUsersBy, int sortOrder, String usernameFilter, boolean includeEmailInFilter, int accountStatus) throws DAOSysException, SQLException;
	
	public int createUser(User user) throws DAOSysException, SQLException;
}

⌨️ 快捷键说明

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