yangys
2025-09-19 b0d0191a88912b352385349461b500a4964d693b
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;
}