|
|
@@ -16,6 +16,7 @@ import com.goafanti.common.dao.TOrderTaskMapper;
|
|
|
import com.goafanti.common.model.TOrderMid;
|
|
|
import com.goafanti.common.model.TOrderTask;
|
|
|
import com.goafanti.common.utils.excel.Excel;
|
|
|
+import com.goafanti.common.utils.pdf.PDFUtils;
|
|
|
import com.goafanti.order.bo.TOrderTaskBo;
|
|
|
import com.goafanti.order.enums.NewProjectStatus;
|
|
|
import com.goafanti.order.enums.OrderImgEnums;
|
|
|
@@ -786,5 +787,11 @@ public class PublicController extends CertifyApiController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @RequestMapping("/testPDF")
|
|
|
+ public String testPDF(MultipartFile file) {
|
|
|
+ PDFUtils pdfUtils=new PDFUtils();
|
|
|
+ pdfUtils.loadPDF(file);
|
|
|
+ return "OK";
|
|
|
+ }
|
|
|
|
|
|
}
|