package com.platform.service; import java.util.List; import com.platform.entities.MyFilesEntity; public interface IScriptMakeService { public int makeCfg() throws Exception; public int makeXml() throws Exception; public int moveFiles(List file) throws Exception; public List FindAllFiles() throws Exception; }