派生自 projectDept/qhighschool

胡仁荣
2023-08-04 2174b22bbbb45284765a23b8189df59583c65d29
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
package com.qxueyou.scc.teach.live.utils;
 
import java.io.Serializable;
 
public class FfmpegFileVO implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    /**文件输入路径*/
    private String inputPath = "";
    
    /**文件输出路径*/
    private String outputPath = "";
 
    public String getInputPath() {
        return inputPath;
    }
 
    public void setInputPath(String inputPath) {
        this.inputPath = inputPath;
    }
 
    public String getOutputPath() {
        return outputPath;
    }
 
    public void setOutputPath(String outputPath) {
        this.outputPath = outputPath;
    }
    
}