package com.whyc.dto; import java.util.List; public class Mp4FileDTO { private List paths; private String rootPath; public List getPaths() { return paths; } public void setPaths(List paths) { this.paths = paths; } public String getRootPath() { return rootPath; } public void setRootPath(String rootPath) { this.rootPath = rootPath; } }