diff --git a/PostCheckDao.java b/PostCheckDao.java new file mode 100644 index 0000000..da01243 --- /dev/null +++ b/PostCheckDao.java @@ -0,0 +1,12 @@ +package com.dao; +import java.sql.SQLException; +import java.util.*; +import com.domain.PostCheck; + +public interface PostCheckDao extends Dao{ + +// public PostCheck findDyid(int Dyid) throws SQLException; + public List listPostCheck()throws SQLException; + public int removePostCheck(int Dyid)throws SQLException; + +}