TpLogisticsHis.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package com.minpay.db.table.model;
  2. import com.startup.minpay.frame.data.AbstractMINBean;
  3. public class TpLogisticsHis extends AbstractMINBean {
  4. /**
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column tp_logistics_his.LHS_FOLWNO
  7. *
  8. * @mbggenerated
  9. */
  10. private String folwno;
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column tp_logistics_his.LHS_ORDERNO
  14. *
  15. * @mbggenerated
  16. */
  17. private String orderno;
  18. /**
  19. * This field was generated by MyBatis Generator.
  20. * This field corresponds to the database column tp_logistics_his.LHS_LAST_STT
  21. *
  22. * @mbggenerated
  23. */
  24. private String lastStt;
  25. /**
  26. * This field was generated by MyBatis Generator.
  27. * This field corresponds to the database column tp_logistics_his.LHS_STT
  28. *
  29. * @mbggenerated
  30. */
  31. private String stt;
  32. /**
  33. * This field was generated by MyBatis Generator.
  34. * This field corresponds to the database column tp_logistics_his.LHS_USER
  35. *
  36. * @mbggenerated
  37. */
  38. private String user;
  39. /**
  40. * This field was generated by MyBatis Generator.
  41. * This field corresponds to the database column tp_logistics_his.LHS_TIME
  42. *
  43. * @mbggenerated
  44. */
  45. private String time;
  46. /**
  47. * This method was generated by MyBatis Generator.
  48. * This method returns the value of the database column tp_logistics_his.LHS_FOLWNO
  49. *
  50. * @return the value of tp_logistics_his.LHS_FOLWNO
  51. *
  52. * @mbggenerated
  53. */
  54. public String getFolwno() {
  55. return folwno;
  56. }
  57. /**
  58. * This method was generated by MyBatis Generator.
  59. * This method sets the value of the database column tp_logistics_his.LHS_FOLWNO
  60. *
  61. * @param folwno the value for tp_logistics_his.LHS_FOLWNO
  62. *
  63. * @mbggenerated
  64. */
  65. public void setFolwno(String folwno) {
  66. this.folwno = folwno == null ? null : folwno.trim();
  67. }
  68. /**
  69. * This method was generated by MyBatis Generator.
  70. * This method returns the value of the database column tp_logistics_his.LHS_ORDERNO
  71. *
  72. * @return the value of tp_logistics_his.LHS_ORDERNO
  73. *
  74. * @mbggenerated
  75. */
  76. public String getOrderno() {
  77. return orderno;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator.
  81. * This method sets the value of the database column tp_logistics_his.LHS_ORDERNO
  82. *
  83. * @param orderno the value for tp_logistics_his.LHS_ORDERNO
  84. *
  85. * @mbggenerated
  86. */
  87. public void setOrderno(String orderno) {
  88. this.orderno = orderno == null ? null : orderno.trim();
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator.
  92. * This method returns the value of the database column tp_logistics_his.LHS_LAST_STT
  93. *
  94. * @return the value of tp_logistics_his.LHS_LAST_STT
  95. *
  96. * @mbggenerated
  97. */
  98. public String getLastStt() {
  99. return lastStt;
  100. }
  101. /**
  102. * This method was generated by MyBatis Generator.
  103. * This method sets the value of the database column tp_logistics_his.LHS_LAST_STT
  104. *
  105. * @param lastStt the value for tp_logistics_his.LHS_LAST_STT
  106. *
  107. * @mbggenerated
  108. */
  109. public void setLastStt(String lastStt) {
  110. this.lastStt = lastStt == null ? null : lastStt.trim();
  111. }
  112. /**
  113. * This method was generated by MyBatis Generator.
  114. * This method returns the value of the database column tp_logistics_his.LHS_STT
  115. *
  116. * @return the value of tp_logistics_his.LHS_STT
  117. *
  118. * @mbggenerated
  119. */
  120. public String getStt() {
  121. return stt;
  122. }
  123. /**
  124. * This method was generated by MyBatis Generator.
  125. * This method sets the value of the database column tp_logistics_his.LHS_STT
  126. *
  127. * @param stt the value for tp_logistics_his.LHS_STT
  128. *
  129. * @mbggenerated
  130. */
  131. public void setStt(String stt) {
  132. this.stt = stt == null ? null : stt.trim();
  133. }
  134. /**
  135. * This method was generated by MyBatis Generator.
  136. * This method returns the value of the database column tp_logistics_his.LHS_USER
  137. *
  138. * @return the value of tp_logistics_his.LHS_USER
  139. *
  140. * @mbggenerated
  141. */
  142. public String getUser() {
  143. return user;
  144. }
  145. /**
  146. * This method was generated by MyBatis Generator.
  147. * This method sets the value of the database column tp_logistics_his.LHS_USER
  148. *
  149. * @param user the value for tp_logistics_his.LHS_USER
  150. *
  151. * @mbggenerated
  152. */
  153. public void setUser(String user) {
  154. this.user = user == null ? null : user.trim();
  155. }
  156. /**
  157. * This method was generated by MyBatis Generator.
  158. * This method returns the value of the database column tp_logistics_his.LHS_TIME
  159. *
  160. * @return the value of tp_logistics_his.LHS_TIME
  161. *
  162. * @mbggenerated
  163. */
  164. public String getTime() {
  165. return time;
  166. }
  167. /**
  168. * This method was generated by MyBatis Generator.
  169. * This method sets the value of the database column tp_logistics_his.LHS_TIME
  170. *
  171. * @param time the value for tp_logistics_his.LHS_TIME
  172. *
  173. * @mbggenerated
  174. */
  175. public void setTime(String time) {
  176. this.time = time == null ? null : time.trim();
  177. }
  178. }