- package com.fdkk.fdkkmeta.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- @Data
- @Component
- @ConfigurationProperties(prefix = "fdkk")
- public class MetaConfig {
- private String freespacePath;
- }
|