project-car/cloud-modules/cloud-modules-template/src/main/java/com/template/service/TemplateService.java

24 lines
606 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.template.service;
import com.template.domain.Template;
import org.apache.iotdb.rpc.IoTDBConnectionException;
import org.apache.iotdb.rpc.StatementExecutionException;
import java.sql.SQLException;
import java.util.List;
/**
* @Authorliuxinyue
* @Packagecom.template.service
* @Projectcloud-server-c
* @nameTemplateService
* @Date2024/9/20 12:12
*/
public interface TemplateService {
List<Template> templateList();
void messageParsing(String templateMessage) throws SQLException, IoTDBConnectionException, ClassNotFoundException, StatementExecutionException;
}