admin
2024-04-26 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c
fanli/src/main/java/com/yeshi/fanli/dto/vipshop/VipShopQueryOrderResultDTO.java
@@ -1,37 +1,37 @@
package com.yeshi.fanli.dto.vipshop;
import java.util.List;
import com.yeshi.fanli.entity.vipshop.VipShopOrder;
/**
 * 唯品会订单结果
 * @author Administrator
 *
 */
public class VipShopQueryOrderResultDTO {
   private List<VipShopOrder> orderList;
   private Integer total;
   public VipShopQueryOrderResultDTO(List<VipShopOrder> orderList, Integer total) {
      super();
      this.orderList = orderList;
      this.total = total;
   }
   public List<VipShopOrder> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<VipShopOrder> orderList) {
      this.orderList = orderList;
   }
   public Integer getTotal() {
      return total;
   }
   public void setTotal(Integer total) {
      this.total = total;
   }
}
package com.yeshi.fanli.dto.vipshop;
import java.util.List;
import com.yeshi.fanli.entity.vipshop.VipShopOrder;
/**
 * 唯品会订单结果
 * @author Administrator
 *
 */
public class VipShopQueryOrderResultDTO {
   private List<VipShopOrder> orderList;
   private Integer total;
   public VipShopQueryOrderResultDTO(List<VipShopOrder> orderList, Integer total) {
      super();
      this.orderList = orderList;
      this.total = total;
   }
   public List<VipShopOrder> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<VipShopOrder> orderList) {
      this.orderList = orderList;
   }
   public Integer getTotal() {
      return total;
   }
   public void setTotal(Integer total) {
      this.total = total;
   }
}