6c
10 天以前 cfd0903dc0cfc7ffd39c2caa101f31a50441d39c
src/main/java/com/product/print/service/ide/IPrintRealizeService.java
@@ -1,6 +1,6 @@
package com.product.print.service.ide;
import com.product.core.entity.FieldSetEntity;
import com.product.core.entity.DataEntity;
import com.product.core.exception.BaseException;
import javax.servlet.http.HttpServletResponse;
@@ -14,8 +14,12 @@
 */
public interface IPrintRealizeService {
   void printWord(FieldSetEntity fse, HttpServletResponse response) throws BaseException;
    void print(FieldSetEntity fse, HttpServletResponse response) throws BaseException;
    /**
     * 打印
     * @param fseOrDte 打印数据
     * @param response  响应
     * @param isConvertPdf  是否转换为pdf
     * @throws BaseException
     */
    void print(DataEntity fseOrDte, HttpServletResponse response, boolean isConvertPdf) throws BaseException;
}