A_D00003.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_D00003 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. int aid;//事故id
  39. /**
  40. *事故id
  41. */
  42. public void setAid(int aid) {
  43. this.aid=aid;
  44. }
  45. /**
  46. *事故id
  47. */
  48. public int getAid() {
  49. return this.aid;
  50. }
  51. String source;//数据源
  52. /**
  53. *数据源
  54. */
  55. public void setSource(String source) {
  56. this.source=source;
  57. }
  58. /**
  59. *数据源
  60. */
  61. public String getSource() {
  62. return this.source;
  63. }
  64. String sid;//数据源ID
  65. /**
  66. *数据源ID
  67. */
  68. public void setSid(String sid) {
  69. this.sid=sid;
  70. }
  71. /**
  72. *数据源ID
  73. */
  74. public String getSid() {
  75. return this.sid;
  76. }
  77. String searchtag;//查询条件
  78. /**
  79. *查询条件
  80. */
  81. public void setSearchtag(String searchtag) {
  82. this.searchtag=searchtag;
  83. }
  84. /**
  85. *查询条件
  86. */
  87. public String getSearchtag() {
  88. return this.searchtag;
  89. }
  90. }