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;
|
}
|
|
|
}
|