| | |
| | | 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; |
| | |
| | | |
| | | /** |
| | | * 打印 |
| | | * @param fse 打印数据 |
| | | * @param fseOrDte 打印数据 |
| | | * @param response 响应 |
| | | * @param isConvertPdf 是否转换为pdf |
| | | * @throws BaseException |
| | | */ |
| | | void print(FieldSetEntity fse, HttpServletResponse response,boolean isConvertPdf) throws BaseException; |
| | | |
| | | void print(DataEntity fseOrDte, HttpServletResponse response, boolean isConvertPdf) throws BaseException; |
| | | } |