mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 02:39:37 +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;
|
|
} |