TDunLog.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class TDunLog {
  4. /**
  5. *
  6. * This field was generated by MyBatis Generator.
  7. * This field corresponds to the database column t_dun_log.id
  8. *
  9. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  10. */
  11. private String id;
  12. /**
  13. *
  14. * This field was generated by MyBatis Generator.
  15. * This field corresponds to the database column t_dun_log.dun_id
  16. *
  17. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  18. */
  19. private String dunId;
  20. /**
  21. *
  22. * This field was generated by MyBatis Generator.
  23. * This field corresponds to the database column t_dun_log.dum_by
  24. *
  25. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  26. */
  27. private String dumBy;
  28. /**
  29. *
  30. * This field was generated by MyBatis Generator.
  31. * This field corresponds to the database column t_dun_log.dum_time
  32. *
  33. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  34. */
  35. private Date dumTime;
  36. /**
  37. *
  38. * This field was generated by MyBatis Generator.
  39. * This field corresponds to the database column t_dun_log.remarks
  40. *
  41. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  42. */
  43. private String remarks;
  44. /**
  45. * This method was generated by MyBatis Generator.
  46. * This method returns the value of the database column t_dun_log.id
  47. *
  48. * @return the value of t_dun_log.id
  49. *
  50. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  51. */
  52. public String getId() {
  53. return id;
  54. }
  55. /**
  56. * This method was generated by MyBatis Generator.
  57. * This method sets the value of the database column t_dun_log.id
  58. *
  59. * @param id the value for t_dun_log.id
  60. *
  61. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  62. */
  63. public void setId(String id) {
  64. this.id = id;
  65. }
  66. /**
  67. * This method was generated by MyBatis Generator.
  68. * This method returns the value of the database column t_dun_log.dun_id
  69. *
  70. * @return the value of t_dun_log.dun_id
  71. *
  72. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  73. */
  74. public String getDunId() {
  75. return dunId;
  76. }
  77. /**
  78. * This method was generated by MyBatis Generator.
  79. * This method sets the value of the database column t_dun_log.dun_id
  80. *
  81. * @param dunId the value for t_dun_log.dun_id
  82. *
  83. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  84. */
  85. public void setDunId(String dunId) {
  86. this.dunId = dunId;
  87. }
  88. /**
  89. * This method was generated by MyBatis Generator.
  90. * This method returns the value of the database column t_dun_log.dum_by
  91. *
  92. * @return the value of t_dun_log.dum_by
  93. *
  94. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  95. */
  96. public String getDumBy() {
  97. return dumBy;
  98. }
  99. /**
  100. * This method was generated by MyBatis Generator.
  101. * This method sets the value of the database column t_dun_log.dum_by
  102. *
  103. * @param dumBy the value for t_dun_log.dum_by
  104. *
  105. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  106. */
  107. public void setDumBy(String dumBy) {
  108. this.dumBy = dumBy;
  109. }
  110. /**
  111. * This method was generated by MyBatis Generator.
  112. * This method returns the value of the database column t_dun_log.dum_time
  113. *
  114. * @return the value of t_dun_log.dum_time
  115. *
  116. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  117. */
  118. public Date getDumTime() {
  119. return dumTime;
  120. }
  121. /**
  122. * This method was generated by MyBatis Generator.
  123. * This method sets the value of the database column t_dun_log.dum_time
  124. *
  125. * @param dumTime the value for t_dun_log.dum_time
  126. *
  127. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  128. */
  129. public void setDumTime(Date dumTime) {
  130. this.dumTime = dumTime;
  131. }
  132. /**
  133. * This method was generated by MyBatis Generator.
  134. * This method returns the value of the database column t_dun_log.remarks
  135. *
  136. * @return the value of t_dun_log.remarks
  137. *
  138. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  139. */
  140. public String getRemarks() {
  141. return remarks;
  142. }
  143. /**
  144. * This method was generated by MyBatis Generator.
  145. * This method sets the value of the database column t_dun_log.remarks
  146. *
  147. * @param remarks the value for t_dun_log.remarks
  148. *
  149. * @mbg.generated Tue Nov 20 11:50:41 CST 2018
  150. */
  151. public void setRemarks(String remarks) {
  152. this.remarks = remarks;
  153. }
  154. }