|
|
@@ -0,0 +1,46 @@
|
|
|
+/*
|
|
|
+ * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
|
|
|
+ */
|
|
|
+package kr.co.zumo.app.lifeplus.bean.api;
|
|
|
+
|
|
|
+import com.google.gson.annotations.SerializedName;
|
|
|
+
|
|
|
+import kr.co.zumo.app.lifeplus.bean.JsonBeanBase;
|
|
|
+import kr.co.zumo.app.lifeplus.util.StringUtil;
|
|
|
+
|
|
|
+/**
|
|
|
+ * ContentsDescriptionBean
|
|
|
+ * <pre>
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * @author 민효동
|
|
|
+ * @version 1.0
|
|
|
+ * @history 민효동 [2018. 11. 27.] [최초 작성]
|
|
|
+ * @since 2018. 11. 27.
|
|
|
+ */
|
|
|
+public class ContentsDescriptionBean extends JsonBeanBase {
|
|
|
+ @SerializedName("itemDtifNo")
|
|
|
+ private String itemDescriptionNumber;
|
|
|
+ @SerializedName("dtalCten")
|
|
|
+ private String description;
|
|
|
+
|
|
|
+ public String getItemDescriptionNumber() {
|
|
|
+ return itemDescriptionNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemDescriptionNumber(String itemDescriptionNumber) {
|
|
|
+ this.itemDescriptionNumber = itemDescriptionNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDescription() {
|
|
|
+ return StringUtil.stripHtml(description);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDescription(String description) {
|
|
|
+ this.description = description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDescriptionWithHtml() {
|
|
|
+ return description;
|
|
|
+ }
|
|
|
+}
|