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.
12 lines
329 B
12 lines
329 B
package com.dao;
|
|
import java.sql.SQLException;
|
|
import java.util.*;
|
|
import com.domain.Article;
|
|
|
|
public interface ArticleDao extends Dao{
|
|
|
|
// public PostCheck findDyid(int Dyid) throws SQLException;
|
|
public List<Article> listArticle()throws SQLException;
|
|
public int removeArticle(int Aid)throws SQLException;
|
|
|
|
} |