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; } }