PubSendDetail.java 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. package com.minpay.db.table.model;
  2. import com.startup.minpay.frame.data.AbstractMINBean;
  3. public class PubSendDetail extends AbstractMINBean {
  4. /**
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column pub_send_detail.SDT_FLOWNO
  7. *
  8. * @mbggenerated
  9. */
  10. private String flowno;
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column pub_send_detail.SDT_USERID
  14. *
  15. * @mbggenerated
  16. */
  17. private String userid;
  18. /**
  19. * This field was generated by MyBatis Generator.
  20. * This field corresponds to the database column pub_send_detail.SDT_CODE
  21. *
  22. * @mbggenerated
  23. */
  24. private String code;
  25. /**
  26. * This field was generated by MyBatis Generator.
  27. * This field corresponds to the database column pub_send_detail.SDT_TYPE
  28. *
  29. * @mbggenerated
  30. */
  31. private String type;
  32. /**
  33. * This field was generated by MyBatis Generator.
  34. * This field corresponds to the database column pub_send_detail.SDT_SCOPE
  35. *
  36. * @mbggenerated
  37. */
  38. private String scope;
  39. /**
  40. * This field was generated by MyBatis Generator.
  41. * This field corresponds to the database column pub_send_detail.SDT_SENDTIME
  42. *
  43. * @mbggenerated
  44. */
  45. private String sendtime;
  46. /**
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column pub_send_detail.SDT_STATUS
  49. *
  50. * @mbggenerated
  51. */
  52. private String status;
  53. /**
  54. * This field was generated by MyBatis Generator.
  55. * This field corresponds to the database column pub_send_detail.SDT_TEST_TIME
  56. *
  57. * @mbggenerated
  58. */
  59. private String testTime;
  60. /**
  61. * This field was generated by MyBatis Generator.
  62. * This field corresponds to the database column pub_send_detail.SDT_WRONG_TIMES
  63. *
  64. * @mbggenerated
  65. */
  66. private String wrongTimes;
  67. /**
  68. * This method was generated by MyBatis Generator.
  69. * This method returns the value of the database column pub_send_detail.SDT_FLOWNO
  70. *
  71. * @return the value of pub_send_detail.SDT_FLOWNO
  72. *
  73. * @mbggenerated
  74. */
  75. public String getFlowno() {
  76. return flowno;
  77. }
  78. /**
  79. * This method was generated by MyBatis Generator.
  80. * This method sets the value of the database column pub_send_detail.SDT_FLOWNO
  81. *
  82. * @param flowno the value for pub_send_detail.SDT_FLOWNO
  83. *
  84. * @mbggenerated
  85. */
  86. public void setFlowno(String flowno) {
  87. this.flowno = flowno == null ? null : flowno.trim();
  88. }
  89. /**
  90. * This method was generated by MyBatis Generator.
  91. * This method returns the value of the database column pub_send_detail.SDT_USERID
  92. *
  93. * @return the value of pub_send_detail.SDT_USERID
  94. *
  95. * @mbggenerated
  96. */
  97. public String getUserid() {
  98. return userid;
  99. }
  100. /**
  101. * This method was generated by MyBatis Generator.
  102. * This method sets the value of the database column pub_send_detail.SDT_USERID
  103. *
  104. * @param userid the value for pub_send_detail.SDT_USERID
  105. *
  106. * @mbggenerated
  107. */
  108. public void setUserid(String userid) {
  109. this.userid = userid == null ? null : userid.trim();
  110. }
  111. /**
  112. * This method was generated by MyBatis Generator.
  113. * This method returns the value of the database column pub_send_detail.SDT_CODE
  114. *
  115. * @return the value of pub_send_detail.SDT_CODE
  116. *
  117. * @mbggenerated
  118. */
  119. public String getCode() {
  120. return code;
  121. }
  122. /**
  123. * This method was generated by MyBatis Generator.
  124. * This method sets the value of the database column pub_send_detail.SDT_CODE
  125. *
  126. * @param code the value for pub_send_detail.SDT_CODE
  127. *
  128. * @mbggenerated
  129. */
  130. public void setCode(String code) {
  131. this.code = code == null ? null : code.trim();
  132. }
  133. /**
  134. * This method was generated by MyBatis Generator.
  135. * This method returns the value of the database column pub_send_detail.SDT_TYPE
  136. *
  137. * @return the value of pub_send_detail.SDT_TYPE
  138. *
  139. * @mbggenerated
  140. */
  141. public String getType() {
  142. return type;
  143. }
  144. /**
  145. * This method was generated by MyBatis Generator.
  146. * This method sets the value of the database column pub_send_detail.SDT_TYPE
  147. *
  148. * @param type the value for pub_send_detail.SDT_TYPE
  149. *
  150. * @mbggenerated
  151. */
  152. public void setType(String type) {
  153. this.type = type == null ? null : type.trim();
  154. }
  155. /**
  156. * This method was generated by MyBatis Generator.
  157. * This method returns the value of the database column pub_send_detail.SDT_SCOPE
  158. *
  159. * @return the value of pub_send_detail.SDT_SCOPE
  160. *
  161. * @mbggenerated
  162. */
  163. public String getScope() {
  164. return scope;
  165. }
  166. /**
  167. * This method was generated by MyBatis Generator.
  168. * This method sets the value of the database column pub_send_detail.SDT_SCOPE
  169. *
  170. * @param scope the value for pub_send_detail.SDT_SCOPE
  171. *
  172. * @mbggenerated
  173. */
  174. public void setScope(String scope) {
  175. this.scope = scope == null ? null : scope.trim();
  176. }
  177. /**
  178. * This method was generated by MyBatis Generator.
  179. * This method returns the value of the database column pub_send_detail.SDT_SENDTIME
  180. *
  181. * @return the value of pub_send_detail.SDT_SENDTIME
  182. *
  183. * @mbggenerated
  184. */
  185. public String getSendtime() {
  186. return sendtime;
  187. }
  188. /**
  189. * This method was generated by MyBatis Generator.
  190. * This method sets the value of the database column pub_send_detail.SDT_SENDTIME
  191. *
  192. * @param sendtime the value for pub_send_detail.SDT_SENDTIME
  193. *
  194. * @mbggenerated
  195. */
  196. public void setSendtime(String sendtime) {
  197. this.sendtime = sendtime == null ? null : sendtime.trim();
  198. }
  199. /**
  200. * This method was generated by MyBatis Generator.
  201. * This method returns the value of the database column pub_send_detail.SDT_STATUS
  202. *
  203. * @return the value of pub_send_detail.SDT_STATUS
  204. *
  205. * @mbggenerated
  206. */
  207. public String getStatus() {
  208. return status;
  209. }
  210. /**
  211. * This method was generated by MyBatis Generator.
  212. * This method sets the value of the database column pub_send_detail.SDT_STATUS
  213. *
  214. * @param status the value for pub_send_detail.SDT_STATUS
  215. *
  216. * @mbggenerated
  217. */
  218. public void setStatus(String status) {
  219. this.status = status == null ? null : status.trim();
  220. }
  221. /**
  222. * This method was generated by MyBatis Generator.
  223. * This method returns the value of the database column pub_send_detail.SDT_TEST_TIME
  224. *
  225. * @return the value of pub_send_detail.SDT_TEST_TIME
  226. *
  227. * @mbggenerated
  228. */
  229. public String getTestTime() {
  230. return testTime;
  231. }
  232. /**
  233. * This method was generated by MyBatis Generator.
  234. * This method sets the value of the database column pub_send_detail.SDT_TEST_TIME
  235. *
  236. * @param testTime the value for pub_send_detail.SDT_TEST_TIME
  237. *
  238. * @mbggenerated
  239. */
  240. public void setTestTime(String testTime) {
  241. this.testTime = testTime == null ? null : testTime.trim();
  242. }
  243. /**
  244. * This method was generated by MyBatis Generator.
  245. * This method returns the value of the database column pub_send_detail.SDT_WRONG_TIMES
  246. *
  247. * @return the value of pub_send_detail.SDT_WRONG_TIMES
  248. *
  249. * @mbggenerated
  250. */
  251. public String getWrongTimes() {
  252. return wrongTimes;
  253. }
  254. /**
  255. * This method was generated by MyBatis Generator.
  256. * This method sets the value of the database column pub_send_detail.SDT_WRONG_TIMES
  257. *
  258. * @param wrongTimes the value for pub_send_detail.SDT_WRONG_TIMES
  259. *
  260. * @mbggenerated
  261. */
  262. public void setWrongTimes(String wrongTimes) {
  263. this.wrongTimes = wrongTimes == null ? null : wrongTimes.trim();
  264. }
  265. }