A_XG0001.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 犀工网
  3. */
  4. package com.miniframe.generate.comm.xigital;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 企业用户数据查询
  9. */
  10. public class A_XG0001 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 proNames;//查询名称
  39. /**
  40. *查询名称
  41. */
  42. public void setProNames(String proNames) {
  43. this.proNames=proNames;
  44. }
  45. /**
  46. *查询名称
  47. */
  48. public String getProNames() {
  49. return this.proNames;
  50. }
  51. String proValues;//查询值
  52. /**
  53. *查询值
  54. */
  55. public void setProValues(String proValues) {
  56. this.proValues=proValues;
  57. }
  58. /**
  59. *查询值
  60. */
  61. public String getProValues() {
  62. return this.proValues;
  63. }
  64. }