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.
14 lines
334 B
14 lines
334 B
package com.dao;
|
|
import java.sql.SQLException;
|
|
import java.util.*;
|
|
import com.domain.Dynamic;
|
|
|
|
public interface DynamicDao extends Dao{
|
|
|
|
// public PostCheck findDyid(int Dyid) throws SQLException;
|
|
public List<Dynamic> listDynamic()throws SQLException;
|
|
public int removeDynamic(int Dyid)throws SQLException;
|
|
|
|
}
|
|
|