“djh”
5 天以前 5ca4ab349909030e77354832287f2d6a2c80e119
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
package com.gkhy.exam.common.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * @Author wsl
 * @Version 1.0
 */
@Data
@Component
@ConfigurationProperties(prefix = "m3u8.convertor")
public class FilePathConfig {
    /**
    * 文件上传临时路径 (本地文件转换不需要)
    */
    private String tempPath = "/upload/tmp/";
 
    /**
     * m3u8文件转换后,储存的根路径
     */
    private String basePath = "/upload/m3u8/";
 
    /**
     * m3u8文件转换后,储存的根路径
     */
    private String bigPath = "/upload/big/";
 
    private String proxy = "m3u8/";
}