对比新文件 |
| | |
| | | package com.yssh.config; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | @Data |
| | | @Component |
| | | @ConfigurationProperties(prefix = "dat") |
| | | public class DatFilePathConfig { |
| | | |
| | | private String filePath2d; |
| | | private String filePath3d; |
| | | |
| | | public String getFilePath2d() { |
| | | return filePath2d; |
| | | } |
| | | |
| | | public void setFilePath2d(String filePath2d) { |
| | | this.filePath2d = filePath2d; |
| | | } |
| | | |
| | | public String getFilePath3d() { |
| | | return filePath3d; |
| | | } |
| | | |
| | | public void setFilePath3d(String filePath3d) { |
| | | this.filePath3d = filePath3d; |
| | | } |
| | | } |