yangys
2024-03-27 44c06e730b392ca2160a843cf54e221156a2b1a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.qianwen.core.boot.props;
 
import com.qianwen.core.tool.utils.PathUtil;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.lang.Nullable;
 
@ConfigurationProperties("blade.upload")
@RefreshScope
/* loaded from: blade-core-boot-9.3.0.0-SNAPSHOT.jar:org/springblade/core/boot/props/BladeUploadProperties.class */
public class BladeUploadProperties {
    @Nullable
    private String savePath = PathUtil.getJarPath();
 
    public void setSavePath(@Nullable final String savePath) {
        this.savePath = savePath;
    }
 
    @Nullable
    public String getSavePath() {
        return this.savePath;
    }
}