yangys
2025-09-20 fcee672452c02cc29e0e17ebc27a8c51698c6d0d
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;
    }
}