package org.springblade.mdm.program.service.programannotation;
|
|
import lombok.Data;
|
|
@Data
|
public class AnnotationProperties {
|
private String beanId;
|
private int programNameLineIndex;
|
private int sendPathLineIndex;
|
private int statusLineIndex;
|
private int deviationLineIndex;
|
|
public static AnnotationProperties getDefault(){
|
AnnotationProperties def = new AnnotationProperties();
|
def.setProgramNameLineIndex(1);
|
def.setSendPathLineIndex(2);
|
def.setStatusLineIndex(3);
|
def.setDeviationLineIndex(4);
|
return def;
|
}
|
}
|