From d1d0b4b9f4452fb6e9b6e39168f503d5b302c999 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 11 一月 2022 11:26:35 +0800
Subject: [PATCH] 部分功能添加
---
fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java | 74 +++++++++++++++++++------------------
1 files changed, 38 insertions(+), 36 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java b/fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java
index d9f55a0..9124499 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java
@@ -1,36 +1,38 @@
-package com.yeshi.fanli.dto.common;
-
-import java.io.Serializable;
-import java.util.List;
-
-import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
-
-public class CommonContentResult implements Serializable {
- private static final long serialVersionUID = 1L;
- private List<TaoBaoGoodsBrief> goodsList;
- private long count;
-
- public List<TaoBaoGoodsBrief> getGoodsList() {
- return goodsList;
- }
-
- public void setGoodsList(List<TaoBaoGoodsBrief> goodsList) {
- this.goodsList = goodsList;
- }
-
- public long getCount() {
- return count;
- }
-
- public void setCount(long count) {
- this.count = count;
- }
-
- public CommonContentResult(List<TaoBaoGoodsBrief> goodsList, long count) {
- this.goodsList = goodsList;
- this.count = count;
- }
-
- public CommonContentResult() {
- }
-}
+package com.yeshi.fanli.dto.common;
+
+import java.io.Serializable;
+import java.util.List;
+
+import com.yeshi.fanli.entity.goods.CommonGoods;
+import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
+
+public class CommonContentResult implements Serializable {
+ private static final long serialVersionUID = 1L;
+ private List<CommonGoods> goodsList;
+ private long count;
+
+
+ public List<CommonGoods> getGoodsList() {
+ return goodsList;
+ }
+
+ public void setGoodsList(List<CommonGoods> goodsList) {
+ this.goodsList = goodsList;
+ }
+
+ public long getCount() {
+ return count;
+ }
+
+ public void setCount(long count) {
+ this.count = count;
+ }
+
+ public CommonContentResult() {
+ }
+
+ public CommonContentResult(List<CommonGoods> goodsList, long count) {
+ this.goodsList = goodsList;
+ this.count = count;
+ }
+}
--
Gitblit v1.8.0