yangys
2025-09-29 4b397a21eb979617f4fe9ff9fc1edb7a1be72900
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.springblade.mdm.config;
 
import lombok.Getter;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
@Getter
@Component
public class TaskPropertieBean {
    @Value("${task.file_scan_on_start:true}")
    //@Value("${task.fileScanOnStart:true}")
    private boolean fileScanOnStart;
}