/** * 区块链浏览器 */ package com.miniframe.generate.comm.blockchain; import com.miniframe.core.BaseMapModel; import java.io.Serializable; import java.util.*; /** * 平台上链查询 */ public class D_XE0012 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; List rows;//查询结果 /** *查询结果 */ public void setRows(List rows) { this.rows=rows; } /** *查询结果 */ public List getRows() { return this.rows; } int rowsCount;//当前页条数 /** *当前页条数 */ public void setRowsCount(int rowsCount) { this.rowsCount=rowsCount; } /** *当前页条数 */ public int getRowsCount() { return this.rowsCount; } int total;//总条数 /** *总条数 */ public void setTotal(int total) { this.total=total; } /** *总条数 */ public int getTotal() { return this.total; } }