shikeying
2022-09-27 fb66d5ed24e716e536543364f746a9db5aeb20a9
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
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;
    }
 
}