| 123456789101112131415161718192021222324252627282930313233343536373839 | /** * 系统服务 */package com.miniframe.generate.comm.mdo;import com.miniframe.core.BaseMapModel;import java.io.Serializable;import java.util.*;/** * 工程查询 */public class D_MDO0001 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;	}	List <D_MDO0001_ROWS_RECODE> rows;//数据	/**	 *数据	 */	public void setRows(List <D_MDO0001_ROWS_RECODE> rows) {		this.rows=rows;	}	/**	 *数据	 */	public List <D_MDO0001_ROWS_RECODE> getRows() {		return this.rows;	}}
 |