admin
2019-04-22 08e5c64ec7424fd0048d85ef293148977f4739cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.yeshi.fanli.dto.jd;
 
import java.util.List;
 
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.tag.PageEntity;
 
public class JDSearchResult {
    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;
    }
 
}