|
@@ -6,6 +6,8 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
import com.om.entity.vo.DiaLogQueryPageVO;
|
|
|
import com.om.utils.Result;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 服务类
|
|
@@ -18,7 +20,7 @@ public interface IDiagnosticLogService extends IService<DiagnosticLog> {
|
|
|
|
|
|
Result<DiaLogQueryPageVO> getPageList(DiaLogQueryPageDTO dto);
|
|
|
|
|
|
- Result batchDownload();
|
|
|
+ Result batchDownload(List<Integer> ids);
|
|
|
|
|
|
- Result downloadFile(DiagnosticLog diagnosticLog);
|
|
|
+ Result downloadFile(Integer id);
|
|
|
}
|