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.
17 lines
331 B
17 lines
331 B
8 months ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
/**
|
||
|
* 高速云事件分析Service接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-08-15
|
||
|
*/
|
||
|
public interface IDcSdhsEventService
|
||
|
{
|
||
|
AjaxResult importData(MultipartFile file) throws Exception;
|
||
|
|
||
|
}
|