yangys
2025-09-15 d4ca3871c18474768c924fcbfd6e8d3178040092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
    }
}