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.
 
 
 
 
 
 

23 lines
536 B

  1. using System.IO;
  2. namespace Learun.Application.OA.File.FilePreview
  3. {
  4. public interface FilePreviewIBLL
  5. {
  6. /// <summary>
  7. /// excel文档
  8. /// <summary>
  9. /// <returns></returns>
  10. void GetExcelData(string path);
  11. /// <summary>
  12. /// word文档
  13. /// <summary>
  14. /// <returns></returns>
  15. void GetWordData(string path);
  16. /// <summary>
  17. /// ppt文档
  18. /// <summary>
  19. /// <returns></returns>
  20. void GetPptData(string path);
  21. }
  22. }