| | |
| | | |
| | | private String targetType; // 目标类型:player, activity_player |
| | | private Long targetId; // 目标ID |
| | | private String url; // COS文件URL |
| | | private String thumbUrl; // 缩略图URL(可选) |
| | | private String path; // COS文件路径 |
| | | private String thumbPath; // 缩略图路径(可选) |
| | | private String fileName; // 文件名 |
| | | private String fileExt; // 文件扩展名 |
| | | private Long fileSize; // 文件大小(字节) |
| | |
| | | this.targetId = targetId; |
| | | } |
| | | |
| | | public String getUrl() { |
| | | return url; |
| | | public String getPath() { |
| | | return path; |
| | | } |
| | | |
| | | public void setUrl(String url) { |
| | | this.url = url; |
| | | public void setPath(String path) { |
| | | this.path = path; |
| | | } |
| | | |
| | | public String getThumbUrl() { |
| | | return thumbUrl; |
| | | public String getThumbPath() { |
| | | return thumbPath; |
| | | } |
| | | |
| | | public void setThumbUrl(String thumbUrl) { |
| | | this.thumbUrl = thumbUrl; |
| | | public void setThumbPath(String thumbPath) { |
| | | this.thumbPath = thumbPath; |
| | | } |
| | | |
| | | public String getFileName() { |