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