郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.gk.hotwork.Service;
 
 
import com.gk.hotwork.Domain.Utils.WordTemplate;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.xmlbeans.XmlException;
 
import java.io.IOException;
import java.util.List;
import java.util.Map;
 
public interface WordService {
 
    void generateAllTaskCert(Map<String,Map<String, List<String>>>  taskTypeMap,
                             Map<String,Map<String,List<WordTemplate.Attribute>>> type,
                             Map<String, WordTemplate.Table> tables,
                             Map<String, WordTemplate.MergeTable> mergeTables,
                             Map<String, String> simpleData,
                             Map<String,String> nameMapGraph,
                             WordTemplate template) throws IOException, XmlException, InvalidFormatException, InterruptedException;
}