Blame view

src/main/java/com/huaheng/framework/config/HuaHengConfig.java 1.65 KB
tangying authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.huaheng.framework.config;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 * 读取项目相关配置
 * 
 * @author huaheng
 */
@Component
@ConfigurationProperties(prefix = "huaheng")
public class HuaHengConfig
{
    /** 项目名称 */
    private String name;
    /** 版本 */
    private String version;
    /** 版权年份 */
    private String copyrightYear;
    /** 上传路径 */
    private static String profile;
游杰 authored
23
24
    /** 上传路径 */
    private static String apkpath;
tangying authored
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
    /** 获取地址开关 */
    private static boolean addressEnabled;

    public String getName()
    {
        return name;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public String getVersion()
    {
        return version;
    }

    public void setVersion(String version)
    {
        this.version = version;
    }

    public String getCopyrightYear()
    {
        return copyrightYear;
    }

    public void setCopyrightYear(String copyrightYear)
    {
        this.copyrightYear = copyrightYear;
    }

    public static String getProfile()
    {
        return profile;
    }

    public void setProfile(String profile)
    {
        HuaHengConfig.profile = profile;
    }
游杰 authored
68
69
70
71
72
73
74
75
    public static String getApkpath() {
        return apkpath;
    }

    public void setApkpath(String apkpath) {
        HuaHengConfig.apkpath = apkpath;
    }
tangying authored
76
77
78
79
80
81
82
83
84
85
86
    public static boolean isAddressEnabled()
    {
        return addressEnabled;
    }

    public void setAddressEnabled(boolean addressEnabled)
    {
        HuaHengConfig.addressEnabled = addressEnabled;
    }

}