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.
|
- using System.IO;
-
- namespace Learun.Application.OA.File.FilePreview
- {
- public interface FilePreviewIBLL
- {
- /// <summary>
- /// excel文档
- /// <summary>
- /// <returns></returns>
- void GetExcelData(string path);
- /// <summary>
- /// word文档
- /// <summary>
- /// <returns></returns>
- void GetWordData(string path);
- /// <summary>
- /// ppt文档
- /// <summary>
- /// <returns></returns>
- void GetPptData(string path);
- }
- }
|