A_B00030.java 910 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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_B00030 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. String searchtag;//查询条件
  39. /**
  40. *查询条件
  41. */
  42. public void setSearchtag(String searchtag) {
  43. this.searchtag=searchtag;
  44. }
  45. /**
  46. *查询条件
  47. */
  48. public String getSearchtag() {
  49. return this.searchtag;
  50. }
  51. }