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.
aggregation-platform/src/com/platform/service/IScriptMakeService.java

18 lines
373 B

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<MyFilesEntity> file) throws Exception;
public List<MyFilesEntity> FindAllFiles() throws Exception;
}