FaceReco.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. package com.huimv.face.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. public class FaceReco extends BaseDO {
  5. /**
  6. * This field was generated by Apache iBATIS ibator.
  7. * This field corresponds to the database column face_reco.ID
  8. *
  9. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  10. */
  11. private Integer id;
  12. /**
  13. * This field was generated by Apache iBATIS ibator.
  14. * This field corresponds to the database column face_reco.USERID
  15. *
  16. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  17. */
  18. private String userid;
  19. /**
  20. * This field was generated by Apache iBATIS ibator.
  21. * This field corresponds to the database column face_reco.SBID
  22. *
  23. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  24. */
  25. private String sbid;
  26. /**
  27. * This field was generated by Apache iBATIS ibator.
  28. * This field corresponds to the database column face_reco.MCID
  29. *
  30. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  31. */
  32. private Integer mcid;
  33. /**
  34. * This field was generated by Apache iBATIS ibator.
  35. * This field corresponds to the database column face_reco.XGSJ
  36. *
  37. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  38. */
  39. private Date xgsj;
  40. /**
  41. * This method was generated by Apache iBATIS ibator.
  42. * This method returns the value of the database column face_reco.ID
  43. *
  44. * @return the value of face_reco.ID
  45. *
  46. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  47. */
  48. public Integer getId() {
  49. return id;
  50. }
  51. /**
  52. * This method was generated by Apache iBATIS ibator.
  53. * This method sets the value of the database column face_reco.ID
  54. *
  55. * @param id the value for face_reco.ID
  56. *
  57. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  58. */
  59. public void setId(Integer id) {
  60. this.id = id;
  61. }
  62. /**
  63. * This method was generated by Apache iBATIS ibator.
  64. * This method returns the value of the database column face_reco.USERID
  65. *
  66. * @return the value of face_reco.USERID
  67. *
  68. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  69. */
  70. public String getUserid() {
  71. return userid;
  72. }
  73. /**
  74. * This method was generated by Apache iBATIS ibator.
  75. * This method sets the value of the database column face_reco.USERID
  76. *
  77. * @param userid the value for face_reco.USERID
  78. *
  79. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  80. */
  81. public void setUserid(String userid) {
  82. this.userid = userid == null ? null : userid.trim();
  83. }
  84. /**
  85. * This method was generated by Apache iBATIS ibator.
  86. * This method returns the value of the database column face_reco.SBID
  87. *
  88. * @return the value of face_reco.SBID
  89. *
  90. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  91. */
  92. public String getSbid() {
  93. return sbid;
  94. }
  95. /**
  96. * This method was generated by Apache iBATIS ibator.
  97. * This method sets the value of the database column face_reco.SBID
  98. *
  99. * @param sbid the value for face_reco.SBID
  100. *
  101. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  102. */
  103. public void setSbid(String sbid) {
  104. this.sbid = sbid == null ? null : sbid.trim();
  105. }
  106. /**
  107. * This method was generated by Apache iBATIS ibator.
  108. * This method returns the value of the database column face_reco.MCID
  109. *
  110. * @return the value of face_reco.MCID
  111. *
  112. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  113. */
  114. public Integer getMcid() {
  115. return mcid;
  116. }
  117. /**
  118. * This method was generated by Apache iBATIS ibator.
  119. * This method sets the value of the database column face_reco.MCID
  120. *
  121. * @param mcid the value for face_reco.MCID
  122. *
  123. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  124. */
  125. public void setMcid(Integer mcid) {
  126. this.mcid = mcid;
  127. }
  128. /**
  129. * This method was generated by Apache iBATIS ibator.
  130. * This method returns the value of the database column face_reco.XGSJ
  131. *
  132. * @return the value of face_reco.XGSJ
  133. *
  134. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  135. */
  136. public Date getXgsj() {
  137. return xgsj;
  138. }
  139. /**
  140. * This method was generated by Apache iBATIS ibator.
  141. * This method sets the value of the database column face_reco.XGSJ
  142. *
  143. * @param xgsj the value for face_reco.XGSJ
  144. *
  145. * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
  146. */
  147. public void setXgsj(Date xgsj) {
  148. this.xgsj = xgsj;
  149. }
  150. }