|
|
|
package com.zc.business.service;
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
import com.zc.business.domain.DcSdhsEvent;
|
|
|
|
import com.zc.business.domain.DcSdhsEventQuery;
|
|
|
|
import org.apache.poi.xwpf.usermodel.XWPFDocument;
|
|
|
|
import com.zc.business.domain.DcSdhsEventQuery;
|
|
|
|
import org.apache.poi.xwpf.usermodel.XWPFDocument;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 高速云事件分析Service接口
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2024-08-15
|
|
|
|
*/
|
|
|
|
public interface IDcSdhsEventService
|
|
|
|
{
|
|
|
|
// AjaxResult importData(MultipartFile file) throws Exception;
|
|
|
|
AjaxResult importData(String fileName,String fileUrl) throws Exception;
|
|
|
|
|
|
|
|
AjaxResult getFileInfo();
|
|
|
|
|
|
|
|
AjaxResult selectRegionAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
void exportRegionAnalysis(XWPFDocument doc, DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 事故车型
|
|
|
|
* @param newDoc
|
|
|
|
* @param dcSdhsEventQuery
|
|
|
|
*/
|
|
|
|
void exportAccidentModelAnalysis(XWPFDocument newDoc,DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 事故车型分析
|
|
|
|
* @param dcSdhsEventQuery
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
Map<String, Map<String, Integer>> accidentModelAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 事故时间分析
|
|
|
|
* @param dcSdhsEventQuery
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
Map<String, Long> accidentTimeAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 事故时间
|
|
|
|
* @param newDoc
|
|
|
|
* @param dcSdhsEventQuery
|
|
|
|
*/
|
|
|
|
void exportAccidentTimeAnalysis(XWPFDocument newDoc,DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
AjaxResult selectStationAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
void exportStationAnalysis(XWPFDocument doc, DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
AjaxResult selectAccidentType(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
void exportAccidentType(XWPFDocument doc, DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
AjaxResult selectWeather();
|
|
|
|
}
|