12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * 区块链浏览器
- */
- 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 <D_XE0012_ROWS_RECODE> rows;//查询结果
- /**
- *查询结果
- */
- public void setRows(List <D_XE0012_ROWS_RECODE> rows) {
- this.rows=rows;
- }
- /**
- *查询结果
- */
- public List <D_XE0012_ROWS_RECODE> 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;
- }
- }
|