SjWeatherData.java 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  1. package com.huimv.sj.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. @SuppressWarnings("serial")
  5. public class SjWeatherData extends BaseDO {
  6. /**
  7. * This field was generated by Apache iBATIS ibator.
  8. * This field corresponds to the database column sj_weatherdata.ID
  9. *
  10. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  11. */
  12. private Integer id;
  13. /**
  14. * This field was generated by Apache iBATIS ibator.
  15. * This field corresponds to the database column sj_weatherdata.YHID
  16. *
  17. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  18. */
  19. private Integer yhid;
  20. /**
  21. * This field was generated by Apache iBATIS ibator.
  22. * This field corresponds to the database column sj_weatherdata.IP
  23. *
  24. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  25. */
  26. private String ip;
  27. /**
  28. * This field was generated by Apache iBATIS ibator.
  29. * This field corresponds to the database column sj_weatherdata.savetime
  30. *
  31. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  32. */
  33. private Date savetime;
  34. /**
  35. * This field was generated by Apache iBATIS ibator.
  36. * This field corresponds to the database column sj_weatherdata.provCity
  37. *
  38. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  39. */
  40. private String provcity;
  41. /**
  42. * This field was generated by Apache iBATIS ibator.
  43. * This field corresponds to the database column sj_weatherdata.cityName
  44. *
  45. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  46. */
  47. private String cityname;
  48. /**
  49. * This field was generated by Apache iBATIS ibator.
  50. * This field corresponds to the database column sj_weatherdata.cityCode
  51. *
  52. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  53. */
  54. private Integer citycode;
  55. /**
  56. * This field was generated by Apache iBATIS ibator.
  57. * This field corresponds to the database column sj_weatherdata.fbTime
  58. *
  59. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  60. */
  61. private Date fbtime;
  62. /**
  63. * This field was generated by Apache iBATIS ibator.
  64. * This field corresponds to the database column sj_weatherdata.currTemp
  65. *
  66. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  67. */
  68. private String currtemp;
  69. /**
  70. * This field was generated by Apache iBATIS ibator.
  71. * This field corresponds to the database column sj_weatherdata.currWind
  72. *
  73. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  74. */
  75. private String currwind;
  76. /**
  77. * This field was generated by Apache iBATIS ibator.
  78. * This field corresponds to the database column sj_weatherdata.currWet
  79. *
  80. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  81. */
  82. private String currwet;
  83. /**
  84. * This field was generated by Apache iBATIS ibator.
  85. * This field corresponds to the database column sj_weatherdata.currAir
  86. *
  87. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  88. */
  89. private String currair;
  90. /**
  91. * This field was generated by Apache iBATIS ibator.
  92. * This field corresponds to the database column sj_weatherdata.currZwx
  93. *
  94. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  95. */
  96. private String currzwx;
  97. /**
  98. * This field was generated by Apache iBATIS ibator.
  99. * This field corresponds to the database column sj_weatherdata.firstDate
  100. *
  101. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  102. */
  103. private String firstdate;
  104. /**
  105. * This field was generated by Apache iBATIS ibator.
  106. * This field corresponds to the database column sj_weatherdata.firstTemp
  107. *
  108. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  109. */
  110. private String firsttemp;
  111. /**
  112. * This field was generated by Apache iBATIS ibator.
  113. * This field corresponds to the database column sj_weatherdata.firstWind
  114. *
  115. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  116. */
  117. private String firstwind;
  118. /**
  119. * This field was generated by Apache iBATIS ibator.
  120. * This field corresponds to the database column sj_weatherdata.firstIcon1
  121. *
  122. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  123. */
  124. private String firsticon1;
  125. /**
  126. * This field was generated by Apache iBATIS ibator.
  127. * This field corresponds to the database column sj_weatherdata.firstIcon2
  128. *
  129. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  130. */
  131. private String firsticon2;
  132. /**
  133. * This field was generated by Apache iBATIS ibator.
  134. * This field corresponds to the database column sj_weatherdata.seconDate
  135. *
  136. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  137. */
  138. private String secondate;
  139. /**
  140. * This field was generated by Apache iBATIS ibator.
  141. * This field corresponds to the database column sj_weatherdata.seconTemp
  142. *
  143. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  144. */
  145. private String secontemp;
  146. /**
  147. * This field was generated by Apache iBATIS ibator.
  148. * This field corresponds to the database column sj_weatherdata.seconWind
  149. *
  150. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  151. */
  152. private String seconwind;
  153. /**
  154. * This field was generated by Apache iBATIS ibator.
  155. * This field corresponds to the database column sj_weatherdata.seconIcon1
  156. *
  157. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  158. */
  159. private String seconicon1;
  160. /**
  161. * This field was generated by Apache iBATIS ibator.
  162. * This field corresponds to the database column sj_weatherdata.seconIcon2
  163. *
  164. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  165. */
  166. private String seconicon2;
  167. /**
  168. * This field was generated by Apache iBATIS ibator.
  169. * This field corresponds to the database column sj_weatherdata.thirdDate
  170. *
  171. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  172. */
  173. private String thirddate;
  174. /**
  175. * This field was generated by Apache iBATIS ibator.
  176. * This field corresponds to the database column sj_weatherdata.thirdTemp
  177. *
  178. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  179. */
  180. private String thirdtemp;
  181. /**
  182. * This field was generated by Apache iBATIS ibator.
  183. * This field corresponds to the database column sj_weatherdata.thirdWind
  184. *
  185. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  186. */
  187. private String thirdwind;
  188. /**
  189. * This field was generated by Apache iBATIS ibator.
  190. * This field corresponds to the database column sj_weatherdata.thirdIcon1
  191. *
  192. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  193. */
  194. private String thirdicon1;
  195. /**
  196. * This field was generated by Apache iBATIS ibator.
  197. * This field corresponds to the database column sj_weatherdata.thirdIcon2
  198. *
  199. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  200. */
  201. private String thirdicon2;
  202. /**
  203. * This field was generated by Apache iBATIS ibator.
  204. * This field corresponds to the database column sj_weatherdata.fourthDate
  205. *
  206. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  207. */
  208. private String fourthdate;
  209. /**
  210. * This field was generated by Apache iBATIS ibator.
  211. * This field corresponds to the database column sj_weatherdata.fourthTemp
  212. *
  213. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  214. */
  215. private String fourthtemp;
  216. /**
  217. * This field was generated by Apache iBATIS ibator.
  218. * This field corresponds to the database column sj_weatherdata.fourthWind
  219. *
  220. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  221. */
  222. private String fourthwind;
  223. /**
  224. * This field was generated by Apache iBATIS ibator.
  225. * This field corresponds to the database column sj_weatherdata.fourthIcon1
  226. *
  227. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  228. */
  229. private String fourthicon1;
  230. /**
  231. * This field was generated by Apache iBATIS ibator.
  232. * This field corresponds to the database column sj_weatherdata.fourthIcon2
  233. *
  234. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  235. */
  236. private String fourthicon2;
  237. /**
  238. * This field was generated by Apache iBATIS ibator.
  239. * This field corresponds to the database column sj_weatherdata.fifthDate
  240. *
  241. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  242. */
  243. private String fifthdate;
  244. /**
  245. * This field was generated by Apache iBATIS ibator.
  246. * This field corresponds to the database column sj_weatherdata.fifthTemp
  247. *
  248. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  249. */
  250. private String fifthtemp;
  251. /**
  252. * This field was generated by Apache iBATIS ibator.
  253. * This field corresponds to the database column sj_weatherdata.fifthWind
  254. *
  255. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  256. */
  257. private String fifthwind;
  258. /**
  259. * This field was generated by Apache iBATIS ibator.
  260. * This field corresponds to the database column sj_weatherdata.fifthIcon1
  261. *
  262. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  263. */
  264. private String fifthicon1;
  265. /**
  266. * This field was generated by Apache iBATIS ibator.
  267. * This field corresponds to the database column sj_weatherdata.fifthIcon2
  268. *
  269. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  270. */
  271. private String fifthicon2;
  272. /**
  273. * This field was generated by Apache iBATIS ibator.
  274. * This field corresponds to the database column sj_weatherdata.currZs
  275. *
  276. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  277. */
  278. private String currzs;
  279. /**
  280. * This method was generated by Apache iBATIS ibator.
  281. * This method returns the value of the database column sj_weatherdata.ID
  282. *
  283. * @return the value of sj_weatherdata.ID
  284. *
  285. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  286. */
  287. public Integer getId() {
  288. return id;
  289. }
  290. /**
  291. * This method was generated by Apache iBATIS ibator.
  292. * This method sets the value of the database column sj_weatherdata.ID
  293. *
  294. * @param id the value for sj_weatherdata.ID
  295. *
  296. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  297. */
  298. public void setId(Integer id) {
  299. this.id = id;
  300. }
  301. /**
  302. * This method was generated by Apache iBATIS ibator.
  303. * This method returns the value of the database column sj_weatherdata.YHID
  304. *
  305. * @return the value of sj_weatherdata.YHID
  306. *
  307. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  308. */
  309. public Integer getYhid() {
  310. return yhid;
  311. }
  312. /**
  313. * This method was generated by Apache iBATIS ibator.
  314. * This method sets the value of the database column sj_weatherdata.YHID
  315. *
  316. * @param yhid the value for sj_weatherdata.YHID
  317. *
  318. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  319. */
  320. public void setYhid(Integer yhid) {
  321. this.yhid = yhid;
  322. }
  323. /**
  324. * This method was generated by Apache iBATIS ibator.
  325. * This method returns the value of the database column sj_weatherdata.IP
  326. *
  327. * @return the value of sj_weatherdata.IP
  328. *
  329. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  330. */
  331. public String getIp() {
  332. return ip;
  333. }
  334. /**
  335. * This method was generated by Apache iBATIS ibator.
  336. * This method sets the value of the database column sj_weatherdata.IP
  337. *
  338. * @param ip the value for sj_weatherdata.IP
  339. *
  340. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  341. */
  342. public void setIp(String ip) {
  343. this.ip = ip == null ? null : ip.trim();
  344. }
  345. /**
  346. * This method was generated by Apache iBATIS ibator.
  347. * This method returns the value of the database column sj_weatherdata.savetime
  348. *
  349. * @return the value of sj_weatherdata.savetime
  350. *
  351. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  352. */
  353. public Date getSavetime() {
  354. return savetime;
  355. }
  356. /**
  357. * This method was generated by Apache iBATIS ibator.
  358. * This method sets the value of the database column sj_weatherdata.savetime
  359. *
  360. * @param savetime the value for sj_weatherdata.savetime
  361. *
  362. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  363. */
  364. public void setSavetime(Date savetime) {
  365. this.savetime = savetime;
  366. }
  367. /**
  368. * This method was generated by Apache iBATIS ibator.
  369. * This method returns the value of the database column sj_weatherdata.provCity
  370. *
  371. * @return the value of sj_weatherdata.provCity
  372. *
  373. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  374. */
  375. public String getProvcity() {
  376. return provcity;
  377. }
  378. /**
  379. * This method was generated by Apache iBATIS ibator.
  380. * This method sets the value of the database column sj_weatherdata.provCity
  381. *
  382. * @param provcity the value for sj_weatherdata.provCity
  383. *
  384. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  385. */
  386. public void setProvcity(String provcity) {
  387. this.provcity = provcity == null ? null : provcity.trim();
  388. }
  389. /**
  390. * This method was generated by Apache iBATIS ibator.
  391. * This method returns the value of the database column sj_weatherdata.cityName
  392. *
  393. * @return the value of sj_weatherdata.cityName
  394. *
  395. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  396. */
  397. public String getCityname() {
  398. return cityname;
  399. }
  400. /**
  401. * This method was generated by Apache iBATIS ibator.
  402. * This method sets the value of the database column sj_weatherdata.cityName
  403. *
  404. * @param cityname the value for sj_weatherdata.cityName
  405. *
  406. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  407. */
  408. public void setCityname(String cityname) {
  409. this.cityname = cityname == null ? null : cityname.trim();
  410. }
  411. /**
  412. * This method was generated by Apache iBATIS ibator.
  413. * This method returns the value of the database column sj_weatherdata.cityCode
  414. *
  415. * @return the value of sj_weatherdata.cityCode
  416. *
  417. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  418. */
  419. public Integer getCitycode() {
  420. return citycode;
  421. }
  422. /**
  423. * This method was generated by Apache iBATIS ibator.
  424. * This method sets the value of the database column sj_weatherdata.cityCode
  425. *
  426. * @param citycode the value for sj_weatherdata.cityCode
  427. *
  428. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  429. */
  430. public void setCitycode(Integer citycode) {
  431. this.citycode = citycode;
  432. }
  433. /**
  434. * This method was generated by Apache iBATIS ibator.
  435. * This method returns the value of the database column sj_weatherdata.fbTime
  436. *
  437. * @return the value of sj_weatherdata.fbTime
  438. *
  439. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  440. */
  441. public Date getFbtime() {
  442. return fbtime;
  443. }
  444. /**
  445. * This method was generated by Apache iBATIS ibator.
  446. * This method sets the value of the database column sj_weatherdata.fbTime
  447. *
  448. * @param fbtime the value for sj_weatherdata.fbTime
  449. *
  450. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  451. */
  452. public void setFbtime(Date fbtime) {
  453. this.fbtime = fbtime;
  454. }
  455. /**
  456. * This method was generated by Apache iBATIS ibator.
  457. * This method returns the value of the database column sj_weatherdata.currTemp
  458. *
  459. * @return the value of sj_weatherdata.currTemp
  460. *
  461. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  462. */
  463. public String getCurrtemp() {
  464. return currtemp;
  465. }
  466. /**
  467. * This method was generated by Apache iBATIS ibator.
  468. * This method sets the value of the database column sj_weatherdata.currTemp
  469. *
  470. * @param currtemp the value for sj_weatherdata.currTemp
  471. *
  472. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  473. */
  474. public void setCurrtemp(String currtemp) {
  475. this.currtemp = currtemp == null ? null : currtemp.trim();
  476. }
  477. /**
  478. * This method was generated by Apache iBATIS ibator.
  479. * This method returns the value of the database column sj_weatherdata.currWind
  480. *
  481. * @return the value of sj_weatherdata.currWind
  482. *
  483. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  484. */
  485. public String getCurrwind() {
  486. return currwind;
  487. }
  488. /**
  489. * This method was generated by Apache iBATIS ibator.
  490. * This method sets the value of the database column sj_weatherdata.currWind
  491. *
  492. * @param currwind the value for sj_weatherdata.currWind
  493. *
  494. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  495. */
  496. public void setCurrwind(String currwind) {
  497. this.currwind = currwind == null ? null : currwind.trim();
  498. }
  499. /**
  500. * This method was generated by Apache iBATIS ibator.
  501. * This method returns the value of the database column sj_weatherdata.currWet
  502. *
  503. * @return the value of sj_weatherdata.currWet
  504. *
  505. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  506. */
  507. public String getCurrwet() {
  508. return currwet;
  509. }
  510. /**
  511. * This method was generated by Apache iBATIS ibator.
  512. * This method sets the value of the database column sj_weatherdata.currWet
  513. *
  514. * @param currwet the value for sj_weatherdata.currWet
  515. *
  516. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  517. */
  518. public void setCurrwet(String currwet) {
  519. this.currwet = currwet == null ? null : currwet.trim();
  520. }
  521. /**
  522. * This method was generated by Apache iBATIS ibator.
  523. * This method returns the value of the database column sj_weatherdata.currAir
  524. *
  525. * @return the value of sj_weatherdata.currAir
  526. *
  527. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  528. */
  529. public String getCurrair() {
  530. return currair;
  531. }
  532. /**
  533. * This method was generated by Apache iBATIS ibator.
  534. * This method sets the value of the database column sj_weatherdata.currAir
  535. *
  536. * @param currair the value for sj_weatherdata.currAir
  537. *
  538. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  539. */
  540. public void setCurrair(String currair) {
  541. this.currair = currair == null ? null : currair.trim();
  542. }
  543. /**
  544. * This method was generated by Apache iBATIS ibator.
  545. * This method returns the value of the database column sj_weatherdata.currZwx
  546. *
  547. * @return the value of sj_weatherdata.currZwx
  548. *
  549. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  550. */
  551. public String getCurrzwx() {
  552. return currzwx;
  553. }
  554. /**
  555. * This method was generated by Apache iBATIS ibator.
  556. * This method sets the value of the database column sj_weatherdata.currZwx
  557. *
  558. * @param currzwx the value for sj_weatherdata.currZwx
  559. *
  560. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  561. */
  562. public void setCurrzwx(String currzwx) {
  563. this.currzwx = currzwx == null ? null : currzwx.trim();
  564. }
  565. /**
  566. * This method was generated by Apache iBATIS ibator.
  567. * This method returns the value of the database column sj_weatherdata.firstDate
  568. *
  569. * @return the value of sj_weatherdata.firstDate
  570. *
  571. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  572. */
  573. public String getFirstdate() {
  574. return firstdate;
  575. }
  576. /**
  577. * This method was generated by Apache iBATIS ibator.
  578. * This method sets the value of the database column sj_weatherdata.firstDate
  579. *
  580. * @param firstdate the value for sj_weatherdata.firstDate
  581. *
  582. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  583. */
  584. public void setFirstdate(String firstdate) {
  585. this.firstdate = firstdate == null ? null : firstdate.trim();
  586. }
  587. /**
  588. * This method was generated by Apache iBATIS ibator.
  589. * This method returns the value of the database column sj_weatherdata.firstTemp
  590. *
  591. * @return the value of sj_weatherdata.firstTemp
  592. *
  593. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  594. */
  595. public String getFirsttemp() {
  596. return firsttemp;
  597. }
  598. /**
  599. * This method was generated by Apache iBATIS ibator.
  600. * This method sets the value of the database column sj_weatherdata.firstTemp
  601. *
  602. * @param firsttemp the value for sj_weatherdata.firstTemp
  603. *
  604. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  605. */
  606. public void setFirsttemp(String firsttemp) {
  607. this.firsttemp = firsttemp == null ? null : firsttemp.trim();
  608. }
  609. /**
  610. * This method was generated by Apache iBATIS ibator.
  611. * This method returns the value of the database column sj_weatherdata.firstWind
  612. *
  613. * @return the value of sj_weatherdata.firstWind
  614. *
  615. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  616. */
  617. public String getFirstwind() {
  618. return firstwind;
  619. }
  620. /**
  621. * This method was generated by Apache iBATIS ibator.
  622. * This method sets the value of the database column sj_weatherdata.firstWind
  623. *
  624. * @param firstwind the value for sj_weatherdata.firstWind
  625. *
  626. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  627. */
  628. public void setFirstwind(String firstwind) {
  629. this.firstwind = firstwind == null ? null : firstwind.trim();
  630. }
  631. /**
  632. * This method was generated by Apache iBATIS ibator.
  633. * This method returns the value of the database column sj_weatherdata.firstIcon1
  634. *
  635. * @return the value of sj_weatherdata.firstIcon1
  636. *
  637. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  638. */
  639. public String getFirsticon1() {
  640. return firsticon1;
  641. }
  642. /**
  643. * This method was generated by Apache iBATIS ibator.
  644. * This method sets the value of the database column sj_weatherdata.firstIcon1
  645. *
  646. * @param firsticon1 the value for sj_weatherdata.firstIcon1
  647. *
  648. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  649. */
  650. public void setFirsticon1(String firsticon1) {
  651. this.firsticon1 = firsticon1 == null ? null : firsticon1.trim();
  652. }
  653. /**
  654. * This method was generated by Apache iBATIS ibator.
  655. * This method returns the value of the database column sj_weatherdata.firstIcon2
  656. *
  657. * @return the value of sj_weatherdata.firstIcon2
  658. *
  659. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  660. */
  661. public String getFirsticon2() {
  662. return firsticon2;
  663. }
  664. /**
  665. * This method was generated by Apache iBATIS ibator.
  666. * This method sets the value of the database column sj_weatherdata.firstIcon2
  667. *
  668. * @param firsticon2 the value for sj_weatherdata.firstIcon2
  669. *
  670. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  671. */
  672. public void setFirsticon2(String firsticon2) {
  673. this.firsticon2 = firsticon2 == null ? null : firsticon2.trim();
  674. }
  675. /**
  676. * This method was generated by Apache iBATIS ibator.
  677. * This method returns the value of the database column sj_weatherdata.seconDate
  678. *
  679. * @return the value of sj_weatherdata.seconDate
  680. *
  681. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  682. */
  683. public String getSecondate() {
  684. return secondate;
  685. }
  686. /**
  687. * This method was generated by Apache iBATIS ibator.
  688. * This method sets the value of the database column sj_weatherdata.seconDate
  689. *
  690. * @param secondate the value for sj_weatherdata.seconDate
  691. *
  692. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  693. */
  694. public void setSecondate(String secondate) {
  695. this.secondate = secondate == null ? null : secondate.trim();
  696. }
  697. /**
  698. * This method was generated by Apache iBATIS ibator.
  699. * This method returns the value of the database column sj_weatherdata.seconTemp
  700. *
  701. * @return the value of sj_weatherdata.seconTemp
  702. *
  703. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  704. */
  705. public String getSecontemp() {
  706. return secontemp;
  707. }
  708. /**
  709. * This method was generated by Apache iBATIS ibator.
  710. * This method sets the value of the database column sj_weatherdata.seconTemp
  711. *
  712. * @param secontemp the value for sj_weatherdata.seconTemp
  713. *
  714. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  715. */
  716. public void setSecontemp(String secontemp) {
  717. this.secontemp = secontemp == null ? null : secontemp.trim();
  718. }
  719. /**
  720. * This method was generated by Apache iBATIS ibator.
  721. * This method returns the value of the database column sj_weatherdata.seconWind
  722. *
  723. * @return the value of sj_weatherdata.seconWind
  724. *
  725. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  726. */
  727. public String getSeconwind() {
  728. return seconwind;
  729. }
  730. /**
  731. * This method was generated by Apache iBATIS ibator.
  732. * This method sets the value of the database column sj_weatherdata.seconWind
  733. *
  734. * @param seconwind the value for sj_weatherdata.seconWind
  735. *
  736. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  737. */
  738. public void setSeconwind(String seconwind) {
  739. this.seconwind = seconwind == null ? null : seconwind.trim();
  740. }
  741. /**
  742. * This method was generated by Apache iBATIS ibator.
  743. * This method returns the value of the database column sj_weatherdata.seconIcon1
  744. *
  745. * @return the value of sj_weatherdata.seconIcon1
  746. *
  747. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  748. */
  749. public String getSeconicon1() {
  750. return seconicon1;
  751. }
  752. /**
  753. * This method was generated by Apache iBATIS ibator.
  754. * This method sets the value of the database column sj_weatherdata.seconIcon1
  755. *
  756. * @param seconicon1 the value for sj_weatherdata.seconIcon1
  757. *
  758. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  759. */
  760. public void setSeconicon1(String seconicon1) {
  761. this.seconicon1 = seconicon1 == null ? null : seconicon1.trim();
  762. }
  763. /**
  764. * This method was generated by Apache iBATIS ibator.
  765. * This method returns the value of the database column sj_weatherdata.seconIcon2
  766. *
  767. * @return the value of sj_weatherdata.seconIcon2
  768. *
  769. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  770. */
  771. public String getSeconicon2() {
  772. return seconicon2;
  773. }
  774. /**
  775. * This method was generated by Apache iBATIS ibator.
  776. * This method sets the value of the database column sj_weatherdata.seconIcon2
  777. *
  778. * @param seconicon2 the value for sj_weatherdata.seconIcon2
  779. *
  780. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  781. */
  782. public void setSeconicon2(String seconicon2) {
  783. this.seconicon2 = seconicon2 == null ? null : seconicon2.trim();
  784. }
  785. /**
  786. * This method was generated by Apache iBATIS ibator.
  787. * This method returns the value of the database column sj_weatherdata.thirdDate
  788. *
  789. * @return the value of sj_weatherdata.thirdDate
  790. *
  791. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  792. */
  793. public String getThirddate() {
  794. return thirddate;
  795. }
  796. /**
  797. * This method was generated by Apache iBATIS ibator.
  798. * This method sets the value of the database column sj_weatherdata.thirdDate
  799. *
  800. * @param thirddate the value for sj_weatherdata.thirdDate
  801. *
  802. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  803. */
  804. public void setThirddate(String thirddate) {
  805. this.thirddate = thirddate == null ? null : thirddate.trim();
  806. }
  807. /**
  808. * This method was generated by Apache iBATIS ibator.
  809. * This method returns the value of the database column sj_weatherdata.thirdTemp
  810. *
  811. * @return the value of sj_weatherdata.thirdTemp
  812. *
  813. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  814. */
  815. public String getThirdtemp() {
  816. return thirdtemp;
  817. }
  818. /**
  819. * This method was generated by Apache iBATIS ibator.
  820. * This method sets the value of the database column sj_weatherdata.thirdTemp
  821. *
  822. * @param thirdtemp the value for sj_weatherdata.thirdTemp
  823. *
  824. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  825. */
  826. public void setThirdtemp(String thirdtemp) {
  827. this.thirdtemp = thirdtemp == null ? null : thirdtemp.trim();
  828. }
  829. /**
  830. * This method was generated by Apache iBATIS ibator.
  831. * This method returns the value of the database column sj_weatherdata.thirdWind
  832. *
  833. * @return the value of sj_weatherdata.thirdWind
  834. *
  835. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  836. */
  837. public String getThirdwind() {
  838. return thirdwind;
  839. }
  840. /**
  841. * This method was generated by Apache iBATIS ibator.
  842. * This method sets the value of the database column sj_weatherdata.thirdWind
  843. *
  844. * @param thirdwind the value for sj_weatherdata.thirdWind
  845. *
  846. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  847. */
  848. public void setThirdwind(String thirdwind) {
  849. this.thirdwind = thirdwind == null ? null : thirdwind.trim();
  850. }
  851. /**
  852. * This method was generated by Apache iBATIS ibator.
  853. * This method returns the value of the database column sj_weatherdata.thirdIcon1
  854. *
  855. * @return the value of sj_weatherdata.thirdIcon1
  856. *
  857. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  858. */
  859. public String getThirdicon1() {
  860. return thirdicon1;
  861. }
  862. /**
  863. * This method was generated by Apache iBATIS ibator.
  864. * This method sets the value of the database column sj_weatherdata.thirdIcon1
  865. *
  866. * @param thirdicon1 the value for sj_weatherdata.thirdIcon1
  867. *
  868. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  869. */
  870. public void setThirdicon1(String thirdicon1) {
  871. this.thirdicon1 = thirdicon1 == null ? null : thirdicon1.trim();
  872. }
  873. /**
  874. * This method was generated by Apache iBATIS ibator.
  875. * This method returns the value of the database column sj_weatherdata.thirdIcon2
  876. *
  877. * @return the value of sj_weatherdata.thirdIcon2
  878. *
  879. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  880. */
  881. public String getThirdicon2() {
  882. return thirdicon2;
  883. }
  884. /**
  885. * This method was generated by Apache iBATIS ibator.
  886. * This method sets the value of the database column sj_weatherdata.thirdIcon2
  887. *
  888. * @param thirdicon2 the value for sj_weatherdata.thirdIcon2
  889. *
  890. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  891. */
  892. public void setThirdicon2(String thirdicon2) {
  893. this.thirdicon2 = thirdicon2 == null ? null : thirdicon2.trim();
  894. }
  895. /**
  896. * This method was generated by Apache iBATIS ibator.
  897. * This method returns the value of the database column sj_weatherdata.fourthDate
  898. *
  899. * @return the value of sj_weatherdata.fourthDate
  900. *
  901. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  902. */
  903. public String getFourthdate() {
  904. return fourthdate;
  905. }
  906. /**
  907. * This method was generated by Apache iBATIS ibator.
  908. * This method sets the value of the database column sj_weatherdata.fourthDate
  909. *
  910. * @param fourthdate the value for sj_weatherdata.fourthDate
  911. *
  912. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  913. */
  914. public void setFourthdate(String fourthdate) {
  915. this.fourthdate = fourthdate == null ? null : fourthdate.trim();
  916. }
  917. /**
  918. * This method was generated by Apache iBATIS ibator.
  919. * This method returns the value of the database column sj_weatherdata.fourthTemp
  920. *
  921. * @return the value of sj_weatherdata.fourthTemp
  922. *
  923. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  924. */
  925. public String getFourthtemp() {
  926. return fourthtemp;
  927. }
  928. /**
  929. * This method was generated by Apache iBATIS ibator.
  930. * This method sets the value of the database column sj_weatherdata.fourthTemp
  931. *
  932. * @param fourthtemp the value for sj_weatherdata.fourthTemp
  933. *
  934. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  935. */
  936. public void setFourthtemp(String fourthtemp) {
  937. this.fourthtemp = fourthtemp == null ? null : fourthtemp.trim();
  938. }
  939. /**
  940. * This method was generated by Apache iBATIS ibator.
  941. * This method returns the value of the database column sj_weatherdata.fourthWind
  942. *
  943. * @return the value of sj_weatherdata.fourthWind
  944. *
  945. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  946. */
  947. public String getFourthwind() {
  948. return fourthwind;
  949. }
  950. /**
  951. * This method was generated by Apache iBATIS ibator.
  952. * This method sets the value of the database column sj_weatherdata.fourthWind
  953. *
  954. * @param fourthwind the value for sj_weatherdata.fourthWind
  955. *
  956. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  957. */
  958. public void setFourthwind(String fourthwind) {
  959. this.fourthwind = fourthwind == null ? null : fourthwind.trim();
  960. }
  961. /**
  962. * This method was generated by Apache iBATIS ibator.
  963. * This method returns the value of the database column sj_weatherdata.fourthIcon1
  964. *
  965. * @return the value of sj_weatherdata.fourthIcon1
  966. *
  967. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  968. */
  969. public String getFourthicon1() {
  970. return fourthicon1;
  971. }
  972. /**
  973. * This method was generated by Apache iBATIS ibator.
  974. * This method sets the value of the database column sj_weatherdata.fourthIcon1
  975. *
  976. * @param fourthicon1 the value for sj_weatherdata.fourthIcon1
  977. *
  978. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  979. */
  980. public void setFourthicon1(String fourthicon1) {
  981. this.fourthicon1 = fourthicon1 == null ? null : fourthicon1.trim();
  982. }
  983. /**
  984. * This method was generated by Apache iBATIS ibator.
  985. * This method returns the value of the database column sj_weatherdata.fourthIcon2
  986. *
  987. * @return the value of sj_weatherdata.fourthIcon2
  988. *
  989. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  990. */
  991. public String getFourthicon2() {
  992. return fourthicon2;
  993. }
  994. /**
  995. * This method was generated by Apache iBATIS ibator.
  996. * This method sets the value of the database column sj_weatherdata.fourthIcon2
  997. *
  998. * @param fourthicon2 the value for sj_weatherdata.fourthIcon2
  999. *
  1000. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1001. */
  1002. public void setFourthicon2(String fourthicon2) {
  1003. this.fourthicon2 = fourthicon2 == null ? null : fourthicon2.trim();
  1004. }
  1005. /**
  1006. * This method was generated by Apache iBATIS ibator.
  1007. * This method returns the value of the database column sj_weatherdata.fifthDate
  1008. *
  1009. * @return the value of sj_weatherdata.fifthDate
  1010. *
  1011. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1012. */
  1013. public String getFifthdate() {
  1014. return fifthdate;
  1015. }
  1016. /**
  1017. * This method was generated by Apache iBATIS ibator.
  1018. * This method sets the value of the database column sj_weatherdata.fifthDate
  1019. *
  1020. * @param fifthdate the value for sj_weatherdata.fifthDate
  1021. *
  1022. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1023. */
  1024. public void setFifthdate(String fifthdate) {
  1025. this.fifthdate = fifthdate == null ? null : fifthdate.trim();
  1026. }
  1027. /**
  1028. * This method was generated by Apache iBATIS ibator.
  1029. * This method returns the value of the database column sj_weatherdata.fifthTemp
  1030. *
  1031. * @return the value of sj_weatherdata.fifthTemp
  1032. *
  1033. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1034. */
  1035. public String getFifthtemp() {
  1036. return fifthtemp;
  1037. }
  1038. /**
  1039. * This method was generated by Apache iBATIS ibator.
  1040. * This method sets the value of the database column sj_weatherdata.fifthTemp
  1041. *
  1042. * @param fifthtemp the value for sj_weatherdata.fifthTemp
  1043. *
  1044. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1045. */
  1046. public void setFifthtemp(String fifthtemp) {
  1047. this.fifthtemp = fifthtemp == null ? null : fifthtemp.trim();
  1048. }
  1049. /**
  1050. * This method was generated by Apache iBATIS ibator.
  1051. * This method returns the value of the database column sj_weatherdata.fifthWind
  1052. *
  1053. * @return the value of sj_weatherdata.fifthWind
  1054. *
  1055. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1056. */
  1057. public String getFifthwind() {
  1058. return fifthwind;
  1059. }
  1060. /**
  1061. * This method was generated by Apache iBATIS ibator.
  1062. * This method sets the value of the database column sj_weatherdata.fifthWind
  1063. *
  1064. * @param fifthwind the value for sj_weatherdata.fifthWind
  1065. *
  1066. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1067. */
  1068. public void setFifthwind(String fifthwind) {
  1069. this.fifthwind = fifthwind == null ? null : fifthwind.trim();
  1070. }
  1071. /**
  1072. * This method was generated by Apache iBATIS ibator.
  1073. * This method returns the value of the database column sj_weatherdata.fifthIcon1
  1074. *
  1075. * @return the value of sj_weatherdata.fifthIcon1
  1076. *
  1077. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1078. */
  1079. public String getFifthicon1() {
  1080. return fifthicon1;
  1081. }
  1082. /**
  1083. * This method was generated by Apache iBATIS ibator.
  1084. * This method sets the value of the database column sj_weatherdata.fifthIcon1
  1085. *
  1086. * @param fifthicon1 the value for sj_weatherdata.fifthIcon1
  1087. *
  1088. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1089. */
  1090. public void setFifthicon1(String fifthicon1) {
  1091. this.fifthicon1 = fifthicon1 == null ? null : fifthicon1.trim();
  1092. }
  1093. /**
  1094. * This method was generated by Apache iBATIS ibator.
  1095. * This method returns the value of the database column sj_weatherdata.fifthIcon2
  1096. *
  1097. * @return the value of sj_weatherdata.fifthIcon2
  1098. *
  1099. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1100. */
  1101. public String getFifthicon2() {
  1102. return fifthicon2;
  1103. }
  1104. /**
  1105. * This method was generated by Apache iBATIS ibator.
  1106. * This method sets the value of the database column sj_weatherdata.fifthIcon2
  1107. *
  1108. * @param fifthicon2 the value for sj_weatherdata.fifthIcon2
  1109. *
  1110. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1111. */
  1112. public void setFifthicon2(String fifthicon2) {
  1113. this.fifthicon2 = fifthicon2 == null ? null : fifthicon2.trim();
  1114. }
  1115. /**
  1116. * This method was generated by Apache iBATIS ibator.
  1117. * This method returns the value of the database column sj_weatherdata.currZs
  1118. *
  1119. * @return the value of sj_weatherdata.currZs
  1120. *
  1121. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1122. */
  1123. public String getCurrzs() {
  1124. return currzs;
  1125. }
  1126. /**
  1127. * This method was generated by Apache iBATIS ibator.
  1128. * This method sets the value of the database column sj_weatherdata.currZs
  1129. *
  1130. * @param currzs the value for sj_weatherdata.currZs
  1131. *
  1132. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  1133. */
  1134. public void setCurrzs(String currzs) {
  1135. this.currzs = currzs == null ? null : currzs.trim();
  1136. }
  1137. }