admindao.java

来自「基于JAVA的学生就业信息网 实现对信息浏览 检索 审核 修改和删除」· Java 代码 · 共 28 行

JAVA
28
字号
/*
 * Created on 2005-6-24
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.ug.sztz.dao.oa;

import org.ug.sztz.domain.oa.*;
import java.util.*;

/**
 * @author xix
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public interface AdminDao {
	public User insertAdmin(Object usr);
	public int  deleteAdmin(String id);
	public int  updateAdmin(Object usr);
	public List getAllAdmin();
	public List getAllAdmin(int skipResults, int maxResults);
	public User getAdmin(String id);
	public User login(Object usr);
	public int updatePassword(Object usr);
}

⌨️ 快捷键说明

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