ReportParser.java 526 B

123456789101112131415161718
  1. package com.simuwang.daq.components;
  2. /**
  3. * @author wangzaijun
  4. * @date 2024/9/9 19:18
  5. * @description 报告模板解析器,计划支持pdf、word等
  6. */
  7. public interface ReportParser {
  8. /**
  9. * 报告模板解析接口
  10. * 扩展支持月报、季报和年报,解析文件格式支持pdf、word和excel
  11. *
  12. * @param fileId 文件id
  13. * @param filepath 文件路径
  14. * @param watermarkName 生成水印
  15. */
  16. void parse(Integer fileId, String filepath, String watermarkName);
  17. }