派生自 projectDept/qhighschool

EricsHu
2023-05-15 962660d954ce69bc1f8d1a16024ca48b614018a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.qxueyou.scc.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
 
 
@ConfigurationProperties(prefix = SccConfig.CONFIG_PREFIX, ignoreUnknownFields = false,ignoreNestedProperties=true)
public class SccConfig {
    final static String CONFIG_PREFIX="scc";
    
    private String excludeUrl;
    
    private String resRootPath;
    
    private String productId;
    
    private String licensePublicKey;
 
    private String licensePath;
    
    private String rtmpService;
    
    private String hlsService;
    
    private String domain;
    
    private String srcLivePath;
    
    public String getDomain() {
        return domain;
    }
 
    public void setDomain(String domain) {
        this.domain = domain;
    }
 
    public String getResRootPath() {
        return resRootPath;
    }
 
    public void setResRootPath(String resRootPath) {
        this.resRootPath = resRootPath;
    }
 
    public String getExcludeUrl() {
        return excludeUrl;
    }
 
    public void setExcludeUrl(String excludeUrl) {
        this.excludeUrl = excludeUrl;
    }
 
    public String getProductId() {
        return productId;
    }
 
    public void setProductId(String productId) {
        this.productId = productId;
    }
 
    public String getLicensePublicKey() {
        return licensePublicKey;
    }
 
    public void setLicensePublicKey(String licensePublicKey) {
        this.licensePublicKey = licensePublicKey;
    }
 
    public String getRtmpService() {
        return rtmpService;
    }
 
    public void setRtmpService(String rtmpService) {
        this.rtmpService = rtmpService;
    }
 
    public String getHlsService() {
        return hlsService;
    }
 
    public void setHlsService(String hlsService) {
        this.hlsService = hlsService;
    }
 
    public String getLicensePath() {
        return licensePath;
    }
 
    public void setLicensePath(String licensePath) {
        this.licensePath = licensePath;
    }
 
    public String getSrcLivePath() {
        return srcLivePath;
    }
 
    public void setSrcLivePath(String srcLivePath) {
        this.srcLivePath = srcLivePath;
    }
    
}