You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.zc.business.service;
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
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 javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 高速云事件分析Service接口
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2024-08-15
|
|
|
|
*/
|
|
|
|
public interface IDcSdhsEventService
|
|
|
|
{
|
|
|
|
AjaxResult importData(MultipartFile file) throws Exception;
|
|
|
|
|
|
|
|
AjaxResult selectRegionAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
void exportRegionAnalysis(XWPFDocument doc, DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
AjaxResult selectStationAnalysis(DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
|
|
|
|
void exportStationAnalysis(XWPFDocument doc, DcSdhsEventQuery dcSdhsEventQuery);
|
|
|
|
}
|