using System; using System.Collections.Generic; using System.Text; namespace VOL.Core.Utilities.PDFHelper { /// /// pdf接口 /// public interface IPDFService { /// /// 创建PDF /// /// 传入html字符串 /// byte[] CreatePDF(string htmlContent); } }