File name
Commit message
Commit date
2025-04-15
File name
Commit message
Commit date
2025-04-15
2025-04-15
File name
Commit message
Commit date
File name
Commit message
Commit date
2025-04-15
File name
Commit message
Commit date
2025-04-15
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.kakao.kakaoComm;
public class KakaoItemVO {
private String title = ""; // 템플릿 상세조회의 아이템정보(templateItem) 데이터의 타이틀 컬럼 정보
private String description = ""; // 템플릿 상세조회의 아이템정보(templateItem) 데이터의 디스크립션 컬럼 정보
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}