yangys
2025-09-19 e70c88930c51c7afeb3cc2ac72fbe6fad86a942c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.springblade.mdm.program.service.programannotation;
 
import org.springblade.system.pojo.entity.DictBiz;
 
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
 
public interface AnnotationProcessor {
 
 
    void setControlSystem(String controlSystemDictVal);
    void setAnnotationProperties(AnnotationProperties annotationProperties);
    String getControlSystem();
 
    InputStream putSendPathAnnotation(String sendPath, InputStream inputStream, List<DictBiz> annoDicts) throws IOException;
 
    InputStream putAnnotation(AnnotationData annoData, InputStream inputStream) throws IOException;
 
    InputStream putFilenameAnnotation(String programName, InputStream inputStream) throws IOException;
 
    AnnotationProperties getAnnotationProperties();
    //InputStream puttSendPathAnnotation(String programName, InputStream inputStream) throws IOException;
}