diff --git a/src/com/platform/dao/DataInfoDao.java b/src/com/platform/dao/DataInfoDao.java index d1c3fba8..feef60a0 100644 --- a/src/com/platform/dao/DataInfoDao.java +++ b/src/com/platform/dao/DataInfoDao.java @@ -22,6 +22,8 @@ public interface DataInfoDao { List findAll()throws Exception; + List findByParam(DataInfoEntity data)throws Exception; + int removes(List list)throws Exception; int save(DataInfoEntity data) throws Exception; diff --git a/src/com/platform/dao/PreDataInfoDao.java b/src/com/platform/dao/PreDataInfoDao.java index e1b03d2b..03f7289f 100644 --- a/src/com/platform/dao/PreDataInfoDao.java +++ b/src/com/platform/dao/PreDataInfoDao.java @@ -24,6 +24,8 @@ public interface PreDataInfoDao { List findAll()throws Exception; + List findAllCollect()throws Exception; + void insertBatch(List list) throws Exception; int update(PreDataInfo data) throws Exception;