preData的接口

web_backend_develope
chenlw 9 years ago
parent 5df53dd348
commit 2fa9695320

@ -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<PreDataInfo> findAll()throws Exception;
/**
* @param paths excel
* @return
* @throws Exception
*/
public Map<String, String> importExcel(List<String> paths)throws Exception;
/**
* @param op
* @return
*/
public List<PreDataInfo> findByParam(PagerOptions op);
}
Loading…
Cancel
Save