com.sany.workflow.demo.entity.PageData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdp-workflow-demo Show documentation
Show all versions of pdp-workflow-demo Show documentation
bboss public development platform base on bboss.
package com.sany.workflow.demo.entity;
import java.util.List;
/**
* @todo 自动补全插件,测试对象实体
* @author tanx
* @date 2014年11月10日
*
*/
public class PageData {
private long totalsize;
public long getTotalsize() {
return totalsize;
}
public void setTotalsize(long totalsize) {
this.totalsize = totalsize;
}
public List getDatas() {
return datas;
}
public void setDatas(List datas) {
this.datas = datas;
}
private List datas;
}