File was renamed from fanli/src/main/java/com/yeshi/fanli/dto/dataoke/DaTaoKeGoodsResult.java |
| | |
| | | package com.yeshi.fanli.dto.dataoke;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.goods.facade.entity.taobao.DaTaoKeDetailV2;
|
| | |
|
| | | public class DaTaoKeGoodsResult {
|
| | | private long totalCount;
|
| | | private String pageId;
|
| | | private List<DaTaoKeDetailV2> goodsList;
|
| | |
|
| | | public DaTaoKeGoodsResult() {
|
| | | }
|
| | |
|
| | | public DaTaoKeGoodsResult(long totalCount, String pageId, List<DaTaoKeDetailV2> goodsList) {
|
| | | this.totalCount = totalCount;
|
| | | this.pageId = pageId;
|
| | | this.goodsList = goodsList;
|
| | | }
|
| | |
|
| | | public long getTotalCount() {
|
| | | return totalCount;
|
| | | }
|
| | |
|
| | | public void setTotalCount(long totalCount) {
|
| | | this.totalCount = totalCount;
|
| | | }
|
| | |
|
| | | public String getPageId() {
|
| | | return pageId;
|
| | | }
|
| | |
|
| | | public void setPageId(String pageId) {
|
| | | this.pageId = pageId;
|
| | | }
|
| | |
|
| | | public List<DaTaoKeDetailV2> getGoodsList() {
|
| | | return goodsList;
|
| | | }
|
| | |
|
| | | public void setGoodsList(List<DaTaoKeDetailV2> goodsList) {
|
| | | this.goodsList = goodsList;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.goods.facade.dto.taobao.dataoke; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.goods.facade.entity.taobao.dataoke.DaTaoKeDetailV2; |
| | | |
| | | public class DaTaoKeGoodsResult { |
| | | private long totalCount; |
| | | private String pageId; |
| | | private List<DaTaoKeDetailV2> goodsList; |
| | | |
| | | public DaTaoKeGoodsResult() { |
| | | } |
| | | |
| | | public DaTaoKeGoodsResult(long totalCount, String pageId, List<DaTaoKeDetailV2> goodsList) { |
| | | this.totalCount = totalCount; |
| | | this.pageId = pageId; |
| | | this.goodsList = goodsList; |
| | | } |
| | | |
| | | public long getTotalCount() { |
| | | return totalCount; |
| | | } |
| | | |
| | | public void setTotalCount(long totalCount) { |
| | | this.totalCount = totalCount; |
| | | } |
| | | |
| | | public String getPageId() { |
| | | return pageId; |
| | | } |
| | | |
| | | public void setPageId(String pageId) { |
| | | this.pageId = pageId; |
| | | } |
| | | |
| | | public List<DaTaoKeDetailV2> getGoodsList() { |
| | | return goodsList; |
| | | } |
| | | |
| | | public void setGoodsList(List<DaTaoKeDetailV2> goodsList) { |
| | | this.goodsList = goodsList; |
| | | } |
| | | |
| | | } |