TempDlzt.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. package com.huimv.temp.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. public class TempDlzt extends BaseDO {
  5. /**
  6. * This field was generated by Apache iBATIS ibator.
  7. * This field corresponds to the database column temp_dlzt.ID
  8. *
  9. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  10. */
  11. private Integer id;
  12. /**
  13. * This field was generated by Apache iBATIS ibator.
  14. * This field corresponds to the database column temp_dlzt.SBID
  15. *
  16. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  17. */
  18. private String sbid;
  19. /**
  20. * This field was generated by Apache iBATIS ibator.
  21. * This field corresponds to the database column temp_dlzt.UUID
  22. *
  23. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  24. */
  25. private String uuid;
  26. /**
  27. * This field was generated by Apache iBATIS ibator.
  28. * This field corresponds to the database column temp_dlzt.DLMC
  29. *
  30. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  31. */
  32. private String dlmc;
  33. /**
  34. * This field was generated by Apache iBATIS ibator.
  35. * This field corresponds to the database column temp_dlzt.DLSJ
  36. *
  37. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  38. */
  39. private Date dlsj;
  40. /**
  41. * This field was generated by Apache iBATIS ibator.
  42. * This field corresponds to the database column temp_dlzt.TCSJ
  43. *
  44. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  45. */
  46. private Date tcsj;
  47. /**
  48. * This field was generated by Apache iBATIS ibator.
  49. * This field corresponds to the database column temp_dlzt.DLLX
  50. *
  51. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  52. */
  53. private Integer dllx;
  54. /**
  55. * This method was generated by Apache iBATIS ibator.
  56. * This method returns the value of the database column temp_dlzt.ID
  57. *
  58. * @return the value of temp_dlzt.ID
  59. *
  60. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  61. */
  62. public Integer getId() {
  63. return id;
  64. }
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method sets the value of the database column temp_dlzt.ID
  68. *
  69. * @param id the value for temp_dlzt.ID
  70. *
  71. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  72. */
  73. public void setId(Integer id) {
  74. this.id = id;
  75. }
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method returns the value of the database column temp_dlzt.SBID
  79. *
  80. * @return the value of temp_dlzt.SBID
  81. *
  82. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  83. */
  84. public String getSbid() {
  85. return sbid;
  86. }
  87. /**
  88. * This method was generated by Apache iBATIS ibator.
  89. * This method sets the value of the database column temp_dlzt.SBID
  90. *
  91. * @param sbid the value for temp_dlzt.SBID
  92. *
  93. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  94. */
  95. public void setSbid(String sbid) {
  96. this.sbid = sbid == null ? null : sbid.trim();
  97. }
  98. /**
  99. * This method was generated by Apache iBATIS ibator.
  100. * This method returns the value of the database column temp_dlzt.UUID
  101. *
  102. * @return the value of temp_dlzt.UUID
  103. *
  104. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  105. */
  106. public String getUuid() {
  107. return uuid;
  108. }
  109. /**
  110. * This method was generated by Apache iBATIS ibator.
  111. * This method sets the value of the database column temp_dlzt.UUID
  112. *
  113. * @param uuid the value for temp_dlzt.UUID
  114. *
  115. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  116. */
  117. public void setUuid(String uuid) {
  118. this.uuid = uuid == null ? null : uuid.trim();
  119. }
  120. /**
  121. * This method was generated by Apache iBATIS ibator.
  122. * This method returns the value of the database column temp_dlzt.DLMC
  123. *
  124. * @return the value of temp_dlzt.DLMC
  125. *
  126. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  127. */
  128. public String getDlmc() {
  129. return dlmc;
  130. }
  131. /**
  132. * This method was generated by Apache iBATIS ibator.
  133. * This method sets the value of the database column temp_dlzt.DLMC
  134. *
  135. * @param dlmc the value for temp_dlzt.DLMC
  136. *
  137. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  138. */
  139. public void setDlmc(String dlmc) {
  140. this.dlmc = dlmc == null ? null : dlmc.trim();
  141. }
  142. /**
  143. * This method was generated by Apache iBATIS ibator.
  144. * This method returns the value of the database column temp_dlzt.DLSJ
  145. *
  146. * @return the value of temp_dlzt.DLSJ
  147. *
  148. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  149. */
  150. public Date getDlsj() {
  151. return dlsj;
  152. }
  153. /**
  154. * This method was generated by Apache iBATIS ibator.
  155. * This method sets the value of the database column temp_dlzt.DLSJ
  156. *
  157. * @param dlsj the value for temp_dlzt.DLSJ
  158. *
  159. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  160. */
  161. public void setDlsj(Date dlsj) {
  162. this.dlsj = dlsj;
  163. }
  164. /**
  165. * This method was generated by Apache iBATIS ibator.
  166. * This method returns the value of the database column temp_dlzt.TCSJ
  167. *
  168. * @return the value of temp_dlzt.TCSJ
  169. *
  170. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  171. */
  172. public Date getTcsj() {
  173. return tcsj;
  174. }
  175. /**
  176. * This method was generated by Apache iBATIS ibator.
  177. * This method sets the value of the database column temp_dlzt.TCSJ
  178. *
  179. * @param tcsj the value for temp_dlzt.TCSJ
  180. *
  181. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  182. */
  183. public void setTcsj(Date tcsj) {
  184. this.tcsj = tcsj;
  185. }
  186. /**
  187. * This method was generated by Apache iBATIS ibator.
  188. * This method returns the value of the database column temp_dlzt.DLLX
  189. *
  190. * @return the value of temp_dlzt.DLLX
  191. *
  192. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  193. */
  194. public Integer getDllx() {
  195. return dllx;
  196. }
  197. /**
  198. * This method was generated by Apache iBATIS ibator.
  199. * This method sets the value of the database column temp_dlzt.DLLX
  200. *
  201. * @param dllx the value for temp_dlzt.DLLX
  202. *
  203. * @ibatorgenerated Wed Jul 27 19:08:11 CST 2016
  204. */
  205. public void setDllx(Integer dllx) {
  206. this.dllx = dllx;
  207. }
  208. }