admin
2021-02-06 d1f26741bddf6f512d62c0100d42c52be8d37e76
fanli/src/main/java/com/yeshi/fanli/dto/suning/SuningOrderQueryResultDTO.java
@@ -1,33 +1,33 @@
package com.yeshi.fanli.dto.suning;
import java.util.List;
import com.yeshi.fanli.entity.suning.SuningOrderInfo;
public class SuningOrderQueryResultDTO {
   private int total;
   private List<SuningOrderInfo> orderList;
   public SuningOrderQueryResultDTO(int total, List<SuningOrderInfo> orderList) {
      super();
      this.total = total;
      this.orderList = orderList;
   }
   public int getTotal() {
      return total;
   }
   public void setTotal(int total) {
      this.total = total;
   }
   public List<SuningOrderInfo> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<SuningOrderInfo> orderList) {
      this.orderList = orderList;
   }
}
package com.yeshi.fanli.dto.suning;
import java.util.List;
import com.yeshi.fanli.entity.suning.SuningOrderInfo;
public class SuningOrderQueryResultDTO {
   private int total;
   private List<SuningOrderInfo> orderList;
   public SuningOrderQueryResultDTO(int total, List<SuningOrderInfo> orderList) {
      super();
      this.total = total;
      this.orderList = orderList;
   }
   public int getTotal() {
      return total;
   }
   public void setTotal(int total) {
      this.total = total;
   }
   public List<SuningOrderInfo> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<SuningOrderInfo> orderList) {
      this.orderList = orderList;
   }
}