package com.smartearth.poiexcel.entity;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 企业结果类
|
* @author WWW
|
*/
|
public class EntResult implements Serializable {
|
private static final long serialVersionUID = -8624235184539814993L;
|
|
private Integer showCount;
|
|
private Integer totalPage;
|
|
private Integer totalResult;
|
|
private Integer currentPage;
|
|
private Integer currentResult;
|
|
private Boolean entityOrField;
|
|
private PageData pd;
|
|
public EntResult() {
|
}
|
|
public Integer getShowCount() {
|
return showCount;
|
}
|
|
public void setShowCount(Integer showCount) {
|
this.showCount = showCount;
|
}
|
|
public Integer getTotalPage() {
|
return totalPage;
|
}
|
|
public void setTotalPage(Integer totalPage) {
|
this.totalPage = totalPage;
|
}
|
|
public Integer getTotalResult() {
|
return totalResult;
|
}
|
|
public void setTotalResult(Integer totalResult) {
|
this.totalResult = totalResult;
|
}
|
|
public Integer getCurrentPage() {
|
return currentPage;
|
}
|
|
public void setCurrentPage(Integer currentPage) {
|
this.currentPage = currentPage;
|
}
|
|
public Integer getCurrentResult() {
|
return currentResult;
|
}
|
|
public void setCurrentResult(Integer currentResult) {
|
this.currentResult = currentResult;
|
}
|
|
public Boolean getEntityOrField() {
|
return entityOrField;
|
}
|
|
public void setEntityOrField(Boolean entityOrField) {
|
this.entityOrField = entityOrField;
|
}
|
|
public PageData getPd() {
|
return pd;
|
}
|
|
public void setPd(PageData pd) {
|
this.pd = pd;
|
}
|
|
public static class PageData {
|
private String ctoken;
|
|
private Integer showCount;
|
|
private String qylabel;
|
|
private String buildDate_startdate;
|
|
private String buildDate_enddate;
|
|
private Integer currentPage;
|
|
private List<EntEntity> list;
|
|
public PageData() {
|
list = new ArrayList<>();
|
}
|
|
public String getCtoken() {
|
return ctoken;
|
}
|
|
public void setCtoken(String ctoken) {
|
this.ctoken = ctoken;
|
}
|
|
public Integer getShowCount() {
|
return showCount;
|
}
|
|
public void setShowCount(Integer showCount) {
|
this.showCount = showCount;
|
}
|
|
public String getQylabel() {
|
return qylabel;
|
}
|
|
public void setQylabel(String qylabel) {
|
this.qylabel = qylabel;
|
}
|
|
public String getBuildDate_startdate() {
|
return buildDate_startdate;
|
}
|
|
public void setBuildDate_startdate(String buildDate_startdate) {
|
this.buildDate_startdate = buildDate_startdate;
|
}
|
|
public String getBuildDate_enddate() {
|
return buildDate_enddate;
|
}
|
|
public void setBuildDate_enddate(String buildDate_enddate) {
|
this.buildDate_enddate = buildDate_enddate;
|
}
|
|
public Integer getCurrentPage() {
|
return currentPage;
|
}
|
|
public void setCurrentPage(Integer currentPage) {
|
this.currentPage = currentPage;
|
}
|
|
public List<EntEntity> getList() {
|
return list;
|
}
|
|
public void setList(List<EntEntity> list) {
|
this.list = list;
|
}
|
}
|
}
|