D_XE0012.java 985 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * 区块链浏览器
  3. */
  4. package com.miniframe.generate.comm.blockchain;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 平台上链查询
  10. */
  11. public class D_XE0012 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. List <D_XE0012_ROWS_RECODE> rows;//查询结果
  14. /**
  15. *查询结果
  16. */
  17. public void setRows(List <D_XE0012_ROWS_RECODE> rows) {
  18. this.rows=rows;
  19. }
  20. /**
  21. *查询结果
  22. */
  23. public List <D_XE0012_ROWS_RECODE> getRows() {
  24. return this.rows;
  25. }
  26. int rowsCount;//当前页条数
  27. /**
  28. *当前页条数
  29. */
  30. public void setRowsCount(int rowsCount) {
  31. this.rowsCount=rowsCount;
  32. }
  33. /**
  34. *当前页条数
  35. */
  36. public int getRowsCount() {
  37. return this.rowsCount;
  38. }
  39. int total;//总条数
  40. /**
  41. *总条数
  42. */
  43. public void setTotal(int total) {
  44. this.total=total;
  45. }
  46. /**
  47. *总条数
  48. */
  49. public int getTotal() {
  50. return this.total;
  51. }
  52. }