|
|
@@ -38,8 +38,11 @@ public class ContentsDetailBean extends LifeplusContentsBean {
|
|
|
@SerializedName("itemTagList")
|
|
|
private List<TagBean> tagList;
|
|
|
|
|
|
-// @SerializedName("itemDtalList") // 이미지 아래 세부 내용
|
|
|
-// private List<ContentsDescriptionBean> descriptionList;
|
|
|
+ @SerializedName("itemDtalList") // more info
|
|
|
+ private List<ContentsMoreInfoBean> moreInfoList;
|
|
|
+
|
|
|
+ @SerializedName("itemRecuList") // 이미지 아래 1. 2... 내용
|
|
|
+ private List<ContentsDescriptionBean> descriptionList;
|
|
|
|
|
|
/**
|
|
|
* 이미지 리스트 중에서 첫 번째 것을 가져온다.
|
|
|
@@ -102,11 +105,19 @@ public class ContentsDetailBean extends LifeplusContentsBean {
|
|
|
this.tagList = tagList;
|
|
|
}
|
|
|
|
|
|
-// public List<ContentsDescriptionBean> getDescriptionList() {
|
|
|
-// return descriptionList;
|
|
|
-// }
|
|
|
+ public List<ContentsMoreInfoBean> getMoreInfoList() {
|
|
|
+ return moreInfoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMoreInfoList(List<ContentsMoreInfoBean> moreInfoList) {
|
|
|
+ this.moreInfoList = moreInfoList;
|
|
|
+ }
|
|
|
|
|
|
-// public void setDescriptionList(List<ContentsDescriptionBean> descriptionList) {
|
|
|
-// this.descriptionList = descriptionList;
|
|
|
-// }
|
|
|
+ public List<ContentsDescriptionBean> getDescriptionList() {
|
|
|
+ return descriptionList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDescriptionList(List<ContentsDescriptionBean> descriptionList) {
|
|
|
+ this.descriptionList = descriptionList;
|
|
|
+ }
|
|
|
}
|