using System.IO; namespace Learun.Application.OA.File.FilePreview { public interface FilePreviewIBLL { /// /// excel文档 /// /// void GetExcelData(string path); /// /// word文档 /// /// void GetWordData(string path); /// /// ppt文档 /// /// void GetPptData(string path); } }