// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package org.jeecg.modules.doc.component; import org.jeecg.modules.doc.vo.CopyFile; import java.io.InputStream; public abstract class Copier { public Copier() { } public abstract String copy(InputStream inputStream, CopyFile copyFile); }