yangys
2025-09-10 dc01577b31204fd3c80645b45d81ff693f79a985
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.springblade.mdm.program.service.programannotation;
 
import org.springblade.mdm.program.service.ProgramAnnotationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
 
@Component("defaultProcessor")
public class DefaultProcessor extends AbstractProcessor{
 
    @Autowired
    private ProgramAnnotationService programAnnotationService;
    private String controlSystem;
    private AnnotationProperties annotationPropreties;
 
 
    @Override
    public void setControlSystem(String controlSystemDictVal) {
        this.controlSystem = controlSystemDictVal;
    }
 
    @Override
    public void setAnnotationProperties(AnnotationProperties annotationProperties) {
        this.annotationPropreties= annotationProperties;
    }
 
    @Override
    public String getControlSystem() {
        return this.controlSystem;
    }
 
 
}