package com.fdkankan.extend.service; import com.fdkankan.web.response.ResultData; import javax.crypto.BadPaddingException; import javax.crypto.IllegalBlockSizeException; import javax.crypto.NoSuchPaddingException; import java.io.IOException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.spec.InvalidKeySpecException; import java.util.List; public interface ITowerService { public String packSceneDataHandler(String num, String title) throws Exception; public void packSceneData(Long companyId, List nums); public void dataPush(String num, String title, String sceneId, String roomId, String zipPath) throws NoSuchPaddingException, NoSuchAlgorithmException, IOException, BadPaddingException, IllegalBlockSizeException, InvalidKeyException, InvalidKeySpecException, Exception; }