com.dahuatech.icc.brm.model.v202010.card.BrmCardPageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.brm.model.v202010.card;
import com.dahuatech.icc.oauth.http.IccResponse;
import java.util.List;
/**
* 部门分页查询结果
*
* @author 232676
* @since 1.0.0 2020-11-03 09:59:11
*/
public class BrmCardPageResponse extends IccResponse {
private CardPageData data;
public static class CardPageData {
private List pageData;
private int currentPage;
private int totalPage;
private int pageSize;
private int totalRows;
public int getCurrentPage() {
return currentPage;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
public int getTotalPage() {
return totalPage;
}
public void setTotalPage(int totalPage) {
this.totalPage = totalPage;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getTotalRows() {
return totalRows;
}
public void setTotalRows(int totalRows) {
this.totalRows = totalRows;
}
public List getPageData() {
return pageData;
}
public void setPageData(List pageData) {
this.pageData = pageData;
}
@Override
public String toString() {
return "CardPageData{" + "pageData=" + pageData + '}';
}
}
}