package com.iplatform.recvideo;
|
|
/**
|
* 要获取的视频记录。
|
* @author 时克英
|
* @date 2022-09-26
|
*/
|
public class VideoLoadInfo {
|
|
private String srcVideoId; // 视频原始ID
|
|
private String videoSrcPath; // 在原服务器路径
|
|
private String videoDestPath; // 要拷贝到目的服务器路径
|
|
private String batchId; // 批次ID,一般是时间
|
|
private long userId; // 用户ID
|
|
public long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(long userId) {
|
this.userId = userId;
|
}
|
|
|
public String getSrcVideoId() {
|
return srcVideoId;
|
}
|
|
public void setSrcVideoId(String srcVideoId) {
|
this.srcVideoId = srcVideoId;
|
}
|
|
public String getVideoSrcPath() {
|
return videoSrcPath;
|
}
|
|
public void setVideoSrcPath(String videoSrcPath) {
|
this.videoSrcPath = videoSrcPath;
|
}
|
|
public String getVideoDestPath() {
|
return videoDestPath;
|
}
|
|
public void setVideoDestPath(String videoDestPath) {
|
this.videoDestPath = videoDestPath;
|
}
|
|
public String getBatchId() {
|
return batchId;
|
}
|
|
public void setBatchId(String batchId) {
|
this.batchId = batchId;
|
}
|
|
}
|