You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
371 B
15 lines
371 B
package com.dao;
|
|
|
|
import java.sql.SQLException;
|
|
import java.util.*;
|
|
|
|
import com.domain.Authority;
|
|
import com.domain.Dynamic;
|
|
|
|
public interface AuthorityDao extends Dao{
|
|
|
|
// public PostCheck findDyid(int Dyid) throws SQLException;
|
|
public List<Authority> listAuthority()throws SQLException;
|
|
public int removeAuthority(int Cid)throws SQLException;
|
|
|
|
} |