| | |
| | | public class SubmissionMediaResponse { |
| | | private Long id; |
| | | private String name; // 文件名 |
| | | private String path; // 文件路径 |
| | | private String url; // 文件URL |
| | | private String fullUrl; // 完整文件URL |
| | | private String fullThumbUrl; // 完整缩略图URL |
| | | private String fileExt; // 文件扩展名 |
| | | private Long fileSize; // 文件大小 |
| | | private Integer mediaType; // 媒体类型(1=图片,2=视频,3=文档等) |
| | |
| | | public String getName() { return name; } |
| | | public void setName(String name) { this.name = name; } |
| | | |
| | | public String getPath() { return path; } |
| | | public void setPath(String path) { this.path = path; } |
| | | |
| | | public String getUrl() { return url; } |
| | | public void setUrl(String url) { this.url = url; } |
| | | |
| | | public String getFullUrl() { return fullUrl; } |
| | | public void setFullUrl(String fullUrl) { this.fullUrl = fullUrl; } |
| | | |
| | | public String getFullThumbUrl() { return fullThumbUrl; } |
| | | public void setFullThumbUrl(String fullThumbUrl) { this.fullThumbUrl = fullThumbUrl; } |
| | | |
| | | public String getFileExt() { return fileExt; } |
| | | public void setFileExt(String fileExt) { this.fileExt = fileExt; } |
| | | |