mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 06:09:36 +08:00
24 lines
402 B
Java
24 lines
402 B
Java
![]() |
package com.ics.system.config;
|
||
|
|
||
|
import lombok.Data;
|
||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
/**
|
||
|
* 文件配置
|
||
|
*
|
||
|
*/
|
||
|
@Data
|
||
|
@Component
|
||
|
@ConfigurationProperties(prefix = "dfs")
|
||
|
public class DfsConfig {
|
||
|
/**
|
||
|
* 路径
|
||
|
*/
|
||
|
private String path;
|
||
|
|
||
|
/**
|
||
|
* 域名
|
||
|
*/
|
||
|
private String domain;
|
||
|
}
|