12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package cn.com.taiji.service;
- import cn.com.taiji.domain.FusionQuery;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- import java.text.ParseException;
- /**
- * @author xhl
- * @date 2023/2/6
- */
- public interface FusionAnalysisService {
- /**
- * 识别融合数据率波动问题
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void fusionAnalysisExcelOne(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- /**
- * 虚假推送问题
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void fusionAnalysisExcelTwo(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- /**
- * 天奥轨迹数据遗漏
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void tianAoLeaveOutExcel(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- /**
- * 北斗轨迹数据遗漏
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void beiDouLeaveOutExcel(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- /**
- * 海兰信1级融合轨迹数据遗漏
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void hlxyjrhLeaveOutExcel(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- /**
- * 天奥静态数据与动态轨迹融合
- * @param query
- * @param response
- * @throws IOException
- * @throws ParseException
- */
- void tianaoStaticOrDynamicLeaveOutExcel(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelThree(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- abstract void fusionAnalysisExcelFour(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalOne(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalTwo(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalThree(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalFour(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalFive(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- void fusionAnalysisExcelOriginalSix(FusionQuery query, HttpServletResponse response) throws IOException, ParseException;
- }
|