chengf
2025-09-15 ebf6117ccea680eae81a91f2fa355ce3a76eb621
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.job.importData;
 
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class ImportQueueConfig {
 
 
    @Bean
    public ImportQueue importQueue(){
        ImportQueue importQueue = new ImportQueue();
        importQueue.initExportQueue();
        return importQueue;
    }
}