|
|
@@ -101,6 +101,18 @@ public class APIContentsDetailModule extends LifeplusAPIModule<ItemNoRequestBean
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // copyright 앞에 "©" 추가
|
|
|
+ for (ContentsItemBean contentsItemBean : contentsItemBeans) {
|
|
|
+ List<ContentsDetailImageBean> list = contentsItemBean.getItemImageList();
|
|
|
+ if (null != list) {
|
|
|
+ for (ContentsDetailImageBean bean : list) {
|
|
|
+ if (StringUtil.isFull(bean.getCopyright())) {
|
|
|
+ bean.setCopyright("ⓒ" + bean.getCopyright()); // ©
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return contentsDetailResultBean;
|
|
|
});
|
|
|
}
|