TpOrderInf.java 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637
  1. package com.minpay.db.table.model;
  2. import com.startup.minpay.frame.data.AbstractMINBean;
  3. public class TpOrderInf extends AbstractMINBean {
  4. /**
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column tp_order_inf.OIF_ORDERNO
  7. *
  8. * @mbggenerated
  9. */
  10. private String orderno;
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column tp_order_inf.OIF_COM_ID
  14. *
  15. * @mbggenerated
  16. */
  17. private String comId;
  18. /**
  19. * This field was generated by MyBatis Generator.
  20. * This field corresponds to the database column tp_order_inf.OIF_APPLY_DATE
  21. *
  22. * @mbggenerated
  23. */
  24. private String applyDate;
  25. /**
  26. * This field was generated by MyBatis Generator.
  27. * This field corresponds to the database column tp_order_inf.OIF_APPLY_USER
  28. *
  29. * @mbggenerated
  30. */
  31. private String applyUser;
  32. /**
  33. * This field was generated by MyBatis Generator.
  34. * This field corresponds to the database column tp_order_inf.OIF_TERM
  35. *
  36. * @mbggenerated
  37. */
  38. private String term;
  39. /**
  40. * This field was generated by MyBatis Generator.
  41. * This field corresponds to the database column tp_order_inf.OIF_TRANS_TYPE
  42. *
  43. * @mbggenerated
  44. */
  45. private String transType;
  46. /**
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column tp_order_inf.OIF_STT
  49. *
  50. * @mbggenerated
  51. */
  52. private String stt;
  53. /**
  54. * This field was generated by MyBatis Generator.
  55. * This field corresponds to the database column tp_order_inf.OIF_WAYBILL_NO
  56. *
  57. * @mbggenerated
  58. */
  59. private String waybillNo;
  60. /**
  61. * This field was generated by MyBatis Generator.
  62. * This field corresponds to the database column tp_order_inf.OIF_LOGISTICS_ID
  63. *
  64. * @mbggenerated
  65. */
  66. private String logisticsId;
  67. /**
  68. * This field was generated by MyBatis Generator.
  69. * This field corresponds to the database column tp_order_inf.OIF_DESTINATION
  70. *
  71. * @mbggenerated
  72. */
  73. private String destination;
  74. /**
  75. * This field was generated by MyBatis Generator.
  76. * This field corresponds to the database column tp_order_inf.OIF_CLEAR_CUSTOM
  77. *
  78. * @mbggenerated
  79. */
  80. private String clearCustom;
  81. /**
  82. * This field was generated by MyBatis Generator.
  83. * This field corresponds to the database column tp_order_inf.OIF_LOANING_AMT
  84. *
  85. * @mbggenerated
  86. */
  87. private String loaningAmt;
  88. /**
  89. * This field was generated by MyBatis Generator.
  90. * This field corresponds to the database column tp_order_inf.OIF_TOTAL_AMT
  91. *
  92. * @mbggenerated
  93. */
  94. private String totalAmt;
  95. /**
  96. * This field was generated by MyBatis Generator.
  97. * This field corresponds to the database column tp_order_inf.OIF_MARGIN_AMT
  98. *
  99. * @mbggenerated
  100. */
  101. private String marginAmt;
  102. /**
  103. * This field was generated by MyBatis Generator.
  104. * This field corresponds to the database column tp_order_inf.OIF_AGENCY_FEE
  105. *
  106. * @mbggenerated
  107. */
  108. private String agencyFee;
  109. /**
  110. * This field was generated by MyBatis Generator.
  111. * This field corresponds to the database column tp_order_inf.OIF_INSTEREST
  112. *
  113. * @mbggenerated
  114. */
  115. private String insterest;
  116. /**
  117. * This field was generated by MyBatis Generator.
  118. * This field corresponds to the database column tp_order_inf.OIF_HANDING_FEE
  119. *
  120. * @mbggenerated
  121. */
  122. private String handingFee;
  123. /**
  124. * This field was generated by MyBatis Generator.
  125. * This field corresponds to the database column tp_order_inf.OIF_LOGISTICE_AMT
  126. *
  127. * @mbggenerated
  128. */
  129. private String logisticeAmt;
  130. /**
  131. * This field was generated by MyBatis Generator.
  132. * This field corresponds to the database column tp_order_inf.OIF_CLEARANCE_AMT
  133. *
  134. * @mbggenerated
  135. */
  136. private String clearanceAmt;
  137. /**
  138. * This field was generated by MyBatis Generator.
  139. * This field corresponds to the database column tp_order_inf.OIF_TARRIFF
  140. *
  141. * @mbggenerated
  142. */
  143. private String tarriff;
  144. /**
  145. * This field was generated by MyBatis Generator.
  146. * This field corresponds to the database column tp_order_inf.OIF_SALE_TAX
  147. *
  148. * @mbggenerated
  149. */
  150. private String saleTax;
  151. /**
  152. * This field was generated by MyBatis Generator.
  153. * This field corresponds to the database column tp_order_inf.OIF_VAT
  154. *
  155. * @mbggenerated
  156. */
  157. private String vat;
  158. /**
  159. * This field was generated by MyBatis Generator.
  160. * This field corresponds to the database column tp_order_inf.OIF_TATAL_SUBSIDY
  161. *
  162. * @mbggenerated
  163. */
  164. private String tatalSubsidy;
  165. /**
  166. * This field was generated by MyBatis Generator.
  167. * This field corresponds to the database column tp_order_inf.OIF_RETURN_RATIO
  168. *
  169. * @mbggenerated
  170. */
  171. private String returnRatio;
  172. /**
  173. * This field was generated by MyBatis Generator.
  174. * This field corresponds to the database column tp_order_inf.OIF_RETURN_AMT
  175. *
  176. * @mbggenerated
  177. */
  178. private String returnAmt;
  179. /**
  180. * This field was generated by MyBatis Generator.
  181. * This field corresponds to the database column tp_order_inf.OIF_GENER_AGREEMENT
  182. *
  183. * @mbggenerated
  184. */
  185. private String generAgreement;
  186. /**
  187. * This field was generated by MyBatis Generator.
  188. * This field corresponds to the database column tp_order_inf.OIF_PRO_CON
  189. *
  190. * @mbggenerated
  191. */
  192. private String proCon;
  193. /**
  194. * This field was generated by MyBatis Generator.
  195. * This field corresponds to the database column tp_order_inf.OIF_FORWARD_CON_RUL
  196. *
  197. * @mbggenerated
  198. */
  199. private String forwardConRul;
  200. /**
  201. * This field was generated by MyBatis Generator.
  202. * This field corresponds to the database column tp_order_inf.OIF_PRODUCT_URL
  203. *
  204. * @mbggenerated
  205. */
  206. private String productUrl;
  207. /**
  208. * This field was generated by MyBatis Generator.
  209. * This field corresponds to the database column tp_order_inf.OIF_PRODUCT_LOGO
  210. *
  211. * @mbggenerated
  212. */
  213. private String productLogo;
  214. /**
  215. * This field was generated by MyBatis Generator.
  216. * This field corresponds to the database column tp_order_inf.OIF_EXPIRED_DATE
  217. *
  218. * @mbggenerated
  219. */
  220. private String expiredDate;
  221. /**
  222. * This field was generated by MyBatis Generator.
  223. * This field corresponds to the database column tp_order_inf.OIF_CREATE_DATE
  224. *
  225. * @mbggenerated
  226. */
  227. private String createDate;
  228. /**
  229. * This field was generated by MyBatis Generator.
  230. * This field corresponds to the database column tp_order_inf.OIF_CREATE_USER
  231. *
  232. * @mbggenerated
  233. */
  234. private String createUser;
  235. /**
  236. * This field was generated by MyBatis Generator.
  237. * This field corresponds to the database column tp_order_inf.OIF_REMAIN_AMOUNT
  238. *
  239. * @mbggenerated
  240. */
  241. private String remainAmount;
  242. /**
  243. * This field was generated by MyBatis Generator.
  244. * This field corresponds to the database column tp_order_inf.OIF_APPRIVE_PASS_DATE
  245. *
  246. * @mbggenerated
  247. */
  248. private String apprivePassDate;
  249. /**
  250. * This field was generated by MyBatis Generator.
  251. * This field corresponds to the database column tp_order_inf.OIF_MODITY_DATE
  252. *
  253. * @mbggenerated
  254. */
  255. private String modityDate;
  256. /**
  257. * This field was generated by MyBatis Generator.
  258. * This field corresponds to the database column tp_order_inf.OIF_ESTIMATE_AMOUNT
  259. *
  260. * @mbggenerated
  261. */
  262. private String estimateAmount;
  263. /**
  264. * This field was generated by MyBatis Generator.
  265. * This field corresponds to the database column tp_order_inf.OIF_FINANCING_CON
  266. *
  267. * @mbggenerated
  268. */
  269. private String financingCon;
  270. /**
  271. * This field was generated by MyBatis Generator.
  272. * This field corresponds to the database column tp_order_inf.OIF_BUSINESS_SINGLE
  273. *
  274. * @mbggenerated
  275. */
  276. private String businessSingle;
  277. /**
  278. * This field was generated by MyBatis Generator.
  279. * This field corresponds to the database column tp_order_inf.OIF_BATCH
  280. *
  281. * @mbggenerated
  282. */
  283. private String batch;
  284. /**
  285. * This field was generated by MyBatis Generator.
  286. * This field corresponds to the database column tp_order_inf.OIF_COMPLETE_TYPE
  287. *
  288. * @mbggenerated
  289. */
  290. private String completeType;
  291. /**
  292. * This field was generated by MyBatis Generator.
  293. * This field corresponds to the database column tp_order_inf.OIF_MANAGER_NO
  294. *
  295. * @mbggenerated
  296. */
  297. private String managerNo;
  298. /**
  299. * This field was generated by MyBatis Generator.
  300. * This field corresponds to the database column tp_order_inf.OIF_COMPLETE_USER
  301. *
  302. * @mbggenerated
  303. */
  304. private String completeUser;
  305. /**
  306. * This field was generated by MyBatis Generator.
  307. * This field corresponds to the database column tp_order_inf.OIF_COMPLETE_TIME
  308. *
  309. * @mbggenerated
  310. */
  311. private String completeTime;
  312. /**
  313. * This field was generated by MyBatis Generator.
  314. * This field corresponds to the database column tp_order_inf.OIF_BUSINESS_INVOICE
  315. *
  316. * @mbggenerated
  317. */
  318. private String businessInvoice;
  319. /**
  320. * This field was generated by MyBatis Generator.
  321. * This field corresponds to the database column tp_order_inf.OIF_CARRY_SINGLE
  322. *
  323. * @mbggenerated
  324. */
  325. private String carrySingle;
  326. /**
  327. * This field was generated by MyBatis Generator.
  328. * This field corresponds to the database column tp_order_inf.OIF_AUTHER
  329. *
  330. * @mbggenerated
  331. */
  332. private String auther;
  333. /**
  334. * This field was generated by MyBatis Generator.
  335. * This field corresponds to the database column tp_order_inf.OIF_PRO_CON_NO
  336. *
  337. * @mbggenerated
  338. */
  339. private String proConNo;
  340. /**
  341. * This field was generated by MyBatis Generator.
  342. * This field corresponds to the database column tp_order_inf.OIF_MARGIN_LEVEL
  343. *
  344. * @mbggenerated
  345. */
  346. private String marginLevel;
  347. /**
  348. * This field was generated by MyBatis Generator.
  349. * This field corresponds to the database column tp_order_inf.OIF_CURRENCY
  350. *
  351. * @mbggenerated
  352. */
  353. private String currency;
  354. /**
  355. * This field was generated by MyBatis Generator.
  356. * This field corresponds to the database column tp_order_inf.OIF_CONTRACT_AMT
  357. *
  358. * @mbggenerated
  359. */
  360. private String contractAmt;
  361. /**
  362. * This method was generated by MyBatis Generator.
  363. * This method returns the value of the database column tp_order_inf.OIF_ORDERNO
  364. *
  365. * @return the value of tp_order_inf.OIF_ORDERNO
  366. *
  367. * @mbggenerated
  368. */
  369. public String getOrderno() {
  370. return orderno;
  371. }
  372. /**
  373. * This method was generated by MyBatis Generator.
  374. * This method sets the value of the database column tp_order_inf.OIF_ORDERNO
  375. *
  376. * @param orderno the value for tp_order_inf.OIF_ORDERNO
  377. *
  378. * @mbggenerated
  379. */
  380. public void setOrderno(String orderno) {
  381. this.orderno = orderno == null ? null : orderno.trim();
  382. }
  383. /**
  384. * This method was generated by MyBatis Generator.
  385. * This method returns the value of the database column tp_order_inf.OIF_COM_ID
  386. *
  387. * @return the value of tp_order_inf.OIF_COM_ID
  388. *
  389. * @mbggenerated
  390. */
  391. public String getComId() {
  392. return comId;
  393. }
  394. /**
  395. * This method was generated by MyBatis Generator.
  396. * This method sets the value of the database column tp_order_inf.OIF_COM_ID
  397. *
  398. * @param comId the value for tp_order_inf.OIF_COM_ID
  399. *
  400. * @mbggenerated
  401. */
  402. public void setComId(String comId) {
  403. this.comId = comId == null ? null : comId.trim();
  404. }
  405. /**
  406. * This method was generated by MyBatis Generator.
  407. * This method returns the value of the database column tp_order_inf.OIF_APPLY_DATE
  408. *
  409. * @return the value of tp_order_inf.OIF_APPLY_DATE
  410. *
  411. * @mbggenerated
  412. */
  413. public String getApplyDate() {
  414. return applyDate;
  415. }
  416. /**
  417. * This method was generated by MyBatis Generator.
  418. * This method sets the value of the database column tp_order_inf.OIF_APPLY_DATE
  419. *
  420. * @param applyDate the value for tp_order_inf.OIF_APPLY_DATE
  421. *
  422. * @mbggenerated
  423. */
  424. public void setApplyDate(String applyDate) {
  425. this.applyDate = applyDate == null ? null : applyDate.trim();
  426. }
  427. /**
  428. * This method was generated by MyBatis Generator.
  429. * This method returns the value of the database column tp_order_inf.OIF_APPLY_USER
  430. *
  431. * @return the value of tp_order_inf.OIF_APPLY_USER
  432. *
  433. * @mbggenerated
  434. */
  435. public String getApplyUser() {
  436. return applyUser;
  437. }
  438. /**
  439. * This method was generated by MyBatis Generator.
  440. * This method sets the value of the database column tp_order_inf.OIF_APPLY_USER
  441. *
  442. * @param applyUser the value for tp_order_inf.OIF_APPLY_USER
  443. *
  444. * @mbggenerated
  445. */
  446. public void setApplyUser(String applyUser) {
  447. this.applyUser = applyUser == null ? null : applyUser.trim();
  448. }
  449. /**
  450. * This method was generated by MyBatis Generator.
  451. * This method returns the value of the database column tp_order_inf.OIF_TERM
  452. *
  453. * @return the value of tp_order_inf.OIF_TERM
  454. *
  455. * @mbggenerated
  456. */
  457. public String getTerm() {
  458. return term;
  459. }
  460. /**
  461. * This method was generated by MyBatis Generator.
  462. * This method sets the value of the database column tp_order_inf.OIF_TERM
  463. *
  464. * @param term the value for tp_order_inf.OIF_TERM
  465. *
  466. * @mbggenerated
  467. */
  468. public void setTerm(String term) {
  469. this.term = term == null ? null : term.trim();
  470. }
  471. /**
  472. * This method was generated by MyBatis Generator.
  473. * This method returns the value of the database column tp_order_inf.OIF_TRANS_TYPE
  474. *
  475. * @return the value of tp_order_inf.OIF_TRANS_TYPE
  476. *
  477. * @mbggenerated
  478. */
  479. public String getTransType() {
  480. return transType;
  481. }
  482. /**
  483. * This method was generated by MyBatis Generator.
  484. * This method sets the value of the database column tp_order_inf.OIF_TRANS_TYPE
  485. *
  486. * @param transType the value for tp_order_inf.OIF_TRANS_TYPE
  487. *
  488. * @mbggenerated
  489. */
  490. public void setTransType(String transType) {
  491. this.transType = transType == null ? null : transType.trim();
  492. }
  493. /**
  494. * This method was generated by MyBatis Generator.
  495. * This method returns the value of the database column tp_order_inf.OIF_STT
  496. *
  497. * @return the value of tp_order_inf.OIF_STT
  498. *
  499. * @mbggenerated
  500. */
  501. public String getStt() {
  502. return stt;
  503. }
  504. /**
  505. * This method was generated by MyBatis Generator.
  506. * This method sets the value of the database column tp_order_inf.OIF_STT
  507. *
  508. * @param stt the value for tp_order_inf.OIF_STT
  509. *
  510. * @mbggenerated
  511. */
  512. public void setStt(String stt) {
  513. this.stt = stt == null ? null : stt.trim();
  514. }
  515. /**
  516. * This method was generated by MyBatis Generator.
  517. * This method returns the value of the database column tp_order_inf.OIF_WAYBILL_NO
  518. *
  519. * @return the value of tp_order_inf.OIF_WAYBILL_NO
  520. *
  521. * @mbggenerated
  522. */
  523. public String getWaybillNo() {
  524. return waybillNo;
  525. }
  526. /**
  527. * This method was generated by MyBatis Generator.
  528. * This method sets the value of the database column tp_order_inf.OIF_WAYBILL_NO
  529. *
  530. * @param waybillNo the value for tp_order_inf.OIF_WAYBILL_NO
  531. *
  532. * @mbggenerated
  533. */
  534. public void setWaybillNo(String waybillNo) {
  535. this.waybillNo = waybillNo == null ? null : waybillNo.trim();
  536. }
  537. /**
  538. * This method was generated by MyBatis Generator.
  539. * This method returns the value of the database column tp_order_inf.OIF_LOGISTICS_ID
  540. *
  541. * @return the value of tp_order_inf.OIF_LOGISTICS_ID
  542. *
  543. * @mbggenerated
  544. */
  545. public String getLogisticsId() {
  546. return logisticsId;
  547. }
  548. /**
  549. * This method was generated by MyBatis Generator.
  550. * This method sets the value of the database column tp_order_inf.OIF_LOGISTICS_ID
  551. *
  552. * @param logisticsId the value for tp_order_inf.OIF_LOGISTICS_ID
  553. *
  554. * @mbggenerated
  555. */
  556. public void setLogisticsId(String logisticsId) {
  557. this.logisticsId = logisticsId == null ? null : logisticsId.trim();
  558. }
  559. /**
  560. * This method was generated by MyBatis Generator.
  561. * This method returns the value of the database column tp_order_inf.OIF_DESTINATION
  562. *
  563. * @return the value of tp_order_inf.OIF_DESTINATION
  564. *
  565. * @mbggenerated
  566. */
  567. public String getDestination() {
  568. return destination;
  569. }
  570. /**
  571. * This method was generated by MyBatis Generator.
  572. * This method sets the value of the database column tp_order_inf.OIF_DESTINATION
  573. *
  574. * @param destination the value for tp_order_inf.OIF_DESTINATION
  575. *
  576. * @mbggenerated
  577. */
  578. public void setDestination(String destination) {
  579. this.destination = destination == null ? null : destination.trim();
  580. }
  581. /**
  582. * This method was generated by MyBatis Generator.
  583. * This method returns the value of the database column tp_order_inf.OIF_CLEAR_CUSTOM
  584. *
  585. * @return the value of tp_order_inf.OIF_CLEAR_CUSTOM
  586. *
  587. * @mbggenerated
  588. */
  589. public String getClearCustom() {
  590. return clearCustom;
  591. }
  592. /**
  593. * This method was generated by MyBatis Generator.
  594. * This method sets the value of the database column tp_order_inf.OIF_CLEAR_CUSTOM
  595. *
  596. * @param clearCustom the value for tp_order_inf.OIF_CLEAR_CUSTOM
  597. *
  598. * @mbggenerated
  599. */
  600. public void setClearCustom(String clearCustom) {
  601. this.clearCustom = clearCustom == null ? null : clearCustom.trim();
  602. }
  603. /**
  604. * This method was generated by MyBatis Generator.
  605. * This method returns the value of the database column tp_order_inf.OIF_LOANING_AMT
  606. *
  607. * @return the value of tp_order_inf.OIF_LOANING_AMT
  608. *
  609. * @mbggenerated
  610. */
  611. public String getLoaningAmt() {
  612. return loaningAmt;
  613. }
  614. /**
  615. * This method was generated by MyBatis Generator.
  616. * This method sets the value of the database column tp_order_inf.OIF_LOANING_AMT
  617. *
  618. * @param loaningAmt the value for tp_order_inf.OIF_LOANING_AMT
  619. *
  620. * @mbggenerated
  621. */
  622. public void setLoaningAmt(String loaningAmt) {
  623. this.loaningAmt = loaningAmt == null ? null : loaningAmt.trim();
  624. }
  625. /**
  626. * This method was generated by MyBatis Generator.
  627. * This method returns the value of the database column tp_order_inf.OIF_TOTAL_AMT
  628. *
  629. * @return the value of tp_order_inf.OIF_TOTAL_AMT
  630. *
  631. * @mbggenerated
  632. */
  633. public String getTotalAmt() {
  634. return totalAmt;
  635. }
  636. /**
  637. * This method was generated by MyBatis Generator.
  638. * This method sets the value of the database column tp_order_inf.OIF_TOTAL_AMT
  639. *
  640. * @param totalAmt the value for tp_order_inf.OIF_TOTAL_AMT
  641. *
  642. * @mbggenerated
  643. */
  644. public void setTotalAmt(String totalAmt) {
  645. this.totalAmt = totalAmt == null ? null : totalAmt.trim();
  646. }
  647. /**
  648. * This method was generated by MyBatis Generator.
  649. * This method returns the value of the database column tp_order_inf.OIF_MARGIN_AMT
  650. *
  651. * @return the value of tp_order_inf.OIF_MARGIN_AMT
  652. *
  653. * @mbggenerated
  654. */
  655. public String getMarginAmt() {
  656. return marginAmt;
  657. }
  658. /**
  659. * This method was generated by MyBatis Generator.
  660. * This method sets the value of the database column tp_order_inf.OIF_MARGIN_AMT
  661. *
  662. * @param marginAmt the value for tp_order_inf.OIF_MARGIN_AMT
  663. *
  664. * @mbggenerated
  665. */
  666. public void setMarginAmt(String marginAmt) {
  667. this.marginAmt = marginAmt == null ? null : marginAmt.trim();
  668. }
  669. /**
  670. * This method was generated by MyBatis Generator.
  671. * This method returns the value of the database column tp_order_inf.OIF_AGENCY_FEE
  672. *
  673. * @return the value of tp_order_inf.OIF_AGENCY_FEE
  674. *
  675. * @mbggenerated
  676. */
  677. public String getAgencyFee() {
  678. return agencyFee;
  679. }
  680. /**
  681. * This method was generated by MyBatis Generator.
  682. * This method sets the value of the database column tp_order_inf.OIF_AGENCY_FEE
  683. *
  684. * @param agencyFee the value for tp_order_inf.OIF_AGENCY_FEE
  685. *
  686. * @mbggenerated
  687. */
  688. public void setAgencyFee(String agencyFee) {
  689. this.agencyFee = agencyFee == null ? null : agencyFee.trim();
  690. }
  691. /**
  692. * This method was generated by MyBatis Generator.
  693. * This method returns the value of the database column tp_order_inf.OIF_INSTEREST
  694. *
  695. * @return the value of tp_order_inf.OIF_INSTEREST
  696. *
  697. * @mbggenerated
  698. */
  699. public String getInsterest() {
  700. return insterest;
  701. }
  702. /**
  703. * This method was generated by MyBatis Generator.
  704. * This method sets the value of the database column tp_order_inf.OIF_INSTEREST
  705. *
  706. * @param insterest the value for tp_order_inf.OIF_INSTEREST
  707. *
  708. * @mbggenerated
  709. */
  710. public void setInsterest(String insterest) {
  711. this.insterest = insterest == null ? null : insterest.trim();
  712. }
  713. /**
  714. * This method was generated by MyBatis Generator.
  715. * This method returns the value of the database column tp_order_inf.OIF_HANDING_FEE
  716. *
  717. * @return the value of tp_order_inf.OIF_HANDING_FEE
  718. *
  719. * @mbggenerated
  720. */
  721. public String getHandingFee() {
  722. return handingFee;
  723. }
  724. /**
  725. * This method was generated by MyBatis Generator.
  726. * This method sets the value of the database column tp_order_inf.OIF_HANDING_FEE
  727. *
  728. * @param handingFee the value for tp_order_inf.OIF_HANDING_FEE
  729. *
  730. * @mbggenerated
  731. */
  732. public void setHandingFee(String handingFee) {
  733. this.handingFee = handingFee == null ? null : handingFee.trim();
  734. }
  735. /**
  736. * This method was generated by MyBatis Generator.
  737. * This method returns the value of the database column tp_order_inf.OIF_LOGISTICE_AMT
  738. *
  739. * @return the value of tp_order_inf.OIF_LOGISTICE_AMT
  740. *
  741. * @mbggenerated
  742. */
  743. public String getLogisticeAmt() {
  744. return logisticeAmt;
  745. }
  746. /**
  747. * This method was generated by MyBatis Generator.
  748. * This method sets the value of the database column tp_order_inf.OIF_LOGISTICE_AMT
  749. *
  750. * @param logisticeAmt the value for tp_order_inf.OIF_LOGISTICE_AMT
  751. *
  752. * @mbggenerated
  753. */
  754. public void setLogisticeAmt(String logisticeAmt) {
  755. this.logisticeAmt = logisticeAmt == null ? null : logisticeAmt.trim();
  756. }
  757. /**
  758. * This method was generated by MyBatis Generator.
  759. * This method returns the value of the database column tp_order_inf.OIF_CLEARANCE_AMT
  760. *
  761. * @return the value of tp_order_inf.OIF_CLEARANCE_AMT
  762. *
  763. * @mbggenerated
  764. */
  765. public String getClearanceAmt() {
  766. return clearanceAmt;
  767. }
  768. /**
  769. * This method was generated by MyBatis Generator.
  770. * This method sets the value of the database column tp_order_inf.OIF_CLEARANCE_AMT
  771. *
  772. * @param clearanceAmt the value for tp_order_inf.OIF_CLEARANCE_AMT
  773. *
  774. * @mbggenerated
  775. */
  776. public void setClearanceAmt(String clearanceAmt) {
  777. this.clearanceAmt = clearanceAmt == null ? null : clearanceAmt.trim();
  778. }
  779. /**
  780. * This method was generated by MyBatis Generator.
  781. * This method returns the value of the database column tp_order_inf.OIF_TARRIFF
  782. *
  783. * @return the value of tp_order_inf.OIF_TARRIFF
  784. *
  785. * @mbggenerated
  786. */
  787. public String getTarriff() {
  788. return tarriff;
  789. }
  790. /**
  791. * This method was generated by MyBatis Generator.
  792. * This method sets the value of the database column tp_order_inf.OIF_TARRIFF
  793. *
  794. * @param tarriff the value for tp_order_inf.OIF_TARRIFF
  795. *
  796. * @mbggenerated
  797. */
  798. public void setTarriff(String tarriff) {
  799. this.tarriff = tarriff == null ? null : tarriff.trim();
  800. }
  801. /**
  802. * This method was generated by MyBatis Generator.
  803. * This method returns the value of the database column tp_order_inf.OIF_SALE_TAX
  804. *
  805. * @return the value of tp_order_inf.OIF_SALE_TAX
  806. *
  807. * @mbggenerated
  808. */
  809. public String getSaleTax() {
  810. return saleTax;
  811. }
  812. /**
  813. * This method was generated by MyBatis Generator.
  814. * This method sets the value of the database column tp_order_inf.OIF_SALE_TAX
  815. *
  816. * @param saleTax the value for tp_order_inf.OIF_SALE_TAX
  817. *
  818. * @mbggenerated
  819. */
  820. public void setSaleTax(String saleTax) {
  821. this.saleTax = saleTax == null ? null : saleTax.trim();
  822. }
  823. /**
  824. * This method was generated by MyBatis Generator.
  825. * This method returns the value of the database column tp_order_inf.OIF_VAT
  826. *
  827. * @return the value of tp_order_inf.OIF_VAT
  828. *
  829. * @mbggenerated
  830. */
  831. public String getVat() {
  832. return vat;
  833. }
  834. /**
  835. * This method was generated by MyBatis Generator.
  836. * This method sets the value of the database column tp_order_inf.OIF_VAT
  837. *
  838. * @param vat the value for tp_order_inf.OIF_VAT
  839. *
  840. * @mbggenerated
  841. */
  842. public void setVat(String vat) {
  843. this.vat = vat == null ? null : vat.trim();
  844. }
  845. /**
  846. * This method was generated by MyBatis Generator.
  847. * This method returns the value of the database column tp_order_inf.OIF_TATAL_SUBSIDY
  848. *
  849. * @return the value of tp_order_inf.OIF_TATAL_SUBSIDY
  850. *
  851. * @mbggenerated
  852. */
  853. public String getTatalSubsidy() {
  854. return tatalSubsidy;
  855. }
  856. /**
  857. * This method was generated by MyBatis Generator.
  858. * This method sets the value of the database column tp_order_inf.OIF_TATAL_SUBSIDY
  859. *
  860. * @param tatalSubsidy the value for tp_order_inf.OIF_TATAL_SUBSIDY
  861. *
  862. * @mbggenerated
  863. */
  864. public void setTatalSubsidy(String tatalSubsidy) {
  865. this.tatalSubsidy = tatalSubsidy == null ? null : tatalSubsidy.trim();
  866. }
  867. /**
  868. * This method was generated by MyBatis Generator.
  869. * This method returns the value of the database column tp_order_inf.OIF_RETURN_RATIO
  870. *
  871. * @return the value of tp_order_inf.OIF_RETURN_RATIO
  872. *
  873. * @mbggenerated
  874. */
  875. public String getReturnRatio() {
  876. return returnRatio;
  877. }
  878. /**
  879. * This method was generated by MyBatis Generator.
  880. * This method sets the value of the database column tp_order_inf.OIF_RETURN_RATIO
  881. *
  882. * @param returnRatio the value for tp_order_inf.OIF_RETURN_RATIO
  883. *
  884. * @mbggenerated
  885. */
  886. public void setReturnRatio(String returnRatio) {
  887. this.returnRatio = returnRatio == null ? null : returnRatio.trim();
  888. }
  889. /**
  890. * This method was generated by MyBatis Generator.
  891. * This method returns the value of the database column tp_order_inf.OIF_RETURN_AMT
  892. *
  893. * @return the value of tp_order_inf.OIF_RETURN_AMT
  894. *
  895. * @mbggenerated
  896. */
  897. public String getReturnAmt() {
  898. return returnAmt;
  899. }
  900. /**
  901. * This method was generated by MyBatis Generator.
  902. * This method sets the value of the database column tp_order_inf.OIF_RETURN_AMT
  903. *
  904. * @param returnAmt the value for tp_order_inf.OIF_RETURN_AMT
  905. *
  906. * @mbggenerated
  907. */
  908. public void setReturnAmt(String returnAmt) {
  909. this.returnAmt = returnAmt == null ? null : returnAmt.trim();
  910. }
  911. /**
  912. * This method was generated by MyBatis Generator.
  913. * This method returns the value of the database column tp_order_inf.OIF_GENER_AGREEMENT
  914. *
  915. * @return the value of tp_order_inf.OIF_GENER_AGREEMENT
  916. *
  917. * @mbggenerated
  918. */
  919. public String getGenerAgreement() {
  920. return generAgreement;
  921. }
  922. /**
  923. * This method was generated by MyBatis Generator.
  924. * This method sets the value of the database column tp_order_inf.OIF_GENER_AGREEMENT
  925. *
  926. * @param generAgreement the value for tp_order_inf.OIF_GENER_AGREEMENT
  927. *
  928. * @mbggenerated
  929. */
  930. public void setGenerAgreement(String generAgreement) {
  931. this.generAgreement = generAgreement == null ? null : generAgreement.trim();
  932. }
  933. /**
  934. * This method was generated by MyBatis Generator.
  935. * This method returns the value of the database column tp_order_inf.OIF_PRO_CON
  936. *
  937. * @return the value of tp_order_inf.OIF_PRO_CON
  938. *
  939. * @mbggenerated
  940. */
  941. public String getProCon() {
  942. return proCon;
  943. }
  944. /**
  945. * This method was generated by MyBatis Generator.
  946. * This method sets the value of the database column tp_order_inf.OIF_PRO_CON
  947. *
  948. * @param proCon the value for tp_order_inf.OIF_PRO_CON
  949. *
  950. * @mbggenerated
  951. */
  952. public void setProCon(String proCon) {
  953. this.proCon = proCon == null ? null : proCon.trim();
  954. }
  955. /**
  956. * This method was generated by MyBatis Generator.
  957. * This method returns the value of the database column tp_order_inf.OIF_FORWARD_CON_RUL
  958. *
  959. * @return the value of tp_order_inf.OIF_FORWARD_CON_RUL
  960. *
  961. * @mbggenerated
  962. */
  963. public String getForwardConRul() {
  964. return forwardConRul;
  965. }
  966. /**
  967. * This method was generated by MyBatis Generator.
  968. * This method sets the value of the database column tp_order_inf.OIF_FORWARD_CON_RUL
  969. *
  970. * @param forwardConRul the value for tp_order_inf.OIF_FORWARD_CON_RUL
  971. *
  972. * @mbggenerated
  973. */
  974. public void setForwardConRul(String forwardConRul) {
  975. this.forwardConRul = forwardConRul == null ? null : forwardConRul.trim();
  976. }
  977. /**
  978. * This method was generated by MyBatis Generator.
  979. * This method returns the value of the database column tp_order_inf.OIF_PRODUCT_URL
  980. *
  981. * @return the value of tp_order_inf.OIF_PRODUCT_URL
  982. *
  983. * @mbggenerated
  984. */
  985. public String getProductUrl() {
  986. return productUrl;
  987. }
  988. /**
  989. * This method was generated by MyBatis Generator.
  990. * This method sets the value of the database column tp_order_inf.OIF_PRODUCT_URL
  991. *
  992. * @param productUrl the value for tp_order_inf.OIF_PRODUCT_URL
  993. *
  994. * @mbggenerated
  995. */
  996. public void setProductUrl(String productUrl) {
  997. this.productUrl = productUrl == null ? null : productUrl.trim();
  998. }
  999. /**
  1000. * This method was generated by MyBatis Generator.
  1001. * This method returns the value of the database column tp_order_inf.OIF_PRODUCT_LOGO
  1002. *
  1003. * @return the value of tp_order_inf.OIF_PRODUCT_LOGO
  1004. *
  1005. * @mbggenerated
  1006. */
  1007. public String getProductLogo() {
  1008. return productLogo;
  1009. }
  1010. /**
  1011. * This method was generated by MyBatis Generator.
  1012. * This method sets the value of the database column tp_order_inf.OIF_PRODUCT_LOGO
  1013. *
  1014. * @param productLogo the value for tp_order_inf.OIF_PRODUCT_LOGO
  1015. *
  1016. * @mbggenerated
  1017. */
  1018. public void setProductLogo(String productLogo) {
  1019. this.productLogo = productLogo == null ? null : productLogo.trim();
  1020. }
  1021. /**
  1022. * This method was generated by MyBatis Generator.
  1023. * This method returns the value of the database column tp_order_inf.OIF_EXPIRED_DATE
  1024. *
  1025. * @return the value of tp_order_inf.OIF_EXPIRED_DATE
  1026. *
  1027. * @mbggenerated
  1028. */
  1029. public String getExpiredDate() {
  1030. return expiredDate;
  1031. }
  1032. /**
  1033. * This method was generated by MyBatis Generator.
  1034. * This method sets the value of the database column tp_order_inf.OIF_EXPIRED_DATE
  1035. *
  1036. * @param expiredDate the value for tp_order_inf.OIF_EXPIRED_DATE
  1037. *
  1038. * @mbggenerated
  1039. */
  1040. public void setExpiredDate(String expiredDate) {
  1041. this.expiredDate = expiredDate == null ? null : expiredDate.trim();
  1042. }
  1043. /**
  1044. * This method was generated by MyBatis Generator.
  1045. * This method returns the value of the database column tp_order_inf.OIF_CREATE_DATE
  1046. *
  1047. * @return the value of tp_order_inf.OIF_CREATE_DATE
  1048. *
  1049. * @mbggenerated
  1050. */
  1051. public String getCreateDate() {
  1052. return createDate;
  1053. }
  1054. /**
  1055. * This method was generated by MyBatis Generator.
  1056. * This method sets the value of the database column tp_order_inf.OIF_CREATE_DATE
  1057. *
  1058. * @param createDate the value for tp_order_inf.OIF_CREATE_DATE
  1059. *
  1060. * @mbggenerated
  1061. */
  1062. public void setCreateDate(String createDate) {
  1063. this.createDate = createDate == null ? null : createDate.trim();
  1064. }
  1065. /**
  1066. * This method was generated by MyBatis Generator.
  1067. * This method returns the value of the database column tp_order_inf.OIF_CREATE_USER
  1068. *
  1069. * @return the value of tp_order_inf.OIF_CREATE_USER
  1070. *
  1071. * @mbggenerated
  1072. */
  1073. public String getCreateUser() {
  1074. return createUser;
  1075. }
  1076. /**
  1077. * This method was generated by MyBatis Generator.
  1078. * This method sets the value of the database column tp_order_inf.OIF_CREATE_USER
  1079. *
  1080. * @param createUser the value for tp_order_inf.OIF_CREATE_USER
  1081. *
  1082. * @mbggenerated
  1083. */
  1084. public void setCreateUser(String createUser) {
  1085. this.createUser = createUser == null ? null : createUser.trim();
  1086. }
  1087. /**
  1088. * This method was generated by MyBatis Generator.
  1089. * This method returns the value of the database column tp_order_inf.OIF_REMAIN_AMOUNT
  1090. *
  1091. * @return the value of tp_order_inf.OIF_REMAIN_AMOUNT
  1092. *
  1093. * @mbggenerated
  1094. */
  1095. public String getRemainAmount() {
  1096. return remainAmount;
  1097. }
  1098. /**
  1099. * This method was generated by MyBatis Generator.
  1100. * This method sets the value of the database column tp_order_inf.OIF_REMAIN_AMOUNT
  1101. *
  1102. * @param remainAmount the value for tp_order_inf.OIF_REMAIN_AMOUNT
  1103. *
  1104. * @mbggenerated
  1105. */
  1106. public void setRemainAmount(String remainAmount) {
  1107. this.remainAmount = remainAmount == null ? null : remainAmount.trim();
  1108. }
  1109. /**
  1110. * This method was generated by MyBatis Generator.
  1111. * This method returns the value of the database column tp_order_inf.OIF_APPRIVE_PASS_DATE
  1112. *
  1113. * @return the value of tp_order_inf.OIF_APPRIVE_PASS_DATE
  1114. *
  1115. * @mbggenerated
  1116. */
  1117. public String getApprivePassDate() {
  1118. return apprivePassDate;
  1119. }
  1120. /**
  1121. * This method was generated by MyBatis Generator.
  1122. * This method sets the value of the database column tp_order_inf.OIF_APPRIVE_PASS_DATE
  1123. *
  1124. * @param apprivePassDate the value for tp_order_inf.OIF_APPRIVE_PASS_DATE
  1125. *
  1126. * @mbggenerated
  1127. */
  1128. public void setApprivePassDate(String apprivePassDate) {
  1129. this.apprivePassDate = apprivePassDate == null ? null : apprivePassDate.trim();
  1130. }
  1131. /**
  1132. * This method was generated by MyBatis Generator.
  1133. * This method returns the value of the database column tp_order_inf.OIF_MODITY_DATE
  1134. *
  1135. * @return the value of tp_order_inf.OIF_MODITY_DATE
  1136. *
  1137. * @mbggenerated
  1138. */
  1139. public String getModityDate() {
  1140. return modityDate;
  1141. }
  1142. /**
  1143. * This method was generated by MyBatis Generator.
  1144. * This method sets the value of the database column tp_order_inf.OIF_MODITY_DATE
  1145. *
  1146. * @param modityDate the value for tp_order_inf.OIF_MODITY_DATE
  1147. *
  1148. * @mbggenerated
  1149. */
  1150. public void setModityDate(String modityDate) {
  1151. this.modityDate = modityDate == null ? null : modityDate.trim();
  1152. }
  1153. /**
  1154. * This method was generated by MyBatis Generator.
  1155. * This method returns the value of the database column tp_order_inf.OIF_ESTIMATE_AMOUNT
  1156. *
  1157. * @return the value of tp_order_inf.OIF_ESTIMATE_AMOUNT
  1158. *
  1159. * @mbggenerated
  1160. */
  1161. public String getEstimateAmount() {
  1162. return estimateAmount;
  1163. }
  1164. /**
  1165. * This method was generated by MyBatis Generator.
  1166. * This method sets the value of the database column tp_order_inf.OIF_ESTIMATE_AMOUNT
  1167. *
  1168. * @param estimateAmount the value for tp_order_inf.OIF_ESTIMATE_AMOUNT
  1169. *
  1170. * @mbggenerated
  1171. */
  1172. public void setEstimateAmount(String estimateAmount) {
  1173. this.estimateAmount = estimateAmount == null ? null : estimateAmount.trim();
  1174. }
  1175. /**
  1176. * This method was generated by MyBatis Generator.
  1177. * This method returns the value of the database column tp_order_inf.OIF_FINANCING_CON
  1178. *
  1179. * @return the value of tp_order_inf.OIF_FINANCING_CON
  1180. *
  1181. * @mbggenerated
  1182. */
  1183. public String getFinancingCon() {
  1184. return financingCon;
  1185. }
  1186. /**
  1187. * This method was generated by MyBatis Generator.
  1188. * This method sets the value of the database column tp_order_inf.OIF_FINANCING_CON
  1189. *
  1190. * @param financingCon the value for tp_order_inf.OIF_FINANCING_CON
  1191. *
  1192. * @mbggenerated
  1193. */
  1194. public void setFinancingCon(String financingCon) {
  1195. this.financingCon = financingCon == null ? null : financingCon.trim();
  1196. }
  1197. /**
  1198. * This method was generated by MyBatis Generator.
  1199. * This method returns the value of the database column tp_order_inf.OIF_BUSINESS_SINGLE
  1200. *
  1201. * @return the value of tp_order_inf.OIF_BUSINESS_SINGLE
  1202. *
  1203. * @mbggenerated
  1204. */
  1205. public String getBusinessSingle() {
  1206. return businessSingle;
  1207. }
  1208. /**
  1209. * This method was generated by MyBatis Generator.
  1210. * This method sets the value of the database column tp_order_inf.OIF_BUSINESS_SINGLE
  1211. *
  1212. * @param businessSingle the value for tp_order_inf.OIF_BUSINESS_SINGLE
  1213. *
  1214. * @mbggenerated
  1215. */
  1216. public void setBusinessSingle(String businessSingle) {
  1217. this.businessSingle = businessSingle == null ? null : businessSingle.trim();
  1218. }
  1219. /**
  1220. * This method was generated by MyBatis Generator.
  1221. * This method returns the value of the database column tp_order_inf.OIF_BATCH
  1222. *
  1223. * @return the value of tp_order_inf.OIF_BATCH
  1224. *
  1225. * @mbggenerated
  1226. */
  1227. public String getBatch() {
  1228. return batch;
  1229. }
  1230. /**
  1231. * This method was generated by MyBatis Generator.
  1232. * This method sets the value of the database column tp_order_inf.OIF_BATCH
  1233. *
  1234. * @param batch the value for tp_order_inf.OIF_BATCH
  1235. *
  1236. * @mbggenerated
  1237. */
  1238. public void setBatch(String batch) {
  1239. this.batch = batch == null ? null : batch.trim();
  1240. }
  1241. /**
  1242. * This method was generated by MyBatis Generator.
  1243. * This method returns the value of the database column tp_order_inf.OIF_COMPLETE_TYPE
  1244. *
  1245. * @return the value of tp_order_inf.OIF_COMPLETE_TYPE
  1246. *
  1247. * @mbggenerated
  1248. */
  1249. public String getCompleteType() {
  1250. return completeType;
  1251. }
  1252. /**
  1253. * This method was generated by MyBatis Generator.
  1254. * This method sets the value of the database column tp_order_inf.OIF_COMPLETE_TYPE
  1255. *
  1256. * @param completeType the value for tp_order_inf.OIF_COMPLETE_TYPE
  1257. *
  1258. * @mbggenerated
  1259. */
  1260. public void setCompleteType(String completeType) {
  1261. this.completeType = completeType == null ? null : completeType.trim();
  1262. }
  1263. /**
  1264. * This method was generated by MyBatis Generator.
  1265. * This method returns the value of the database column tp_order_inf.OIF_MANAGER_NO
  1266. *
  1267. * @return the value of tp_order_inf.OIF_MANAGER_NO
  1268. *
  1269. * @mbggenerated
  1270. */
  1271. public String getManagerNo() {
  1272. return managerNo;
  1273. }
  1274. /**
  1275. * This method was generated by MyBatis Generator.
  1276. * This method sets the value of the database column tp_order_inf.OIF_MANAGER_NO
  1277. *
  1278. * @param managerNo the value for tp_order_inf.OIF_MANAGER_NO
  1279. *
  1280. * @mbggenerated
  1281. */
  1282. public void setManagerNo(String managerNo) {
  1283. this.managerNo = managerNo == null ? null : managerNo.trim();
  1284. }
  1285. /**
  1286. * This method was generated by MyBatis Generator.
  1287. * This method returns the value of the database column tp_order_inf.OIF_COMPLETE_USER
  1288. *
  1289. * @return the value of tp_order_inf.OIF_COMPLETE_USER
  1290. *
  1291. * @mbggenerated
  1292. */
  1293. public String getCompleteUser() {
  1294. return completeUser;
  1295. }
  1296. /**
  1297. * This method was generated by MyBatis Generator.
  1298. * This method sets the value of the database column tp_order_inf.OIF_COMPLETE_USER
  1299. *
  1300. * @param completeUser the value for tp_order_inf.OIF_COMPLETE_USER
  1301. *
  1302. * @mbggenerated
  1303. */
  1304. public void setCompleteUser(String completeUser) {
  1305. this.completeUser = completeUser == null ? null : completeUser.trim();
  1306. }
  1307. /**
  1308. * This method was generated by MyBatis Generator.
  1309. * This method returns the value of the database column tp_order_inf.OIF_COMPLETE_TIME
  1310. *
  1311. * @return the value of tp_order_inf.OIF_COMPLETE_TIME
  1312. *
  1313. * @mbggenerated
  1314. */
  1315. public String getCompleteTime() {
  1316. return completeTime;
  1317. }
  1318. /**
  1319. * This method was generated by MyBatis Generator.
  1320. * This method sets the value of the database column tp_order_inf.OIF_COMPLETE_TIME
  1321. *
  1322. * @param completeTime the value for tp_order_inf.OIF_COMPLETE_TIME
  1323. *
  1324. * @mbggenerated
  1325. */
  1326. public void setCompleteTime(String completeTime) {
  1327. this.completeTime = completeTime == null ? null : completeTime.trim();
  1328. }
  1329. /**
  1330. * This method was generated by MyBatis Generator.
  1331. * This method returns the value of the database column tp_order_inf.OIF_BUSINESS_INVOICE
  1332. *
  1333. * @return the value of tp_order_inf.OIF_BUSINESS_INVOICE
  1334. *
  1335. * @mbggenerated
  1336. */
  1337. public String getBusinessInvoice() {
  1338. return businessInvoice;
  1339. }
  1340. /**
  1341. * This method was generated by MyBatis Generator.
  1342. * This method sets the value of the database column tp_order_inf.OIF_BUSINESS_INVOICE
  1343. *
  1344. * @param businessInvoice the value for tp_order_inf.OIF_BUSINESS_INVOICE
  1345. *
  1346. * @mbggenerated
  1347. */
  1348. public void setBusinessInvoice(String businessInvoice) {
  1349. this.businessInvoice = businessInvoice == null ? null : businessInvoice.trim();
  1350. }
  1351. /**
  1352. * This method was generated by MyBatis Generator.
  1353. * This method returns the value of the database column tp_order_inf.OIF_CARRY_SINGLE
  1354. *
  1355. * @return the value of tp_order_inf.OIF_CARRY_SINGLE
  1356. *
  1357. * @mbggenerated
  1358. */
  1359. public String getCarrySingle() {
  1360. return carrySingle;
  1361. }
  1362. /**
  1363. * This method was generated by MyBatis Generator.
  1364. * This method sets the value of the database column tp_order_inf.OIF_CARRY_SINGLE
  1365. *
  1366. * @param carrySingle the value for tp_order_inf.OIF_CARRY_SINGLE
  1367. *
  1368. * @mbggenerated
  1369. */
  1370. public void setCarrySingle(String carrySingle) {
  1371. this.carrySingle = carrySingle == null ? null : carrySingle.trim();
  1372. }
  1373. /**
  1374. * This method was generated by MyBatis Generator.
  1375. * This method returns the value of the database column tp_order_inf.OIF_AUTHER
  1376. *
  1377. * @return the value of tp_order_inf.OIF_AUTHER
  1378. *
  1379. * @mbggenerated
  1380. */
  1381. public String getAuther() {
  1382. return auther;
  1383. }
  1384. /**
  1385. * This method was generated by MyBatis Generator.
  1386. * This method sets the value of the database column tp_order_inf.OIF_AUTHER
  1387. *
  1388. * @param auther the value for tp_order_inf.OIF_AUTHER
  1389. *
  1390. * @mbggenerated
  1391. */
  1392. public void setAuther(String auther) {
  1393. this.auther = auther == null ? null : auther.trim();
  1394. }
  1395. /**
  1396. * This method was generated by MyBatis Generator.
  1397. * This method returns the value of the database column tp_order_inf.OIF_PRO_CON_NO
  1398. *
  1399. * @return the value of tp_order_inf.OIF_PRO_CON_NO
  1400. *
  1401. * @mbggenerated
  1402. */
  1403. public String getProConNo() {
  1404. return proConNo;
  1405. }
  1406. /**
  1407. * This method was generated by MyBatis Generator.
  1408. * This method sets the value of the database column tp_order_inf.OIF_PRO_CON_NO
  1409. *
  1410. * @param proConNo the value for tp_order_inf.OIF_PRO_CON_NO
  1411. *
  1412. * @mbggenerated
  1413. */
  1414. public void setProConNo(String proConNo) {
  1415. this.proConNo = proConNo == null ? null : proConNo.trim();
  1416. }
  1417. /**
  1418. * This method was generated by MyBatis Generator.
  1419. * This method returns the value of the database column tp_order_inf.OIF_MARGIN_LEVEL
  1420. *
  1421. * @return the value of tp_order_inf.OIF_MARGIN_LEVEL
  1422. *
  1423. * @mbggenerated
  1424. */
  1425. public String getMarginLevel() {
  1426. return marginLevel;
  1427. }
  1428. /**
  1429. * This method was generated by MyBatis Generator.
  1430. * This method sets the value of the database column tp_order_inf.OIF_MARGIN_LEVEL
  1431. *
  1432. * @param marginLevel the value for tp_order_inf.OIF_MARGIN_LEVEL
  1433. *
  1434. * @mbggenerated
  1435. */
  1436. public void setMarginLevel(String marginLevel) {
  1437. this.marginLevel = marginLevel == null ? null : marginLevel.trim();
  1438. }
  1439. /**
  1440. * This method was generated by MyBatis Generator.
  1441. * This method returns the value of the database column tp_order_inf.OIF_CURRENCY
  1442. *
  1443. * @return the value of tp_order_inf.OIF_CURRENCY
  1444. *
  1445. * @mbggenerated
  1446. */
  1447. public String getCurrency() {
  1448. return currency;
  1449. }
  1450. /**
  1451. * This method was generated by MyBatis Generator.
  1452. * This method sets the value of the database column tp_order_inf.OIF_CURRENCY
  1453. *
  1454. * @param currency the value for tp_order_inf.OIF_CURRENCY
  1455. *
  1456. * @mbggenerated
  1457. */
  1458. public void setCurrency(String currency) {
  1459. this.currency = currency == null ? null : currency.trim();
  1460. }
  1461. /**
  1462. * This method was generated by MyBatis Generator.
  1463. * This method returns the value of the database column tp_order_inf.OIF_CONTRACT_AMT
  1464. *
  1465. * @return the value of tp_order_inf.OIF_CONTRACT_AMT
  1466. *
  1467. * @mbggenerated
  1468. */
  1469. public String getContractAmt() {
  1470. return contractAmt;
  1471. }
  1472. /**
  1473. * This method was generated by MyBatis Generator.
  1474. * This method sets the value of the database column tp_order_inf.OIF_CONTRACT_AMT
  1475. *
  1476. * @param contractAmt the value for tp_order_inf.OIF_CONTRACT_AMT
  1477. *
  1478. * @mbggenerated
  1479. */
  1480. public void setContractAmt(String contractAmt) {
  1481. this.contractAmt = contractAmt == null ? null : contractAmt.trim();
  1482. }
  1483. }