From 2fa96953200c52670f9212728f05ea7a8c689804 Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Fri, 21 Oct 2016 09:03:13 +0800 Subject: [PATCH] =?UTF-8?q?preData=E7=9A=84=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/service/IPreDataInfoService.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/com/platform/service/IPreDataInfoService.java diff --git a/src/com/platform/service/IPreDataInfoService.java b/src/com/platform/service/IPreDataInfoService.java new file mode 100644 index 00000000..1a09e1fe --- /dev/null +++ b/src/com/platform/service/IPreDataInfoService.java @@ -0,0 +1,29 @@ +package com.platform.service; + +import java.util.List; +import java.util.Map; + +import com.platform.entities.PagerOptions; +import com.platform.entities.PreDataInfo; + +public interface IPreDataInfoService { + + /** 查询所有 存在的 信息 + * @return 待下发的信息(包括采集和不采集的系统) + * @throws Exception + */ + public List findAll()throws Exception; + + /** 导入 + * @param paths 导入的excel路径 + * @return + * @throws Exception + */ + public Map importExcel(List paths)throws Exception; + + /** 条件查询 + * @param op + * @return + */ + public List findByParam(PagerOptions op); +}