DaZqls.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. package com.huimv.da.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. public class DaZqls extends BaseDO {
  5. /**
  6. * This field was generated by Apache iBATIS ibator.
  7. * This field corresponds to the database column da_zqls.ID
  8. *
  9. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  10. */
  11. private Integer id;
  12. /**
  13. * This field was generated by Apache iBATIS ibator.
  14. * This field corresponds to the database column da_zqls.LQID
  15. *
  16. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  17. */
  18. private Integer lqid;
  19. /**
  20. * This field was generated by Apache iBATIS ibator.
  21. * This field corresponds to the database column da_zqls.OLDLQID
  22. *
  23. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  24. */
  25. private Integer oldlqid;
  26. /**
  27. * This field was generated by Apache iBATIS ibator.
  28. * This field corresponds to the database column da_zqls.DWEB
  29. *
  30. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  31. */
  32. private String dweb;
  33. /**
  34. * This field was generated by Apache iBATIS ibator.
  35. * This field corresponds to the database column da_zqls.ZQSJ
  36. *
  37. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  38. */
  39. private Date zqsj;
  40. private String lqmc;
  41. private String oldlqmc;
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method returns the value of the database column da_zqls.ID
  45. *
  46. * @return the value of da_zqls.ID
  47. *
  48. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  49. */
  50. public Integer getId() {
  51. return id;
  52. }
  53. /**
  54. * This method was generated by Apache iBATIS ibator.
  55. * This method sets the value of the database column da_zqls.ID
  56. *
  57. * @param id the value for da_zqls.ID
  58. *
  59. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  60. */
  61. public void setId(Integer id) {
  62. this.id = id;
  63. }
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method returns the value of the database column da_zqls.LQID
  67. *
  68. * @return the value of da_zqls.LQID
  69. *
  70. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  71. */
  72. public Integer getLqid() {
  73. return lqid;
  74. }
  75. /**
  76. * This method was generated by Apache iBATIS ibator.
  77. * This method sets the value of the database column da_zqls.LQID
  78. *
  79. * @param lqid the value for da_zqls.LQID
  80. *
  81. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  82. */
  83. public void setLqid(Integer lqid) {
  84. this.lqid = lqid;
  85. }
  86. /**
  87. * This method was generated by Apache iBATIS ibator.
  88. * This method returns the value of the database column da_zqls.OLDLQID
  89. *
  90. * @return the value of da_zqls.OLDLQID
  91. *
  92. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  93. */
  94. public Integer getOldlqid() {
  95. return oldlqid;
  96. }
  97. /**
  98. * This method was generated by Apache iBATIS ibator.
  99. * This method sets the value of the database column da_zqls.OLDLQID
  100. *
  101. * @param oldlqid the value for da_zqls.OLDLQID
  102. *
  103. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  104. */
  105. public void setOldlqid(Integer oldlqid) {
  106. this.oldlqid = oldlqid;
  107. }
  108. /**
  109. * This method was generated by Apache iBATIS ibator.
  110. * This method returns the value of the database column da_zqls.DWEB
  111. *
  112. * @return the value of da_zqls.DWEB
  113. *
  114. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  115. */
  116. public String getDweb() {
  117. return dweb;
  118. }
  119. /**
  120. * This method was generated by Apache iBATIS ibator.
  121. * This method sets the value of the database column da_zqls.DWEB
  122. *
  123. * @param dweb the value for da_zqls.DWEB
  124. *
  125. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  126. */
  127. public void setDweb(String dweb) {
  128. this.dweb = dweb == null ? null : dweb.trim();
  129. }
  130. /**
  131. * This method was generated by Apache iBATIS ibator.
  132. * This method returns the value of the database column da_zqls.ZQSJ
  133. *
  134. * @return the value of da_zqls.ZQSJ
  135. *
  136. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  137. */
  138. public Date getZqsj() {
  139. return zqsj;
  140. }
  141. /**
  142. * This method was generated by Apache iBATIS ibator.
  143. * This method sets the value of the database column da_zqls.ZQSJ
  144. *
  145. * @param zqsj the value for da_zqls.ZQSJ
  146. *
  147. * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
  148. */
  149. public void setZqsj(Date zqsj) {
  150. this.zqsj = zqsj;
  151. }
  152. public String getLqmc() {
  153. return lqmc;
  154. }
  155. public void setLqmc(String lqmc) {
  156. this.lqmc = lqmc;
  157. }
  158. public String getOldlqmc() {
  159. return oldlqmc;
  160. }
  161. public void setOldlqmc(String oldlqmc) {
  162. this.oldlqmc = oldlqmc;
  163. }
  164. }