A_C00001.java 682 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 项目查询
  9. */
  10. public class A_C00001 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int count;//每页显示条数
  13. /**
  14. *每页显示条数
  15. */
  16. public void setCount(int count) {
  17. this.count=count;
  18. }
  19. /**
  20. *每页显示条数
  21. */
  22. public int getCount() {
  23. return this.count;
  24. }
  25. int page;//当前页数
  26. /**
  27. *当前页数
  28. */
  29. public void setPage(int page) {
  30. this.page=page;
  31. }
  32. /**
  33. *当前页数
  34. */
  35. public int getPage() {
  36. return this.page;
  37. }
  38. }