StationInfo.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. package com.platform.yijia.pojo;
  2. public class StationInfo {
  3. /**
  4. *
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column station_info.station_id
  7. *
  8. * @mbg.generated
  9. */
  10. private Integer stationId;
  11. /**
  12. *
  13. * This field was generated by MyBatis Generator.
  14. * This field corresponds to the database column station_info.station_name
  15. *
  16. * @mbg.generated
  17. */
  18. private String stationName;
  19. /**
  20. *
  21. * This field was generated by MyBatis Generator.
  22. * This field corresponds to the database column station_info.station_address
  23. *
  24. * @mbg.generated
  25. */
  26. private String stationAddress;
  27. /**
  28. *
  29. * This field was generated by MyBatis Generator.
  30. * This field corresponds to the database column station_info.oil_gun_num
  31. *
  32. * @mbg.generated
  33. */
  34. private Integer oilGunNum;
  35. /**
  36. *
  37. * This field was generated by MyBatis Generator.
  38. * This field corresponds to the database column station_info.contacts
  39. *
  40. * @mbg.generated
  41. */
  42. private String contacts;
  43. /**
  44. *
  45. * This field was generated by MyBatis Generator.
  46. * This field corresponds to the database column station_info.phone
  47. *
  48. * @mbg.generated
  49. */
  50. private String phone;
  51. /**
  52. *
  53. * This field was generated by MyBatis Generator.
  54. * This field corresponds to the database column station_info.station_group_id
  55. *
  56. * @mbg.generated
  57. */
  58. private Integer stationGroupId;
  59. /**
  60. *
  61. * This field was generated by MyBatis Generator.
  62. * This field corresponds to the database column station_info.station_group_name
  63. *
  64. * @mbg.generated
  65. */
  66. private String stationGroupName;
  67. /**
  68. *
  69. * This field was generated by MyBatis Generator.
  70. * This field corresponds to the database column station_info.station_longitude
  71. *
  72. * @mbg.generated
  73. */
  74. private String stationLongitude;
  75. /**
  76. *
  77. * This field was generated by MyBatis Generator.
  78. * This field corresponds to the database column station_info.station_latitude
  79. *
  80. * @mbg.generated
  81. */
  82. private String stationLatitude;
  83. /**
  84. *
  85. * This field was generated by MyBatis Generator.
  86. * This field corresponds to the database column station_info.mno
  87. *
  88. * @mbg.generated
  89. */
  90. private Integer mno;
  91. /**
  92. *
  93. * This field was generated by MyBatis Generator.
  94. * This field corresponds to the database column station_info.station_pic
  95. *
  96. * @mbg.generated
  97. */
  98. private byte[] stationPic;
  99. /**
  100. * This method was generated by MyBatis Generator.
  101. * This method returns the value of the database column station_info.station_id
  102. *
  103. * @return the value of station_info.station_id
  104. *
  105. * @mbg.generated
  106. */
  107. public Integer getStationId() {
  108. return stationId;
  109. }
  110. /**
  111. * This method was generated by MyBatis Generator.
  112. * This method sets the value of the database column station_info.station_id
  113. *
  114. * @param stationId the value for station_info.station_id
  115. *
  116. * @mbg.generated
  117. */
  118. public void setStationId(Integer stationId) {
  119. this.stationId = stationId;
  120. }
  121. /**
  122. * This method was generated by MyBatis Generator.
  123. * This method returns the value of the database column station_info.station_name
  124. *
  125. * @return the value of station_info.station_name
  126. *
  127. * @mbg.generated
  128. */
  129. public String getStationName() {
  130. return stationName;
  131. }
  132. /**
  133. * This method was generated by MyBatis Generator.
  134. * This method sets the value of the database column station_info.station_name
  135. *
  136. * @param stationName the value for station_info.station_name
  137. *
  138. * @mbg.generated
  139. */
  140. public void setStationName(String stationName) {
  141. this.stationName = stationName == null ? null : stationName.trim();
  142. }
  143. /**
  144. * This method was generated by MyBatis Generator.
  145. * This method returns the value of the database column station_info.station_address
  146. *
  147. * @return the value of station_info.station_address
  148. *
  149. * @mbg.generated
  150. */
  151. public String getStationAddress() {
  152. return stationAddress;
  153. }
  154. /**
  155. * This method was generated by MyBatis Generator.
  156. * This method sets the value of the database column station_info.station_address
  157. *
  158. * @param stationAddress the value for station_info.station_address
  159. *
  160. * @mbg.generated
  161. */
  162. public void setStationAddress(String stationAddress) {
  163. this.stationAddress = stationAddress == null ? null : stationAddress.trim();
  164. }
  165. /**
  166. * This method was generated by MyBatis Generator.
  167. * This method returns the value of the database column station_info.oil_gun_num
  168. *
  169. * @return the value of station_info.oil_gun_num
  170. *
  171. * @mbg.generated
  172. */
  173. public Integer getOilGunNum() {
  174. return oilGunNum;
  175. }
  176. /**
  177. * This method was generated by MyBatis Generator.
  178. * This method sets the value of the database column station_info.oil_gun_num
  179. *
  180. * @param oilGunNum the value for station_info.oil_gun_num
  181. *
  182. * @mbg.generated
  183. */
  184. public void setOilGunNum(Integer oilGunNum) {
  185. this.oilGunNum = oilGunNum;
  186. }
  187. /**
  188. * This method was generated by MyBatis Generator.
  189. * This method returns the value of the database column station_info.contacts
  190. *
  191. * @return the value of station_info.contacts
  192. *
  193. * @mbg.generated
  194. */
  195. public String getContacts() {
  196. return contacts;
  197. }
  198. /**
  199. * This method was generated by MyBatis Generator.
  200. * This method sets the value of the database column station_info.contacts
  201. *
  202. * @param contacts the value for station_info.contacts
  203. *
  204. * @mbg.generated
  205. */
  206. public void setContacts(String contacts) {
  207. this.contacts = contacts == null ? null : contacts.trim();
  208. }
  209. /**
  210. * This method was generated by MyBatis Generator.
  211. * This method returns the value of the database column station_info.phone
  212. *
  213. * @return the value of station_info.phone
  214. *
  215. * @mbg.generated
  216. */
  217. public String getPhone() {
  218. return phone;
  219. }
  220. /**
  221. * This method was generated by MyBatis Generator.
  222. * This method sets the value of the database column station_info.phone
  223. *
  224. * @param phone the value for station_info.phone
  225. *
  226. * @mbg.generated
  227. */
  228. public void setPhone(String phone) {
  229. this.phone = phone == null ? null : phone.trim();
  230. }
  231. /**
  232. * This method was generated by MyBatis Generator.
  233. * This method returns the value of the database column station_info.station_group_id
  234. *
  235. * @return the value of station_info.station_group_id
  236. *
  237. * @mbg.generated
  238. */
  239. public Integer getStationGroupId() {
  240. return stationGroupId;
  241. }
  242. /**
  243. * This method was generated by MyBatis Generator.
  244. * This method sets the value of the database column station_info.station_group_id
  245. *
  246. * @param stationGroupId the value for station_info.station_group_id
  247. *
  248. * @mbg.generated
  249. */
  250. public void setStationGroupId(Integer stationGroupId) {
  251. this.stationGroupId = stationGroupId;
  252. }
  253. /**
  254. * This method was generated by MyBatis Generator.
  255. * This method returns the value of the database column station_info.station_group_name
  256. *
  257. * @return the value of station_info.station_group_name
  258. *
  259. * @mbg.generated
  260. */
  261. public String getStationGroupName() {
  262. return stationGroupName;
  263. }
  264. /**
  265. * This method was generated by MyBatis Generator.
  266. * This method sets the value of the database column station_info.station_group_name
  267. *
  268. * @param stationGroupName the value for station_info.station_group_name
  269. *
  270. * @mbg.generated
  271. */
  272. public void setStationGroupName(String stationGroupName) {
  273. this.stationGroupName = stationGroupName == null ? null : stationGroupName.trim();
  274. }
  275. /**
  276. * This method was generated by MyBatis Generator.
  277. * This method returns the value of the database column station_info.station_longitude
  278. *
  279. * @return the value of station_info.station_longitude
  280. *
  281. * @mbg.generated
  282. */
  283. public String getStationLongitude() {
  284. return stationLongitude;
  285. }
  286. /**
  287. * This method was generated by MyBatis Generator.
  288. * This method sets the value of the database column station_info.station_longitude
  289. *
  290. * @param stationLongitude the value for station_info.station_longitude
  291. *
  292. * @mbg.generated
  293. */
  294. public void setStationLongitude(String stationLongitude) {
  295. this.stationLongitude = stationLongitude == null ? null : stationLongitude.trim();
  296. }
  297. /**
  298. * This method was generated by MyBatis Generator.
  299. * This method returns the value of the database column station_info.station_latitude
  300. *
  301. * @return the value of station_info.station_latitude
  302. *
  303. * @mbg.generated
  304. */
  305. public String getStationLatitude() {
  306. return stationLatitude;
  307. }
  308. /**
  309. * This method was generated by MyBatis Generator.
  310. * This method sets the value of the database column station_info.station_latitude
  311. *
  312. * @param stationLatitude the value for station_info.station_latitude
  313. *
  314. * @mbg.generated
  315. */
  316. public void setStationLatitude(String stationLatitude) {
  317. this.stationLatitude = stationLatitude == null ? null : stationLatitude.trim();
  318. }
  319. /**
  320. * This method was generated by MyBatis Generator.
  321. * This method returns the value of the database column station_info.mno
  322. *
  323. * @return the value of station_info.mno
  324. *
  325. * @mbg.generated
  326. */
  327. public Integer getMno() {
  328. return mno;
  329. }
  330. /**
  331. * This method was generated by MyBatis Generator.
  332. * This method sets the value of the database column station_info.mno
  333. *
  334. * @param mno the value for station_info.mno
  335. *
  336. * @mbg.generated
  337. */
  338. public void setMno(Integer mno) {
  339. this.mno = mno;
  340. }
  341. /**
  342. * This method was generated by MyBatis Generator.
  343. * This method returns the value of the database column station_info.station_pic
  344. *
  345. * @return the value of station_info.station_pic
  346. *
  347. * @mbg.generated
  348. */
  349. public byte[] getStationPic() {
  350. return stationPic;
  351. }
  352. /**
  353. * This method was generated by MyBatis Generator.
  354. * This method sets the value of the database column station_info.station_pic
  355. *
  356. * @param stationPic the value for station_info.station_pic
  357. *
  358. * @mbg.generated
  359. */
  360. public void setStationPic(byte[] stationPic) {
  361. this.stationPic = stationPic;
  362. }
  363. }