| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;import java.util.*;/** * 用户列表 */public class D_M00103 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	int total;//总数	/**	 *总数	 */	public void setTotal(int total) {		this.total=total;	}	/**	 *总数	 */	public int getTotal() {		return this.total;	}	int count;//当页总数	/**	 *当页总数	 */	public void setCount(int count) {		this.count=count;	}	/**	 *当页总数	 */	public int getCount() {		return this.count;	}	List <D_M00103_ROWS_RECODE> rows;//数据	/**	 *数据	 */	public void setRows(List <D_M00103_ROWS_RECODE> rows) {		this.rows=rows;	}	/**	 *数据	 */	public List <D_M00103_ROWS_RECODE> getRows() {		return this.rows;	}}
 |