yangys
2025-09-29 4c7296d45efe849dc70a3b2e2240c905481a91c9
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;
}