package com.yeshi.fanli.dto.jd;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.jd.JDGoods;
|
import com.yeshi.common.entity.PageEntity;
|
|
public class JDSearchResult implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private PageEntity pageEntity;
|
private List<JDGoods> goodsList;
|
|
public PageEntity getPageEntity() {
|
return pageEntity;
|
}
|
|
public void setPageEntity(PageEntity pageEntity) {
|
this.pageEntity = pageEntity;
|
}
|
|
public List<JDGoods> getGoodsList() {
|
return goodsList;
|
}
|
|
public void setGoodsList(List<JDGoods> goodsList) {
|
this.goodsList = goodsList;
|
}
|
|
}
|