47 lines
853 B
Java
47 lines
853 B
Java
package com.syzb.business.vo;
|
|
|
|
import java.util.List;
|
|
|
|
public class BusinessOrderExtVO {
|
|
|
|
private Integer currentPage;
|
|
|
|
private Integer pageSize;
|
|
|
|
private Integer total;
|
|
|
|
private List<BusinessOrderVO> data;
|
|
|
|
public Integer getCurrentPage() {
|
|
return currentPage;
|
|
}
|
|
|
|
public void setCurrentPage(Integer currentPage) {
|
|
this.currentPage = currentPage;
|
|
}
|
|
|
|
public Integer getPageSize() {
|
|
return pageSize;
|
|
}
|
|
|
|
public void setPageSize(Integer pageSize) {
|
|
this.pageSize = pageSize;
|
|
}
|
|
|
|
public Integer getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(Integer total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public List<BusinessOrderVO> getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(List<BusinessOrderVO> data) {
|
|
this.data = data;
|
|
}
|
|
}
|