yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java
@@ -8,14 +8,6 @@
   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;
   }
@@ -24,11 +16,20 @@
      this.totalCount = totalCount;
   }
   public List<PDDOrder> getGoodsList() {
   public List<PDDOrder> getOrderList() {
      return orderList;
   }
   public void setGoodsList(List<PDDOrder> 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;
   }
}