|
1234567891011121314151617181920212223 |
- 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);
- }
- }
|