XtWlzt.java 3.5 KB

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