D_D10013.java 726 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 物理属性查询
  10. */
  11. public class D_D10013 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. int total;//总数
  14. /**
  15. *总数
  16. */
  17. public void setTotal(int total) {
  18. this.total=total;
  19. }
  20. /**
  21. *总数
  22. */
  23. public int getTotal() {
  24. return this.total;
  25. }
  26. List <D_D10013_ROWS_RECODE> rows;//数据
  27. /**
  28. *数据
  29. */
  30. public void setRows(List <D_D10013_ROWS_RECODE> rows) {
  31. this.rows=rows;
  32. }
  33. /**
  34. *数据
  35. */
  36. public List <D_D10013_ROWS_RECODE> getRows() {
  37. return this.rows;
  38. }
  39. }