Vcode.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.js.kbt.model;
  2. import java.util.Date;
  3. public class Vcode {
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.id
  6. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  7. */
  8. private Integer id;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.mobile
  11. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  12. */
  13. private String mobile;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.vcode
  16. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  17. */
  18. private String vcode;
  19. /**
  20. * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.indate
  21. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  22. */
  23. private Date indate;
  24. /**
  25. * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.id
  26. * @return the value of vcode.id
  27. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  28. */
  29. public Integer getId() {
  30. return id;
  31. }
  32. /**
  33. * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.id
  34. * @param id the value for vcode.id
  35. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  36. */
  37. public void setId(Integer id) {
  38. this.id = id;
  39. }
  40. /**
  41. * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.mobile
  42. * @return the value of vcode.mobile
  43. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  44. */
  45. public String getMobile() {
  46. return mobile;
  47. }
  48. /**
  49. * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.mobile
  50. * @param mobile the value for vcode.mobile
  51. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  52. */
  53. public void setMobile(String mobile) {
  54. this.mobile = mobile;
  55. }
  56. /**
  57. * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.vcode
  58. * @return the value of vcode.vcode
  59. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  60. */
  61. public String getVcode() {
  62. return vcode;
  63. }
  64. /**
  65. * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.vcode
  66. * @param vcode the value for vcode.vcode
  67. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  68. */
  69. public void setVcode(String vcode) {
  70. this.vcode = vcode;
  71. }
  72. /**
  73. * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.indate
  74. * @return the value of vcode.indate
  75. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  76. */
  77. public Date getIndate() {
  78. return indate;
  79. }
  80. /**
  81. * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.indate
  82. * @param indate the value for vcode.indate
  83. * @mbggenerated Tue Jul 04 16:24:58 CST 2017
  84. */
  85. public void setIndate(Date indate) {
  86. this.indate = indate;
  87. }
  88. }