| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;import java.util.*;/** * 标准数据查询 */public class D_SYS0001 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	long total;//总行数	/**	 *总行数	 */	public void setTotal(long total) {		this.total=total;	}	/**	 *总行数	 */	public long getTotal() {		return this.total;	}	long size;//当前页条数	/**	 *当前页条数	 */	public void setSize(long size) {		this.size=size;	}	/**	 *当前页条数	 */	public long getSize() {		return this.size;	}	List <D_SYS0001_ROWS_RECODE> rows;//返回内容行	/**	 *返回内容行	 */	public void setRows(List <D_SYS0001_ROWS_RECODE> rows) {		this.rows=rows;	}	/**	 *返回内容行	 */	public List <D_SYS0001_ROWS_RECODE> getRows() {		return this.rows;	}}
 |