admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dto/common/CommonContentResult.java
@@ -1,34 +1,38 @@
package com.yeshi.fanli.dto.common;
import java.util.List;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
public class CommonContentResult {
   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;
   }
}