XtLxsz.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. package com.huimv.xt.dataobject;
  2. import java.util.Date;
  3. import java.util.List;
  4. import com.huimv.dp.dto.XtLxDTO;
  5. public class XtLxsz extends BaseDO {
  6. /**
  7. * This field was generated by Apache iBATIS ibator.
  8. * This field corresponds to the database column xt_lxsz.ID
  9. *
  10. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  11. */
  12. private Integer id;
  13. /**
  14. * This field was generated by Apache iBATIS ibator.
  15. * This field corresponds to the database column xt_lxsz.MCID
  16. *
  17. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  18. */
  19. private Integer mcid;
  20. /**
  21. * This field was generated by Apache iBATIS ibator.
  22. * This field corresponds to the database column xt_lxsz.DS
  23. *
  24. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  25. */
  26. private String ds;
  27. /**
  28. * This field was generated by Apache iBATIS ibator.
  29. * This field corresponds to the database column xt_lxsz.SLSZ
  30. *
  31. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  32. */
  33. private String slsz;
  34. /**
  35. * This field was generated by Apache iBATIS ibator.
  36. * This field corresponds to the database column xt_lxsz.SDSL
  37. *
  38. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  39. */
  40. private String sdsl;
  41. /**
  42. * This field was generated by Apache iBATIS ibator.
  43. * This field corresponds to the database column xt_lxsz.SZSJ
  44. *
  45. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  46. */
  47. private Date szsj;
  48. /**
  49. * This method was generated by Apache iBATIS ibator.
  50. * This method returns the value of the database column xt_lxsz.ID
  51. *
  52. * @return the value of xt_lxsz.ID
  53. *
  54. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  55. */
  56. public Integer getId() {
  57. return id;
  58. }
  59. /**
  60. * This method was generated by Apache iBATIS ibator.
  61. * This method sets the value of the database column xt_lxsz.ID
  62. *
  63. * @param id the value for xt_lxsz.ID
  64. *
  65. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  66. */
  67. public void setId(Integer id) {
  68. this.id = id;
  69. }
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method returns the value of the database column xt_lxsz.MCID
  73. *
  74. * @return the value of xt_lxsz.MCID
  75. *
  76. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  77. */
  78. public Integer getMcid() {
  79. return mcid;
  80. }
  81. /**
  82. * This method was generated by Apache iBATIS ibator.
  83. * This method sets the value of the database column xt_lxsz.MCID
  84. *
  85. * @param mcid the value for xt_lxsz.MCID
  86. *
  87. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  88. */
  89. public void setMcid(Integer mcid) {
  90. this.mcid = mcid;
  91. }
  92. /**
  93. * This method was generated by Apache iBATIS ibator.
  94. * This method returns the value of the database column xt_lxsz.DS
  95. *
  96. * @return the value of xt_lxsz.DS
  97. *
  98. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  99. */
  100. public String getDs() {
  101. return ds;
  102. }
  103. /**
  104. * This method was generated by Apache iBATIS ibator.
  105. * This method sets the value of the database column xt_lxsz.DS
  106. *
  107. * @param ds the value for xt_lxsz.DS
  108. *
  109. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  110. */
  111. public void setDs(String ds) {
  112. this.ds = ds == null ? null : ds.trim();
  113. }
  114. /**
  115. * This method was generated by Apache iBATIS ibator.
  116. * This method returns the value of the database column xt_lxsz.SLSZ
  117. *
  118. * @return the value of xt_lxsz.SLSZ
  119. *
  120. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  121. */
  122. public String getSlsz() {
  123. return slsz;
  124. }
  125. /**
  126. * This method was generated by Apache iBATIS ibator.
  127. * This method sets the value of the database column xt_lxsz.SLSZ
  128. *
  129. * @param slsz the value for xt_lxsz.SLSZ
  130. *
  131. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  132. */
  133. public void setSlsz(String slsz) {
  134. this.slsz = slsz == null ? null : slsz.trim();
  135. }
  136. /**
  137. * This method was generated by Apache iBATIS ibator.
  138. * This method returns the value of the database column xt_lxsz.SDSL
  139. *
  140. * @return the value of xt_lxsz.SDSL
  141. *
  142. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  143. */
  144. public String getSdsl() {
  145. return sdsl;
  146. }
  147. /**
  148. * This method was generated by Apache iBATIS ibator.
  149. * This method sets the value of the database column xt_lxsz.SDSL
  150. *
  151. * @param sdsl the value for xt_lxsz.SDSL
  152. *
  153. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  154. */
  155. public void setSdsl(String sdsl) {
  156. this.sdsl = sdsl == null ? null : sdsl.trim();
  157. }
  158. /**
  159. * This method was generated by Apache iBATIS ibator.
  160. * This method returns the value of the database column xt_lxsz.SZSJ
  161. *
  162. * @return the value of xt_lxsz.SZSJ
  163. *
  164. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  165. */
  166. public Date getSzsj() {
  167. return szsj;
  168. }
  169. /**
  170. * This method was generated by Apache iBATIS ibator.
  171. * This method sets the value of the database column xt_lxsz.SZSJ
  172. *
  173. * @param szsj the value for xt_lxsz.SZSJ
  174. *
  175. * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
  176. */
  177. public void setSzsj(Date szsj) {
  178. this.szsj = szsj;
  179. }
  180. private String qymc;
  181. private List<XtLxDTO> dtoList;
  182. public String getQymc() {
  183. return qymc;
  184. }
  185. public void setQymc(String qymc) {
  186. this.qymc = qymc;
  187. }
  188. public List<XtLxDTO> getDtoList() {
  189. return dtoList;
  190. }
  191. public void setDtoList(List<XtLxDTO> dtoList) {
  192. this.dtoList = dtoList;
  193. }
  194. }