XtLxzt.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package com.huimv.xt.dataobject;
  2. import java.util.Date;
  3. public class XtLxzt extends BaseDO {
  4. /**
  5. * This field was generated by Apache iBATIS ibator.
  6. * This field corresponds to the database column xt_lxzt.ID
  7. *
  8. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  9. */
  10. private Integer id;
  11. /**
  12. * This field was generated by Apache iBATIS ibator.
  13. * This field corresponds to the database column xt_lxzt.JQID
  14. *
  15. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  16. */
  17. private String jqid;
  18. /**
  19. * This field was generated by Apache iBATIS ibator.
  20. * This field corresponds to the database column xt_lxzt.LXZT
  21. *
  22. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  23. */
  24. private String lxzt;
  25. /**
  26. * This field was generated by Apache iBATIS ibator.
  27. * This field corresponds to the database column xt_lxzt.XGSJ
  28. *
  29. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  30. */
  31. private Date xgsj;
  32. /**
  33. * This method was generated by Apache iBATIS ibator.
  34. * This method returns the value of the database column xt_lxzt.ID
  35. *
  36. * @return the value of xt_lxzt.ID
  37. *
  38. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  39. */
  40. public Integer getId() {
  41. return id;
  42. }
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method sets the value of the database column xt_lxzt.ID
  46. *
  47. * @param id the value for xt_lxzt.ID
  48. *
  49. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  50. */
  51. public void setId(Integer id) {
  52. this.id = id;
  53. }
  54. /**
  55. * This method was generated by Apache iBATIS ibator.
  56. * This method returns the value of the database column xt_lxzt.JQID
  57. *
  58. * @return the value of xt_lxzt.JQID
  59. *
  60. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  61. */
  62. public String getJqid() {
  63. return jqid;
  64. }
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method sets the value of the database column xt_lxzt.JQID
  68. *
  69. * @param jqid the value for xt_lxzt.JQID
  70. *
  71. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  72. */
  73. public void setJqid(String jqid) {
  74. this.jqid = jqid == null ? null : jqid.trim();
  75. }
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method returns the value of the database column xt_lxzt.LXZT
  79. *
  80. * @return the value of xt_lxzt.LXZT
  81. *
  82. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  83. */
  84. public String getLxzt() {
  85. return lxzt;
  86. }
  87. /**
  88. * This method was generated by Apache iBATIS ibator.
  89. * This method sets the value of the database column xt_lxzt.LXZT
  90. *
  91. * @param lxzt the value for xt_lxzt.LXZT
  92. *
  93. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  94. */
  95. public void setLxzt(String lxzt) {
  96. this.lxzt = lxzt == null ? null : lxzt.trim();
  97. }
  98. /**
  99. * This method was generated by Apache iBATIS ibator.
  100. * This method returns the value of the database column xt_lxzt.XGSJ
  101. *
  102. * @return the value of xt_lxzt.XGSJ
  103. *
  104. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  105. */
  106. public Date getXgsj() {
  107. return xgsj;
  108. }
  109. /**
  110. * This method was generated by Apache iBATIS ibator.
  111. * This method sets the value of the database column xt_lxzt.XGSJ
  112. *
  113. * @param xgsj the value for xt_lxzt.XGSJ
  114. *
  115. * @ibatorgenerated Tue Apr 21 10:09:24 CST 2020
  116. */
  117. public void setXgsj(Date xgsj) {
  118. this.xgsj = xgsj;
  119. }
  120. }