| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;import java.util.*;/** * 获取商品列表 */public class D_C00022 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_C00022_ROWS_RECODE> rows;//数据	/**	 *数据	 */	public void setRows(List <D_C00022_ROWS_RECODE> rows) {		this.rows=rows;	}	/**	 *数据	 */	public List <D_C00022_ROWS_RECODE> getRows() {		return this.rows;	}	String orderSortName;//排序表头	/**	 *排序表头	 */	public void setOrderSortName(String orderSortName) {		this.orderSortName=orderSortName;	}	/**	 *排序表头	 */	public String getOrderSortName() {		return this.orderSortName;	}	String orderSortType;//排序方向	/**	 *排序方向	 */	public void setOrderSortType(String orderSortType) {		this.orderSortType=orderSortType;	}	/**	 *排序方向	 */	public String getOrderSortType() {		return this.orderSortType;	}}
 |