|
|
@@ -17,6 +17,7 @@ public class GoodsListResponse implements Serializable {
|
|
|
|
|
|
private Integer returnCode; // 응답코드(양수: 정상, 음수: 오류)
|
|
|
private int totalCount; // 상품전체건수
|
|
|
+ private Collection<Recommend> recommend;
|
|
|
private Collection<SearchEngine> response;
|
|
|
// private Collection<Goods> response;
|
|
|
//
|
|
|
@@ -40,4 +41,9 @@ public class GoodsListResponse implements Serializable {
|
|
|
// private String selfGoodsYn; // 자사상품여부
|
|
|
// }
|
|
|
|
|
|
+ @Data
|
|
|
+ public class Recommend {
|
|
|
+ // 연관검색어
|
|
|
+ private String keyword; // 키워드
|
|
|
+ }
|
|
|
}
|