package com.yssh.config;
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
@Data
|
@Component
|
@ConfigurationProperties(prefix = "csv")
|
public class CsvFilePathConfig {
|
private String filePath;
|
|
public String getFilePath() {
|
return filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
private String vocPath;
|
|
public String getVocPath() {
|
return vocPath;
|
}
|
|
public void setVocPath(String vocPath) {
|
this.vocPath = vocPath;
|
}
|
}
|