|
|
@@ -3,6 +3,8 @@
|
|
|
*/
|
|
|
package kr.co.zumo.app.lifeplus.bean.api;
|
|
|
|
|
|
+import com.google.gson.annotations.SerializedName;
|
|
|
+
|
|
|
/**
|
|
|
* SearchContentsBean
|
|
|
* <pre>
|
|
|
@@ -21,6 +23,9 @@ public class SearchContentsBean extends LifeplusContentsBean {
|
|
|
public static final int TYPE_COUNT = 3;
|
|
|
public static final int TYPE_ITEM = 4;
|
|
|
|
|
|
+ @SerializedName("ctgrNo")
|
|
|
+ private String categoryNo;
|
|
|
+
|
|
|
private transient int type = TYPE_ITEM;
|
|
|
private transient int listCount;
|
|
|
private transient String tagRequested;
|
|
|
@@ -71,4 +76,12 @@ public class SearchContentsBean extends LifeplusContentsBean {
|
|
|
public void setTagRequested(String tagRequested) {
|
|
|
this.tagRequested = tagRequested;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCategoryNo() {
|
|
|
+ return categoryNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCategoryNo(String categoryNo) {
|
|
|
+ this.categoryNo = categoryNo;
|
|
|
+ }
|
|
|
}
|