admin
2024-10-16 62a447d89331aee1feae7724c7616aa1bb2cfe79
fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java
@@ -1,34 +1,35 @@
package com.yeshi.fanli.dto.pdd;
import java.util.List;
import com.yeshi.fanli.entity.pdd.PDDOrder;
public class PDDOrderResult {
   private int totalCount;// 总数量
   private List<PDDOrder> orderList;// 商品列表
   public PDDOrderResult() {
   }
   public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
      this.totalCount = totalCount;
      this.orderList = orderList;
   }
   public int getTotalCount() {
      return totalCount;
   }
   public void setTotalCount(int totalCount) {
      this.totalCount = totalCount;
   }
   public List<PDDOrder> getGoodsList() {
      return orderList;
   }
   public void setGoodsList(List<PDDOrder> orderList) {
      this.orderList = orderList;
   }
}
package com.yeshi.fanli.dto.pdd;
import java.util.List;
import com.yeshi.fanli.entity.pdd.PDDOrder;
public class PDDOrderResult {
   private int totalCount;// 总数量
   private List<PDDOrder> orderList;// 商品列表
   public int getTotalCount() {
      return totalCount;
   }
   public void setTotalCount(int totalCount) {
      this.totalCount = totalCount;
   }
   public List<PDDOrder> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<PDDOrder> orderList) {
      this.orderList = orderList;
   }
   public PDDOrderResult() {
   }
   public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
      this.totalCount = totalCount;
      this.orderList = orderList;
   }
}