shikeying
2022-09-30 a78b76b664830a1ac691396d5cb64166c6919ff1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.iplatform.recvideo.scheduler;
 
public class VideoSearchMeta {
 
    private String batchId;
 
    public String getBatchId() {
        return batchId;
    }
 
    public VideoSearchMeta(String batchId){
        this.batchId = batchId;
    }
 
}