parent
eb35181869
commit
0b0291e786
@ -0,0 +1,26 @@
|
|||||||
|
package com.luoo.user.config;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.Setter;
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @program: luoo_parent
|
||||||
|
* @description: 参数配置
|
||||||
|
* @author: yawei.huang
|
||||||
|
* @create: 2024-08-08 08:37
|
||||||
|
**/
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@Component
|
||||||
|
@ConfigurationProperties(prefix = "env")
|
||||||
|
public class EnvConfig {
|
||||||
|
/**
|
||||||
|
* 下载地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "下载地址")
|
||||||
|
private String downloadUrl;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue