|
|
@@ -58,8 +58,8 @@ public class ContentsItemBean extends LifeplusContentsBean {
|
|
|
@SerializedName("itemRecuList") // 이미지 아래 1. 2... 내용
|
|
|
private List<ContentsDescriptionBean> descriptionList;
|
|
|
|
|
|
- @SerializedName("copyRight")
|
|
|
- private String copyRight;
|
|
|
+ @SerializedName("copyright")
|
|
|
+ private String copyright;
|
|
|
|
|
|
public String getListItemNo() {
|
|
|
return listItemNo;
|
|
|
@@ -216,12 +216,19 @@ public class ContentsItemBean extends LifeplusContentsBean {
|
|
|
this.descriptionList = descriptionList;
|
|
|
}
|
|
|
|
|
|
- public String getCopyRight() {
|
|
|
- return copyRight;
|
|
|
+ public String getCopyright() {
|
|
|
+ if (StringUtil.isFull(copyright)) {
|
|
|
+ return copyright;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (null != itemImageList && itemImageList.size() > 0) {
|
|
|
+ copyright = itemImageList.get(0).getCopyright();
|
|
|
+ }
|
|
|
+ return copyright;
|
|
|
}
|
|
|
|
|
|
- public void setCopyRight(String copyRight) {
|
|
|
- this.copyRight = copyRight;
|
|
|
+ public void setCopyright(String copyright) {
|
|
|
+ this.copyright = copyright;
|
|
|
}
|
|
|
|
|
|
public ContentsButtonInfoBean getButtonInfo() {
|