whycxzp
2025-04-14 6cf9c5edbe3ae92e7ec90bea498e43d8da804e41
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
package com.whyc.dto;
 
import java.util.List;
 
public class Mp4FileDTO {
 
    private List<String> paths;
    private String rootPath;
 
    public List<String> getPaths() {
        return paths;
    }
 
    public void setPaths(List<String> paths) {
        this.paths = paths;
    }
 
    public String getRootPath() {
        return rootPath;
    }
 
    public void setRootPath(String rootPath) {
        this.rootPath = rootPath;
    }
}