parent
5383e90103
commit
d7485f796f
@ -0,0 +1,22 @@ |
||||
package org.example.models; |
||||
|
||||
public class LikeRequest { |
||||
String username; |
||||
Long postId; |
||||
|
||||
public String getUsername() { |
||||
return username; |
||||
} |
||||
|
||||
public void setUsername(String username) { |
||||
this.username = username; |
||||
} |
||||
|
||||
public Long getPostId() { |
||||
return postId; |
||||
} |
||||
|
||||
public void setPostId(Long postId) { |
||||
this.postId = postId; |
||||
} |
||||
} |
@ -0,0 +1,40 @@ |
||||
package org.example.objects; |
||||
|
||||
import org.springframework.web.multipart.MultipartFile; |
||||
|
||||
public class PostDTO { |
||||
String title,content; |
||||
MultipartFile imageFile,videoFile; |
||||
|
||||
public String getTitle() { |
||||
return title; |
||||
} |
||||
|
||||
public void setTitle(String title) { |
||||
this.title = title; |
||||
} |
||||
|
||||
public String getContent() { |
||||
return content; |
||||
} |
||||
|
||||
public void setContent(String content) { |
||||
this.content = content; |
||||
} |
||||
|
||||
public MultipartFile getImageFile() { |
||||
return imageFile; |
||||
} |
||||
|
||||
public void setImageFile(MultipartFile imageFile) { |
||||
this.imageFile = imageFile; |
||||
} |
||||
|
||||
public MultipartFile getVideoFile() { |
||||
return videoFile; |
||||
} |
||||
|
||||
public void setVideoFile(MultipartFile videoFile) { |
||||
this.videoFile = videoFile; |
||||
} |
||||
} |
Loading…
Reference in new issue