86 lines
1.7 KiB
Java
86 lines
1.7 KiB
Java
package itn.let.kakao.kakaoComm;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @FileName : KakaoCommentVO.java
|
|
* @Project : mjon
|
|
* @Date : 2023. 2. 6.
|
|
* @작성자 : WYH
|
|
|
|
* @프로그램 설명 : comment 변수
|
|
*/
|
|
public class KakaoCommentVO {
|
|
|
|
private String content = ""; // 댓글 본분
|
|
|
|
private String createdAt = ""; // 댓글 생성일
|
|
|
|
private String status = ""; // 댓글 상태 (REQ:등록, INQ:문의, APR:승인, REJ:반려, REP:답변)
|
|
|
|
private String userName = ""; // 댓글 작성자
|
|
|
|
private List<KakaoCommentVO> attachFileList = new ArrayList<KakaoCommentVO>();
|
|
|
|
private String originalFileName = "";
|
|
|
|
private String filePath = "";
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getCreatedAt() {
|
|
return createdAt;
|
|
}
|
|
|
|
public void setCreatedAt(String createdAt) {
|
|
this.createdAt = createdAt;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return userName;
|
|
}
|
|
|
|
public void setUserName(String userName) {
|
|
this.userName = userName;
|
|
}
|
|
|
|
public String getOriginalFileName() {
|
|
return originalFileName;
|
|
}
|
|
|
|
public void setOriginalFileName(String originalFileName) {
|
|
this.originalFileName = originalFileName;
|
|
}
|
|
|
|
public String getFilePath() {
|
|
return filePath;
|
|
}
|
|
|
|
public void setFilePath(String filePath) {
|
|
this.filePath = filePath;
|
|
}
|
|
|
|
public List<KakaoCommentVO> getAttachFileList() {
|
|
return attachFileList;
|
|
}
|
|
|
|
public void setAttachFileList(List<KakaoCommentVO> attachFileList) {
|
|
this.attachFileList = attachFileList;
|
|
}
|
|
}
|