roledao.java

来自「飞机订票系统」· Java 代码 · 共 33 行

JAVA
33
字号
/*
 * Created on 2006-2-13
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.appfuse.dao;

import java.util.List;
import org.appfuse.model.Role;
import org.appfuse.util.exception.AppDAOException;

/**
 * @author user
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public interface RoleDAO
    extends DAO {
    public Role getRole(int roleid) throws AppDAOException;

    public List getRoles(Role role) throws AppDAOException;

    public void saveRole(final Role role) throws AppDAOException;

    public void removeRole(int roleid) throws AppDAOException;

    public List getStaffs(int roleid) throws AppDAOException;

    public List getRoleAuth(Role role) throws AppDAOException;
}

⌨️ 快捷键说明

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