From 595fd39ae19c0f6bb991bbb3f331840d607699db Mon Sep 17 00:00:00 2001 From: p5cekhzoa <3257571545@qq.com> Date: Wed, 5 Jan 2022 23:59:20 +0800 Subject: [PATCH] ADD file via upload --- PostCheckDao.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 PostCheckDao.java 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; + +}