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;
|
}
|
}
|