354798ggg
2023-05-16 68aae14c5c33b525effd4fe18a6ce14ea6ec90ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.product.print.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
import javax.servlet.http.HttpServletResponse;
 
 
/**
 * @ClassName IPrintConfigService
 * @Description 打印实现 接口
 * @Author cheng
 * @Date 2021/12/1 9:46
 */
public interface IPrintRealizeService {
 
    void printWord(FieldSetEntity fse, HttpServletResponse response) throws BaseException;
    
    void print(FieldSetEntity fse, HttpServletResponse response) throws BaseException;
 
}