DpSjlrsy.java 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422
  1. package com.huimv.dp.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. public class DpSjlrsy extends BaseDO {
  5. /**
  6. * This field was generated by Apache iBATIS ibator.
  7. * This field corresponds to the database column dp_sjlr_sy.ID
  8. *
  9. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  10. */
  11. private Integer id;
  12. /**
  13. * This field was generated by Apache iBATIS ibator.
  14. * This field corresponds to the database column dp_sjlr_sy.MCID
  15. *
  16. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  17. */
  18. private Integer mcid;
  19. /**
  20. * This field was generated by Apache iBATIS ibator.
  21. * This field corresponds to the database column dp_sjlr_sy.CLSJYXS
  22. *
  23. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  24. */
  25. private String clsjyxs;
  26. /**
  27. * This field was generated by Apache iBATIS ibator.
  28. * This field corresponds to the database column dp_sjlr_sy.CLSJYST
  29. *
  30. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  31. */
  32. private String clsjyst;
  33. /**
  34. * This field was generated by Apache iBATIS ibator.
  35. * This field corresponds to the database column dp_sjlr_sy.CLSJZZ
  36. *
  37. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  38. */
  39. private String clsjzz;
  40. /**
  41. * This field was generated by Apache iBATIS ibator.
  42. * This field corresponds to the database column dp_sjlr_sy.CLSJHBZZ
  43. *
  44. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  45. */
  46. private String clsjhbzz;
  47. /**
  48. * This field was generated by Apache iBATIS ibator.
  49. * This field corresponds to the database column dp_sjlr_sy.CLSJBRZ
  50. *
  51. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  52. */
  53. private String clsjbrz;
  54. /**
  55. * This field was generated by Apache iBATIS ibator.
  56. * This field corresponds to the database column dp_sjlr_sy.CLSJBYZ
  57. *
  58. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  59. */
  60. private String clsjbyz;
  61. /**
  62. * This field was generated by Apache iBATIS ibator.
  63. * This field corresponds to the database column dp_sjlr_sy.CLSJYFZ
  64. *
  65. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  66. */
  67. private String clsjyfz;
  68. /**
  69. * This field was generated by Apache iBATIS ibator.
  70. * This field corresponds to the database column dp_sjlr_sy.CLSJXSZS
  71. *
  72. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  73. */
  74. private String clsjxszs;
  75. /**
  76. * This field was generated by Apache iBATIS ibator.
  77. * This field corresponds to the database column dp_sjlr_sy.CLSJSTZS
  78. *
  79. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  80. */
  81. private String clsjstzs;
  82. /**
  83. * This field was generated by Apache iBATIS ibator.
  84. * This field corresponds to the database column dp_sjlr_sy.BYPZS
  85. *
  86. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  87. */
  88. private String bypzs;
  89. /**
  90. * This field was generated by Apache iBATIS ibator.
  91. * This field corresponds to the database column dp_sjlr_sy.BYFMS
  92. *
  93. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  94. */
  95. private String byfms;
  96. /**
  97. * This field was generated by Apache iBATIS ibator.
  98. * This field corresponds to the database column dp_sjlr_sy.BYCZS
  99. *
  100. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  101. */
  102. private String byczs;
  103. /**
  104. * This field was generated by Apache iBATIS ibator.
  105. * This field corresponds to the database column dp_sjlr_sy.BYDQXSTS
  106. *
  107. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  108. */
  109. private String bydqxsts;
  110. /**
  111. * This field was generated by Apache iBATIS ibator.
  112. * This field corresponds to the database column dp_sjlr_sy.BYDQZJ
  113. *
  114. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  115. */
  116. private String bydqzj;
  117. /**
  118. * This field was generated by Apache iBATIS ibator.
  119. * This field corresponds to the database column dp_sjlr_sy.BYZZCHL
  120. *
  121. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  122. */
  123. private String byzzchl;
  124. /**
  125. * This field was generated by Apache iBATIS ibator.
  126. * This field corresponds to the database column dp_sjlr_sy.TTSJBYTTS
  127. *
  128. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  129. */
  130. private String ttsjbytts;
  131. /**
  132. * This field was generated by Apache iBATIS ibator.
  133. * This field corresponds to the database column dp_sjlr_sy.TTSJQYYTTS
  134. *
  135. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  136. */
  137. private String ttsjqyytts;
  138. /**
  139. * This field was generated by Apache iBATIS ibator.
  140. * This field corresponds to the database column dp_sjlr_sy.TTSJQEYTTS
  141. *
  142. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  143. */
  144. private String ttsjqeytts;
  145. /**
  146. * This field was generated by Apache iBATIS ibator.
  147. * This field corresponds to the database column dp_sjlr_sy.TTSJZZ
  148. *
  149. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  150. */
  151. private String ttsjzz;
  152. /**
  153. * This field was generated by Apache iBATIS ibator.
  154. * This field corresponds to the database column dp_sjlr_sy.TTSJFZ
  155. *
  156. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  157. */
  158. private String ttsjfz;
  159. /**
  160. * This field was generated by Apache iBATIS ibator.
  161. * This field corresponds to the database column dp_sjlr_sy.TTSJQSYTTS
  162. *
  163. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  164. */
  165. private String ttsjqsytts;
  166. /**
  167. * This field was generated by Apache iBATIS ibator.
  168. * This field corresponds to the database column dp_sjlr_sy.XSSJWEEK
  169. *
  170. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  171. */
  172. private String xssjweek;
  173. /**
  174. * This field was generated by Apache iBATIS ibator.
  175. * This field corresponds to the database column dp_sjlr_sy.XSSJMONTH
  176. *
  177. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  178. */
  179. private String xssjmonth;
  180. /**
  181. * This field was generated by Apache iBATIS ibator.
  182. * This field corresponds to the database column dp_sjlr_sy.XSSJYEAR
  183. *
  184. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  185. */
  186. private String xssjyear;
  187. /**
  188. * This field was generated by Apache iBATIS ibator.
  189. * This field corresponds to the database column dp_sjlr_sy.PZJGFBPZ
  190. *
  191. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  192. */
  193. private String pzjgfbpz;
  194. /**
  195. * This field was generated by Apache iBATIS ibator.
  196. * This field corresponds to the database column dp_sjlr_sy.PZJGFBHY
  197. *
  198. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  199. */
  200. private String pzjgfbhy;
  201. /**
  202. * This field was generated by Apache iBATIS ibator.
  203. * This field corresponds to the database column dp_sjlr_sy.PZJGFBLC
  204. *
  205. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  206. */
  207. private String pzjgfblc;
  208. /**
  209. * This field was generated by Apache iBATIS ibator.
  210. * This field corresponds to the database column dp_sjlr_sy.PZJGFBFQ
  211. *
  212. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  213. */
  214. private String pzjgfbfq;
  215. /**
  216. * This field was generated by Apache iBATIS ibator.
  217. * This field corresponds to the database column dp_sjlr_sy.PZJGFBQT
  218. *
  219. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  220. */
  221. private String pzjgfbqt;
  222. /**
  223. * This field was generated by Apache iBATIS ibator.
  224. * This field corresponds to the database column dp_sjlr_sy.PZJGFBPZFML
  225. *
  226. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  227. */
  228. private String pzjgfbpzfml;
  229. /**
  230. * This field was generated by Apache iBATIS ibator.
  231. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTJZS
  232. *
  233. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  234. */
  235. private String fmzzfbtjzs;
  236. /**
  237. * This field was generated by Apache iBATIS ibator.
  238. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTRZS
  239. *
  240. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  241. */
  242. private String fmzzfbtrzs;
  243. /**
  244. * This field was generated by Apache iBATIS ibator.
  245. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTJXS
  246. *
  247. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  248. */
  249. private String fmzzfbtjxs;
  250. /**
  251. * This field was generated by Apache iBATIS ibator.
  252. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTMNYS
  253. *
  254. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  255. */
  256. private String fmzzfbtmnys;
  257. /**
  258. * This field was generated by Apache iBATIS ibator.
  259. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTSTS
  260. *
  261. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  262. */
  263. private String fmzzfbtsts;
  264. /**
  265. * This field was generated by Apache iBATIS ibator.
  266. * This field corresponds to the database column dp_sjlr_sy.FMZZFBTFMCHL
  267. *
  268. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  269. */
  270. private String fmzzfbtfmchl;
  271. /**
  272. * This field was generated by Apache iBATIS ibator.
  273. * This field corresponds to the database column dp_sjlr_sy.TTFBTSW
  274. *
  275. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  276. */
  277. private String ttfbtsw;
  278. /**
  279. * This field was generated by Apache iBATIS ibator.
  280. * This field corresponds to the database column dp_sjlr_sy.TTFBTTCTG
  281. *
  282. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  283. */
  284. private String ttfbttctg;
  285. /**
  286. * This field was generated by Apache iBATIS ibator.
  287. * This field corresponds to the database column dp_sjlr_sy.TTFBTCQBFQ
  288. *
  289. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  290. */
  291. private String ttfbtcqbfq;
  292. /**
  293. * This field was generated by Apache iBATIS ibator.
  294. * This field corresponds to the database column dp_sjlr_sy.TTFBTCZSS
  295. *
  296. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  297. */
  298. private String ttfbtczss;
  299. /**
  300. * This field was generated by Apache iBATIS ibator.
  301. * This field corresponds to the database column dp_sjlr_sy.TTFBTCDYZ
  302. *
  303. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  304. */
  305. private String ttfbtcdyz;
  306. /**
  307. * This field was generated by Apache iBATIS ibator.
  308. * This field corresponds to the database column dp_sjlr_sy.TTFBTYYBL
  309. *
  310. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  311. */
  312. private String ttfbtyybl;
  313. /**
  314. * This field was generated by Apache iBATIS ibator.
  315. * This field corresponds to the database column dp_sjlr_sy.TTFBTZTJB
  316. *
  317. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  318. */
  319. private String ttfbtztjb;
  320. /**
  321. * This field was generated by Apache iBATIS ibator.
  322. * This field corresponds to the database column dp_sjlr_sy.TTFBTQT
  323. *
  324. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  325. */
  326. private String ttfbtqt;
  327. /**
  328. * This field was generated by Apache iBATIS ibator.
  329. * This field corresponds to the database column dp_sjlr_sy.YDTTS1
  330. *
  331. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  332. */
  333. private String ydtts1;
  334. /**
  335. * This field was generated by Apache iBATIS ibator.
  336. * This field corresponds to the database column dp_sjlr_sy.YDTTS2
  337. *
  338. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  339. */
  340. private String ydtts2;
  341. /**
  342. * This field was generated by Apache iBATIS ibator.
  343. * This field corresponds to the database column dp_sjlr_sy.YDTTS3
  344. *
  345. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  346. */
  347. private String ydtts3;
  348. /**
  349. * This field was generated by Apache iBATIS ibator.
  350. * This field corresponds to the database column dp_sjlr_sy.YDTTS4
  351. *
  352. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  353. */
  354. private String ydtts4;
  355. /**
  356. * This field was generated by Apache iBATIS ibator.
  357. * This field corresponds to the database column dp_sjlr_sy.YDTTS5
  358. *
  359. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  360. */
  361. private String ydtts5;
  362. /**
  363. * This field was generated by Apache iBATIS ibator.
  364. * This field corresponds to the database column dp_sjlr_sy.YDTTS6
  365. *
  366. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  367. */
  368. private String ydtts6;
  369. /**
  370. * This field was generated by Apache iBATIS ibator.
  371. * This field corresponds to the database column dp_sjlr_sy.YDTTS7
  372. *
  373. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  374. */
  375. private String ydtts7;
  376. /**
  377. * This field was generated by Apache iBATIS ibator.
  378. * This field corresponds to the database column dp_sjlr_sy.YDTTS8
  379. *
  380. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  381. */
  382. private String ydtts8;
  383. /**
  384. * This field was generated by Apache iBATIS ibator.
  385. * This field corresponds to the database column dp_sjlr_sy.YDTTS9
  386. *
  387. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  388. */
  389. private String ydtts9;
  390. /**
  391. * This field was generated by Apache iBATIS ibator.
  392. * This field corresponds to the database column dp_sjlr_sy.YDTTS10
  393. *
  394. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  395. */
  396. private String ydtts10;
  397. /**
  398. * This field was generated by Apache iBATIS ibator.
  399. * This field corresponds to the database column dp_sjlr_sy.YDTTS11
  400. *
  401. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  402. */
  403. private String ydtts11;
  404. /**
  405. * This field was generated by Apache iBATIS ibator.
  406. * This field corresponds to the database column dp_sjlr_sy.YDTTS12
  407. *
  408. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  409. */
  410. private String ydtts12;
  411. /**
  412. * This field was generated by Apache iBATIS ibator.
  413. * This field corresponds to the database column dp_sjlr_sy.YFFBT1
  414. *
  415. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  416. */
  417. private String yffbt1;
  418. /**
  419. * This field was generated by Apache iBATIS ibator.
  420. * This field corresponds to the database column dp_sjlr_sy.YFFBT2
  421. *
  422. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  423. */
  424. private String yffbt2;
  425. /**
  426. * This field was generated by Apache iBATIS ibator.
  427. * This field corresponds to the database column dp_sjlr_sy.YFFBT3
  428. *
  429. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  430. */
  431. private String yffbt3;
  432. /**
  433. * This field was generated by Apache iBATIS ibator.
  434. * This field corresponds to the database column dp_sjlr_sy.YFFBT4
  435. *
  436. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  437. */
  438. private String yffbt4;
  439. /**
  440. * This field was generated by Apache iBATIS ibator.
  441. * This field corresponds to the database column dp_sjlr_sy.YFFBT5
  442. *
  443. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  444. */
  445. private String yffbt5;
  446. /**
  447. * This field was generated by Apache iBATIS ibator.
  448. * This field corresponds to the database column dp_sjlr_sy.YFYFTSYY
  449. *
  450. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  451. */
  452. private String yfyftsyy;
  453. /**
  454. * This field was generated by Apache iBATIS ibator.
  455. * This field corresponds to the database column dp_sjlr_sy.YFYFTSEY
  456. *
  457. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  458. */
  459. private String yfyftsey;
  460. /**
  461. * This field was generated by Apache iBATIS ibator.
  462. * This field corresponds to the database column dp_sjlr_sy.YFYFTSSY
  463. *
  464. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  465. */
  466. private String yfyftssy;
  467. /**
  468. * This field was generated by Apache iBATIS ibator.
  469. * This field corresponds to the database column dp_sjlr_sy.YFYFTSSIY
  470. *
  471. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  472. */
  473. private String yfyftssiy;
  474. /**
  475. * This field was generated by Apache iBATIS ibator.
  476. * This field corresponds to the database column dp_sjlr_sy.YFYFTSWY
  477. *
  478. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  479. */
  480. private String yfyftswy;
  481. /**
  482. * This field was generated by Apache iBATIS ibator.
  483. * This field corresponds to the database column dp_sjlr_sy.WHHCLLXR
  484. *
  485. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  486. */
  487. private String whhcllxr;
  488. /**
  489. * This field was generated by Apache iBATIS ibator.
  490. * This field corresponds to the database column dp_sjlr_sy.WHHCLLXDH
  491. *
  492. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  493. */
  494. private String whhcllxdh;
  495. /**
  496. * This field was generated by Apache iBATIS ibator.
  497. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ1
  498. *
  499. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  500. */
  501. private Date whhclrq1;
  502. /**
  503. * This field was generated by Apache iBATIS ibator.
  504. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ2
  505. *
  506. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  507. */
  508. private Date whhclrq2;
  509. /**
  510. * This field was generated by Apache iBATIS ibator.
  511. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ3
  512. *
  513. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  514. */
  515. private Date whhclrq3;
  516. /**
  517. * This field was generated by Apache iBATIS ibator.
  518. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ4
  519. *
  520. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  521. */
  522. private Date whhclrq4;
  523. /**
  524. * This field was generated by Apache iBATIS ibator.
  525. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ5
  526. *
  527. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  528. */
  529. private Date whhclrq5;
  530. /**
  531. * This field was generated by Apache iBATIS ibator.
  532. * This field corresponds to the database column dp_sjlr_sy.WHHCLRQ6
  533. *
  534. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  535. */
  536. private Date whhclrq6;
  537. /**
  538. * This field was generated by Apache iBATIS ibator.
  539. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS1
  540. *
  541. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  542. */
  543. private String whhclfs1;
  544. /**
  545. * This field was generated by Apache iBATIS ibator.
  546. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS2
  547. *
  548. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  549. */
  550. private String whhclfs2;
  551. /**
  552. * This field was generated by Apache iBATIS ibator.
  553. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS3
  554. *
  555. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  556. */
  557. private String whhclfs3;
  558. /**
  559. * This field was generated by Apache iBATIS ibator.
  560. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS4
  561. *
  562. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  563. */
  564. private String whhclfs4;
  565. /**
  566. * This field was generated by Apache iBATIS ibator.
  567. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS5
  568. *
  569. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  570. */
  571. private String whhclfs5;
  572. /**
  573. * This field was generated by Apache iBATIS ibator.
  574. * This field corresponds to the database column dp_sjlr_sy.WHHCLFS6
  575. *
  576. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  577. */
  578. private String whhclfs6;
  579. /**
  580. * This field was generated by Apache iBATIS ibator.
  581. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL1
  582. *
  583. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  584. */
  585. private String whhclsl1;
  586. /**
  587. * This field was generated by Apache iBATIS ibator.
  588. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL2
  589. *
  590. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  591. */
  592. private String whhclsl2;
  593. /**
  594. * This field was generated by Apache iBATIS ibator.
  595. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL3
  596. *
  597. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  598. */
  599. private String whhclsl3;
  600. /**
  601. * This field was generated by Apache iBATIS ibator.
  602. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL4
  603. *
  604. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  605. */
  606. private String whhclsl4;
  607. /**
  608. * This field was generated by Apache iBATIS ibator.
  609. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL5
  610. *
  611. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  612. */
  613. private String whhclsl5;
  614. /**
  615. * This field was generated by Apache iBATIS ibator.
  616. * This field corresponds to the database column dp_sjlr_sy.WHHCLSL6
  617. *
  618. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  619. */
  620. private String whhclsl6;
  621. /**
  622. * This field was generated by Apache iBATIS ibator.
  623. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ1
  624. *
  625. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  626. */
  627. private Date xssjsj1;
  628. /**
  629. * This field was generated by Apache iBATIS ibator.
  630. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ2
  631. *
  632. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  633. */
  634. private Date xssjsj2;
  635. /**
  636. * This field was generated by Apache iBATIS ibator.
  637. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ3
  638. *
  639. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  640. */
  641. private Date xssjsj3;
  642. /**
  643. * This field was generated by Apache iBATIS ibator.
  644. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ4
  645. *
  646. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  647. */
  648. private Date xssjsj4;
  649. /**
  650. * This field was generated by Apache iBATIS ibator.
  651. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ5
  652. *
  653. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  654. */
  655. private Date xssjsj5;
  656. /**
  657. * This field was generated by Apache iBATIS ibator.
  658. * This field corresponds to the database column dp_sjlr_sy.XSSJSJ6
  659. *
  660. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  661. */
  662. private Date xssjsj6;
  663. /**
  664. * This field was generated by Apache iBATIS ibator.
  665. * This field corresponds to the database column dp_sjlr_sy.WSCL1
  666. *
  667. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  668. */
  669. private String wscl1;
  670. /**
  671. * This field was generated by Apache iBATIS ibator.
  672. * This field corresponds to the database column dp_sjlr_sy.WSCL2
  673. *
  674. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  675. */
  676. private String wscl2;
  677. /**
  678. * This field was generated by Apache iBATIS ibator.
  679. * This field corresponds to the database column dp_sjlr_sy.WSCL3
  680. *
  681. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  682. */
  683. private String wscl3;
  684. /**
  685. * This field was generated by Apache iBATIS ibator.
  686. * This field corresponds to the database column dp_sjlr_sy.WSCL4
  687. *
  688. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  689. */
  690. private String wscl4;
  691. /**
  692. * This field was generated by Apache iBATIS ibator.
  693. * This field corresponds to the database column dp_sjlr_sy.WSCL5
  694. *
  695. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  696. */
  697. private String wscl5;
  698. /**
  699. * This field was generated by Apache iBATIS ibator.
  700. * This field corresponds to the database column dp_sjlr_sy.WSCL6
  701. *
  702. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  703. */
  704. private String wscl6;
  705. /**
  706. * This field was generated by Apache iBATIS ibator.
  707. * This field corresponds to the database column dp_sjlr_sy.WSCL7
  708. *
  709. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  710. */
  711. private String wscl7;
  712. /**
  713. * This field was generated by Apache iBATIS ibator.
  714. * This field corresponds to the database column dp_sjlr_sy.SBTJ1
  715. *
  716. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  717. */
  718. private String sbtj1;
  719. /**
  720. * This field was generated by Apache iBATIS ibator.
  721. * This field corresponds to the database column dp_sjlr_sy.SBTJ2
  722. *
  723. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  724. */
  725. private String sbtj2;
  726. /**
  727. * This field was generated by Apache iBATIS ibator.
  728. * This field corresponds to the database column dp_sjlr_sy.SBTJ3
  729. *
  730. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  731. */
  732. private String sbtj3;
  733. /**
  734. * This field was generated by Apache iBATIS ibator.
  735. * This field corresponds to the database column dp_sjlr_sy.SBTJ4
  736. *
  737. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  738. */
  739. private String sbtj4;
  740. /**
  741. * This field was generated by Apache iBATIS ibator.
  742. * This field corresponds to the database column dp_sjlr_sy.SBTJ5
  743. *
  744. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  745. */
  746. private String sbtj5;
  747. /**
  748. * This field was generated by Apache iBATIS ibator.
  749. * This field corresponds to the database column dp_sjlr_sy.SBTJ6
  750. *
  751. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  752. */
  753. private String sbtj6;
  754. /**
  755. * This field was generated by Apache iBATIS ibator.
  756. * This field corresponds to the database column dp_sjlr_sy.SBTJ7
  757. *
  758. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  759. */
  760. private String sbtj7;
  761. /**
  762. * This field was generated by Apache iBATIS ibator.
  763. * This field corresponds to the database column dp_sjlr_sy.SBTJJN
  764. *
  765. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  766. */
  767. private String sbtjjn;
  768. /**
  769. * This field was generated by Apache iBATIS ibator.
  770. * This field corresponds to the database column dp_sjlr_sy.SBTJQN
  771. *
  772. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  773. */
  774. private String sbtjqn;
  775. /**
  776. * This field was generated by Apache iBATIS ibator.
  777. * This field corresponds to the database column dp_sjlr_sy.DNZS
  778. *
  779. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  780. */
  781. private String dnzs;
  782. /**
  783. * This field was generated by Apache iBATIS ibator.
  784. * This field corresponds to the database column dp_sjlr_sy.DNWS
  785. *
  786. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  787. */
  788. private String dnws;
  789. /**
  790. * This field was generated by Apache iBATIS ibator.
  791. * This field corresponds to the database column dp_sjlr_sy.GTJZ
  792. *
  793. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  794. */
  795. private String gtjz;
  796. /**
  797. * This field was generated by Apache iBATIS ibator.
  798. * This field corresponds to the database column dp_sjlr_sy.WZHZS
  799. *
  800. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  801. */
  802. private String wzhzs;
  803. /**
  804. * This field was generated by Apache iBATIS ibator.
  805. * This field corresponds to the database column dp_sjlr_sy.YFFBT6
  806. *
  807. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  808. */
  809. private String yffbt6;
  810. /**
  811. * This field was generated by Apache iBATIS ibator.
  812. * This field corresponds to the database column dp_sjlr_sy.YFFBT7
  813. *
  814. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  815. */
  816. private String yffbt7;
  817. /**
  818. * This field was generated by Apache iBATIS ibator.
  819. * This field corresponds to the database column dp_sjlr_sy.BYTTS
  820. *
  821. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  822. */
  823. private String bytts;
  824. /**
  825. * This field was generated by Apache iBATIS ibator.
  826. * This field corresponds to the database column dp_sjlr_sy.YFTTS
  827. *
  828. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  829. */
  830. private String yftts;
  831. /**
  832. * This field was generated by Apache iBATIS ibator.
  833. * This field corresponds to the database column dp_sjlr_sy.BYTTSZB
  834. *
  835. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  836. */
  837. private String byttszb;
  838. /**
  839. * This field was generated by Apache iBATIS ibator.
  840. * This field corresponds to the database column dp_sjlr_sy.QYYTTSZB
  841. *
  842. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  843. */
  844. private String qyyttszb;
  845. /**
  846. * This field was generated by Apache iBATIS ibator.
  847. * This field corresponds to the database column dp_sjlr_sy.QEYTTSZB
  848. *
  849. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  850. */
  851. private String qeyttszb;
  852. /**
  853. * This field was generated by Apache iBATIS ibator.
  854. * This field corresponds to the database column dp_sjlr_sy.QSYTTSZB
  855. *
  856. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  857. */
  858. private String qsyttszb;
  859. /**
  860. * This field was generated by Apache iBATIS ibator.
  861. * This field corresponds to the database column dp_sjlr_sy.MZTTS
  862. *
  863. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  864. */
  865. private String mztts;
  866. /**
  867. * This field was generated by Apache iBATIS ibator.
  868. * This field corresponds to the database column dp_sjlr_sy.GZTTS
  869. *
  870. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  871. */
  872. private String gztts;
  873. /**
  874. * This field was generated by Apache iBATIS ibator.
  875. * This field corresponds to the database column dp_sjlr_sy.WEEK1
  876. *
  877. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  878. */
  879. private Integer week1;
  880. /**
  881. * This field was generated by Apache iBATIS ibator.
  882. * This field corresponds to the database column dp_sjlr_sy.WEEK2
  883. *
  884. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  885. */
  886. private Integer week2;
  887. /**
  888. * This field was generated by Apache iBATIS ibator.
  889. * This field corresponds to the database column dp_sjlr_sy.WEEK3
  890. *
  891. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  892. */
  893. private Integer week3;
  894. /**
  895. * This field was generated by Apache iBATIS ibator.
  896. * This field corresponds to the database column dp_sjlr_sy.WEEK4
  897. *
  898. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  899. */
  900. private Integer week4;
  901. /**
  902. * This field was generated by Apache iBATIS ibator.
  903. * This field corresponds to the database column dp_sjlr_sy.WEEK5
  904. *
  905. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  906. */
  907. private Integer week5;
  908. /**
  909. * This field was generated by Apache iBATIS ibator.
  910. * This field corresponds to the database column dp_sjlr_sy.WEEK6
  911. *
  912. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  913. */
  914. private Integer week6;
  915. /**
  916. * This field was generated by Apache iBATIS ibator.
  917. * This field corresponds to the database column dp_sjlr_sy.WEEK7
  918. *
  919. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  920. */
  921. private Integer week7;
  922. /**
  923. * This field was generated by Apache iBATIS ibator.
  924. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE1
  925. *
  926. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  927. */
  928. private String weekprice1;
  929. /**
  930. * This field was generated by Apache iBATIS ibator.
  931. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE2
  932. *
  933. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  934. */
  935. private String weekprice2;
  936. /**
  937. * This field was generated by Apache iBATIS ibator.
  938. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE3
  939. *
  940. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  941. */
  942. private String weekprice3;
  943. /**
  944. * This field was generated by Apache iBATIS ibator.
  945. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE4
  946. *
  947. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  948. */
  949. private String weekprice4;
  950. /**
  951. * This field was generated by Apache iBATIS ibator.
  952. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE5
  953. *
  954. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  955. */
  956. private String weekprice5;
  957. /**
  958. * This field was generated by Apache iBATIS ibator.
  959. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE6
  960. *
  961. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  962. */
  963. private String weekprice6;
  964. /**
  965. * This field was generated by Apache iBATIS ibator.
  966. * This field corresponds to the database column dp_sjlr_sy.WEEKPRICE7
  967. *
  968. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  969. */
  970. private String weekprice7;
  971. /**
  972. * This method was generated by Apache iBATIS ibator.
  973. * This method returns the value of the database column dp_sjlr_sy.ID
  974. *
  975. * @return the value of dp_sjlr_sy.ID
  976. *
  977. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  978. */
  979. public Integer getId() {
  980. return id;
  981. }
  982. /**
  983. * This method was generated by Apache iBATIS ibator.
  984. * This method sets the value of the database column dp_sjlr_sy.ID
  985. *
  986. * @param id the value for dp_sjlr_sy.ID
  987. *
  988. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  989. */
  990. public void setId(Integer id) {
  991. this.id = id;
  992. }
  993. /**
  994. * This method was generated by Apache iBATIS ibator.
  995. * This method returns the value of the database column dp_sjlr_sy.MCID
  996. *
  997. * @return the value of dp_sjlr_sy.MCID
  998. *
  999. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1000. */
  1001. public Integer getMcid() {
  1002. return mcid;
  1003. }
  1004. /**
  1005. * This method was generated by Apache iBATIS ibator.
  1006. * This method sets the value of the database column dp_sjlr_sy.MCID
  1007. *
  1008. * @param mcid the value for dp_sjlr_sy.MCID
  1009. *
  1010. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1011. */
  1012. public void setMcid(Integer mcid) {
  1013. this.mcid = mcid;
  1014. }
  1015. /**
  1016. * This method was generated by Apache iBATIS ibator.
  1017. * This method returns the value of the database column dp_sjlr_sy.CLSJYXS
  1018. *
  1019. * @return the value of dp_sjlr_sy.CLSJYXS
  1020. *
  1021. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1022. */
  1023. public String getClsjyxs() {
  1024. return clsjyxs;
  1025. }
  1026. /**
  1027. * This method was generated by Apache iBATIS ibator.
  1028. * This method sets the value of the database column dp_sjlr_sy.CLSJYXS
  1029. *
  1030. * @param clsjyxs the value for dp_sjlr_sy.CLSJYXS
  1031. *
  1032. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1033. */
  1034. public void setClsjyxs(String clsjyxs) {
  1035. this.clsjyxs = clsjyxs == null ? null : clsjyxs.trim();
  1036. }
  1037. /**
  1038. * This method was generated by Apache iBATIS ibator.
  1039. * This method returns the value of the database column dp_sjlr_sy.CLSJYST
  1040. *
  1041. * @return the value of dp_sjlr_sy.CLSJYST
  1042. *
  1043. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1044. */
  1045. public String getClsjyst() {
  1046. return clsjyst;
  1047. }
  1048. /**
  1049. * This method was generated by Apache iBATIS ibator.
  1050. * This method sets the value of the database column dp_sjlr_sy.CLSJYST
  1051. *
  1052. * @param clsjyst the value for dp_sjlr_sy.CLSJYST
  1053. *
  1054. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1055. */
  1056. public void setClsjyst(String clsjyst) {
  1057. this.clsjyst = clsjyst == null ? null : clsjyst.trim();
  1058. }
  1059. /**
  1060. * This method was generated by Apache iBATIS ibator.
  1061. * This method returns the value of the database column dp_sjlr_sy.CLSJZZ
  1062. *
  1063. * @return the value of dp_sjlr_sy.CLSJZZ
  1064. *
  1065. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1066. */
  1067. public String getClsjzz() {
  1068. return clsjzz;
  1069. }
  1070. /**
  1071. * This method was generated by Apache iBATIS ibator.
  1072. * This method sets the value of the database column dp_sjlr_sy.CLSJZZ
  1073. *
  1074. * @param clsjzz the value for dp_sjlr_sy.CLSJZZ
  1075. *
  1076. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1077. */
  1078. public void setClsjzz(String clsjzz) {
  1079. this.clsjzz = clsjzz == null ? null : clsjzz.trim();
  1080. }
  1081. /**
  1082. * This method was generated by Apache iBATIS ibator.
  1083. * This method returns the value of the database column dp_sjlr_sy.CLSJHBZZ
  1084. *
  1085. * @return the value of dp_sjlr_sy.CLSJHBZZ
  1086. *
  1087. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1088. */
  1089. public String getClsjhbzz() {
  1090. return clsjhbzz;
  1091. }
  1092. /**
  1093. * This method was generated by Apache iBATIS ibator.
  1094. * This method sets the value of the database column dp_sjlr_sy.CLSJHBZZ
  1095. *
  1096. * @param clsjhbzz the value for dp_sjlr_sy.CLSJHBZZ
  1097. *
  1098. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1099. */
  1100. public void setClsjhbzz(String clsjhbzz) {
  1101. this.clsjhbzz = clsjhbzz == null ? null : clsjhbzz.trim();
  1102. }
  1103. /**
  1104. * This method was generated by Apache iBATIS ibator.
  1105. * This method returns the value of the database column dp_sjlr_sy.CLSJBRZ
  1106. *
  1107. * @return the value of dp_sjlr_sy.CLSJBRZ
  1108. *
  1109. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1110. */
  1111. public String getClsjbrz() {
  1112. return clsjbrz;
  1113. }
  1114. /**
  1115. * This method was generated by Apache iBATIS ibator.
  1116. * This method sets the value of the database column dp_sjlr_sy.CLSJBRZ
  1117. *
  1118. * @param clsjbrz the value for dp_sjlr_sy.CLSJBRZ
  1119. *
  1120. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1121. */
  1122. public void setClsjbrz(String clsjbrz) {
  1123. this.clsjbrz = clsjbrz == null ? null : clsjbrz.trim();
  1124. }
  1125. /**
  1126. * This method was generated by Apache iBATIS ibator.
  1127. * This method returns the value of the database column dp_sjlr_sy.CLSJBYZ
  1128. *
  1129. * @return the value of dp_sjlr_sy.CLSJBYZ
  1130. *
  1131. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1132. */
  1133. public String getClsjbyz() {
  1134. return clsjbyz;
  1135. }
  1136. /**
  1137. * This method was generated by Apache iBATIS ibator.
  1138. * This method sets the value of the database column dp_sjlr_sy.CLSJBYZ
  1139. *
  1140. * @param clsjbyz the value for dp_sjlr_sy.CLSJBYZ
  1141. *
  1142. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1143. */
  1144. public void setClsjbyz(String clsjbyz) {
  1145. this.clsjbyz = clsjbyz == null ? null : clsjbyz.trim();
  1146. }
  1147. /**
  1148. * This method was generated by Apache iBATIS ibator.
  1149. * This method returns the value of the database column dp_sjlr_sy.CLSJYFZ
  1150. *
  1151. * @return the value of dp_sjlr_sy.CLSJYFZ
  1152. *
  1153. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1154. */
  1155. public String getClsjyfz() {
  1156. return clsjyfz;
  1157. }
  1158. /**
  1159. * This method was generated by Apache iBATIS ibator.
  1160. * This method sets the value of the database column dp_sjlr_sy.CLSJYFZ
  1161. *
  1162. * @param clsjyfz the value for dp_sjlr_sy.CLSJYFZ
  1163. *
  1164. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1165. */
  1166. public void setClsjyfz(String clsjyfz) {
  1167. this.clsjyfz = clsjyfz == null ? null : clsjyfz.trim();
  1168. }
  1169. /**
  1170. * This method was generated by Apache iBATIS ibator.
  1171. * This method returns the value of the database column dp_sjlr_sy.CLSJXSZS
  1172. *
  1173. * @return the value of dp_sjlr_sy.CLSJXSZS
  1174. *
  1175. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1176. */
  1177. public String getClsjxszs() {
  1178. return clsjxszs;
  1179. }
  1180. /**
  1181. * This method was generated by Apache iBATIS ibator.
  1182. * This method sets the value of the database column dp_sjlr_sy.CLSJXSZS
  1183. *
  1184. * @param clsjxszs the value for dp_sjlr_sy.CLSJXSZS
  1185. *
  1186. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1187. */
  1188. public void setClsjxszs(String clsjxszs) {
  1189. this.clsjxszs = clsjxszs == null ? null : clsjxszs.trim();
  1190. }
  1191. /**
  1192. * This method was generated by Apache iBATIS ibator.
  1193. * This method returns the value of the database column dp_sjlr_sy.CLSJSTZS
  1194. *
  1195. * @return the value of dp_sjlr_sy.CLSJSTZS
  1196. *
  1197. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1198. */
  1199. public String getClsjstzs() {
  1200. return clsjstzs;
  1201. }
  1202. /**
  1203. * This method was generated by Apache iBATIS ibator.
  1204. * This method sets the value of the database column dp_sjlr_sy.CLSJSTZS
  1205. *
  1206. * @param clsjstzs the value for dp_sjlr_sy.CLSJSTZS
  1207. *
  1208. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1209. */
  1210. public void setClsjstzs(String clsjstzs) {
  1211. this.clsjstzs = clsjstzs == null ? null : clsjstzs.trim();
  1212. }
  1213. /**
  1214. * This method was generated by Apache iBATIS ibator.
  1215. * This method returns the value of the database column dp_sjlr_sy.BYPZS
  1216. *
  1217. * @return the value of dp_sjlr_sy.BYPZS
  1218. *
  1219. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1220. */
  1221. public String getBypzs() {
  1222. return bypzs;
  1223. }
  1224. /**
  1225. * This method was generated by Apache iBATIS ibator.
  1226. * This method sets the value of the database column dp_sjlr_sy.BYPZS
  1227. *
  1228. * @param bypzs the value for dp_sjlr_sy.BYPZS
  1229. *
  1230. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1231. */
  1232. public void setBypzs(String bypzs) {
  1233. this.bypzs = bypzs == null ? null : bypzs.trim();
  1234. }
  1235. /**
  1236. * This method was generated by Apache iBATIS ibator.
  1237. * This method returns the value of the database column dp_sjlr_sy.BYFMS
  1238. *
  1239. * @return the value of dp_sjlr_sy.BYFMS
  1240. *
  1241. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1242. */
  1243. public String getByfms() {
  1244. return byfms;
  1245. }
  1246. /**
  1247. * This method was generated by Apache iBATIS ibator.
  1248. * This method sets the value of the database column dp_sjlr_sy.BYFMS
  1249. *
  1250. * @param byfms the value for dp_sjlr_sy.BYFMS
  1251. *
  1252. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1253. */
  1254. public void setByfms(String byfms) {
  1255. this.byfms = byfms == null ? null : byfms.trim();
  1256. }
  1257. /**
  1258. * This method was generated by Apache iBATIS ibator.
  1259. * This method returns the value of the database column dp_sjlr_sy.BYCZS
  1260. *
  1261. * @return the value of dp_sjlr_sy.BYCZS
  1262. *
  1263. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1264. */
  1265. public String getByczs() {
  1266. return byczs;
  1267. }
  1268. /**
  1269. * This method was generated by Apache iBATIS ibator.
  1270. * This method sets the value of the database column dp_sjlr_sy.BYCZS
  1271. *
  1272. * @param byczs the value for dp_sjlr_sy.BYCZS
  1273. *
  1274. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1275. */
  1276. public void setByczs(String byczs) {
  1277. this.byczs = byczs == null ? null : byczs.trim();
  1278. }
  1279. /**
  1280. * This method was generated by Apache iBATIS ibator.
  1281. * This method returns the value of the database column dp_sjlr_sy.BYDQXSTS
  1282. *
  1283. * @return the value of dp_sjlr_sy.BYDQXSTS
  1284. *
  1285. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1286. */
  1287. public String getBydqxsts() {
  1288. return bydqxsts;
  1289. }
  1290. /**
  1291. * This method was generated by Apache iBATIS ibator.
  1292. * This method sets the value of the database column dp_sjlr_sy.BYDQXSTS
  1293. *
  1294. * @param bydqxsts the value for dp_sjlr_sy.BYDQXSTS
  1295. *
  1296. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1297. */
  1298. public void setBydqxsts(String bydqxsts) {
  1299. this.bydqxsts = bydqxsts == null ? null : bydqxsts.trim();
  1300. }
  1301. /**
  1302. * This method was generated by Apache iBATIS ibator.
  1303. * This method returns the value of the database column dp_sjlr_sy.BYDQZJ
  1304. *
  1305. * @return the value of dp_sjlr_sy.BYDQZJ
  1306. *
  1307. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1308. */
  1309. public String getBydqzj() {
  1310. return bydqzj;
  1311. }
  1312. /**
  1313. * This method was generated by Apache iBATIS ibator.
  1314. * This method sets the value of the database column dp_sjlr_sy.BYDQZJ
  1315. *
  1316. * @param bydqzj the value for dp_sjlr_sy.BYDQZJ
  1317. *
  1318. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1319. */
  1320. public void setBydqzj(String bydqzj) {
  1321. this.bydqzj = bydqzj == null ? null : bydqzj.trim();
  1322. }
  1323. /**
  1324. * This method was generated by Apache iBATIS ibator.
  1325. * This method returns the value of the database column dp_sjlr_sy.BYZZCHL
  1326. *
  1327. * @return the value of dp_sjlr_sy.BYZZCHL
  1328. *
  1329. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1330. */
  1331. public String getByzzchl() {
  1332. return byzzchl;
  1333. }
  1334. /**
  1335. * This method was generated by Apache iBATIS ibator.
  1336. * This method sets the value of the database column dp_sjlr_sy.BYZZCHL
  1337. *
  1338. * @param byzzchl the value for dp_sjlr_sy.BYZZCHL
  1339. *
  1340. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1341. */
  1342. public void setByzzchl(String byzzchl) {
  1343. this.byzzchl = byzzchl == null ? null : byzzchl.trim();
  1344. }
  1345. /**
  1346. * This method was generated by Apache iBATIS ibator.
  1347. * This method returns the value of the database column dp_sjlr_sy.TTSJBYTTS
  1348. *
  1349. * @return the value of dp_sjlr_sy.TTSJBYTTS
  1350. *
  1351. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1352. */
  1353. public String getTtsjbytts() {
  1354. return ttsjbytts;
  1355. }
  1356. /**
  1357. * This method was generated by Apache iBATIS ibator.
  1358. * This method sets the value of the database column dp_sjlr_sy.TTSJBYTTS
  1359. *
  1360. * @param ttsjbytts the value for dp_sjlr_sy.TTSJBYTTS
  1361. *
  1362. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1363. */
  1364. public void setTtsjbytts(String ttsjbytts) {
  1365. this.ttsjbytts = ttsjbytts == null ? null : ttsjbytts.trim();
  1366. }
  1367. /**
  1368. * This method was generated by Apache iBATIS ibator.
  1369. * This method returns the value of the database column dp_sjlr_sy.TTSJQYYTTS
  1370. *
  1371. * @return the value of dp_sjlr_sy.TTSJQYYTTS
  1372. *
  1373. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1374. */
  1375. public String getTtsjqyytts() {
  1376. return ttsjqyytts;
  1377. }
  1378. /**
  1379. * This method was generated by Apache iBATIS ibator.
  1380. * This method sets the value of the database column dp_sjlr_sy.TTSJQYYTTS
  1381. *
  1382. * @param ttsjqyytts the value for dp_sjlr_sy.TTSJQYYTTS
  1383. *
  1384. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1385. */
  1386. public void setTtsjqyytts(String ttsjqyytts) {
  1387. this.ttsjqyytts = ttsjqyytts == null ? null : ttsjqyytts.trim();
  1388. }
  1389. /**
  1390. * This method was generated by Apache iBATIS ibator.
  1391. * This method returns the value of the database column dp_sjlr_sy.TTSJQEYTTS
  1392. *
  1393. * @return the value of dp_sjlr_sy.TTSJQEYTTS
  1394. *
  1395. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1396. */
  1397. public String getTtsjqeytts() {
  1398. return ttsjqeytts;
  1399. }
  1400. /**
  1401. * This method was generated by Apache iBATIS ibator.
  1402. * This method sets the value of the database column dp_sjlr_sy.TTSJQEYTTS
  1403. *
  1404. * @param ttsjqeytts the value for dp_sjlr_sy.TTSJQEYTTS
  1405. *
  1406. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1407. */
  1408. public void setTtsjqeytts(String ttsjqeytts) {
  1409. this.ttsjqeytts = ttsjqeytts == null ? null : ttsjqeytts.trim();
  1410. }
  1411. /**
  1412. * This method was generated by Apache iBATIS ibator.
  1413. * This method returns the value of the database column dp_sjlr_sy.TTSJZZ
  1414. *
  1415. * @return the value of dp_sjlr_sy.TTSJZZ
  1416. *
  1417. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1418. */
  1419. public String getTtsjzz() {
  1420. return ttsjzz;
  1421. }
  1422. /**
  1423. * This method was generated by Apache iBATIS ibator.
  1424. * This method sets the value of the database column dp_sjlr_sy.TTSJZZ
  1425. *
  1426. * @param ttsjzz the value for dp_sjlr_sy.TTSJZZ
  1427. *
  1428. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1429. */
  1430. public void setTtsjzz(String ttsjzz) {
  1431. this.ttsjzz = ttsjzz == null ? null : ttsjzz.trim();
  1432. }
  1433. /**
  1434. * This method was generated by Apache iBATIS ibator.
  1435. * This method returns the value of the database column dp_sjlr_sy.TTSJFZ
  1436. *
  1437. * @return the value of dp_sjlr_sy.TTSJFZ
  1438. *
  1439. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1440. */
  1441. public String getTtsjfz() {
  1442. return ttsjfz;
  1443. }
  1444. /**
  1445. * This method was generated by Apache iBATIS ibator.
  1446. * This method sets the value of the database column dp_sjlr_sy.TTSJFZ
  1447. *
  1448. * @param ttsjfz the value for dp_sjlr_sy.TTSJFZ
  1449. *
  1450. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1451. */
  1452. public void setTtsjfz(String ttsjfz) {
  1453. this.ttsjfz = ttsjfz == null ? null : ttsjfz.trim();
  1454. }
  1455. /**
  1456. * This method was generated by Apache iBATIS ibator.
  1457. * This method returns the value of the database column dp_sjlr_sy.TTSJQSYTTS
  1458. *
  1459. * @return the value of dp_sjlr_sy.TTSJQSYTTS
  1460. *
  1461. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1462. */
  1463. public String getTtsjqsytts() {
  1464. return ttsjqsytts;
  1465. }
  1466. /**
  1467. * This method was generated by Apache iBATIS ibator.
  1468. * This method sets the value of the database column dp_sjlr_sy.TTSJQSYTTS
  1469. *
  1470. * @param ttsjqsytts the value for dp_sjlr_sy.TTSJQSYTTS
  1471. *
  1472. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1473. */
  1474. public void setTtsjqsytts(String ttsjqsytts) {
  1475. this.ttsjqsytts = ttsjqsytts == null ? null : ttsjqsytts.trim();
  1476. }
  1477. /**
  1478. * This method was generated by Apache iBATIS ibator.
  1479. * This method returns the value of the database column dp_sjlr_sy.XSSJWEEK
  1480. *
  1481. * @return the value of dp_sjlr_sy.XSSJWEEK
  1482. *
  1483. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1484. */
  1485. public String getXssjweek() {
  1486. return xssjweek;
  1487. }
  1488. /**
  1489. * This method was generated by Apache iBATIS ibator.
  1490. * This method sets the value of the database column dp_sjlr_sy.XSSJWEEK
  1491. *
  1492. * @param xssjweek the value for dp_sjlr_sy.XSSJWEEK
  1493. *
  1494. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1495. */
  1496. public void setXssjweek(String xssjweek) {
  1497. this.xssjweek = xssjweek == null ? null : xssjweek.trim();
  1498. }
  1499. /**
  1500. * This method was generated by Apache iBATIS ibator.
  1501. * This method returns the value of the database column dp_sjlr_sy.XSSJMONTH
  1502. *
  1503. * @return the value of dp_sjlr_sy.XSSJMONTH
  1504. *
  1505. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1506. */
  1507. public String getXssjmonth() {
  1508. return xssjmonth;
  1509. }
  1510. /**
  1511. * This method was generated by Apache iBATIS ibator.
  1512. * This method sets the value of the database column dp_sjlr_sy.XSSJMONTH
  1513. *
  1514. * @param xssjmonth the value for dp_sjlr_sy.XSSJMONTH
  1515. *
  1516. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1517. */
  1518. public void setXssjmonth(String xssjmonth) {
  1519. this.xssjmonth = xssjmonth == null ? null : xssjmonth.trim();
  1520. }
  1521. /**
  1522. * This method was generated by Apache iBATIS ibator.
  1523. * This method returns the value of the database column dp_sjlr_sy.XSSJYEAR
  1524. *
  1525. * @return the value of dp_sjlr_sy.XSSJYEAR
  1526. *
  1527. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1528. */
  1529. public String getXssjyear() {
  1530. return xssjyear;
  1531. }
  1532. /**
  1533. * This method was generated by Apache iBATIS ibator.
  1534. * This method sets the value of the database column dp_sjlr_sy.XSSJYEAR
  1535. *
  1536. * @param xssjyear the value for dp_sjlr_sy.XSSJYEAR
  1537. *
  1538. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1539. */
  1540. public void setXssjyear(String xssjyear) {
  1541. this.xssjyear = xssjyear == null ? null : xssjyear.trim();
  1542. }
  1543. /**
  1544. * This method was generated by Apache iBATIS ibator.
  1545. * This method returns the value of the database column dp_sjlr_sy.PZJGFBPZ
  1546. *
  1547. * @return the value of dp_sjlr_sy.PZJGFBPZ
  1548. *
  1549. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1550. */
  1551. public String getPzjgfbpz() {
  1552. return pzjgfbpz;
  1553. }
  1554. /**
  1555. * This method was generated by Apache iBATIS ibator.
  1556. * This method sets the value of the database column dp_sjlr_sy.PZJGFBPZ
  1557. *
  1558. * @param pzjgfbpz the value for dp_sjlr_sy.PZJGFBPZ
  1559. *
  1560. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1561. */
  1562. public void setPzjgfbpz(String pzjgfbpz) {
  1563. this.pzjgfbpz = pzjgfbpz == null ? null : pzjgfbpz.trim();
  1564. }
  1565. /**
  1566. * This method was generated by Apache iBATIS ibator.
  1567. * This method returns the value of the database column dp_sjlr_sy.PZJGFBHY
  1568. *
  1569. * @return the value of dp_sjlr_sy.PZJGFBHY
  1570. *
  1571. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1572. */
  1573. public String getPzjgfbhy() {
  1574. return pzjgfbhy;
  1575. }
  1576. /**
  1577. * This method was generated by Apache iBATIS ibator.
  1578. * This method sets the value of the database column dp_sjlr_sy.PZJGFBHY
  1579. *
  1580. * @param pzjgfbhy the value for dp_sjlr_sy.PZJGFBHY
  1581. *
  1582. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1583. */
  1584. public void setPzjgfbhy(String pzjgfbhy) {
  1585. this.pzjgfbhy = pzjgfbhy == null ? null : pzjgfbhy.trim();
  1586. }
  1587. /**
  1588. * This method was generated by Apache iBATIS ibator.
  1589. * This method returns the value of the database column dp_sjlr_sy.PZJGFBLC
  1590. *
  1591. * @return the value of dp_sjlr_sy.PZJGFBLC
  1592. *
  1593. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1594. */
  1595. public String getPzjgfblc() {
  1596. return pzjgfblc;
  1597. }
  1598. /**
  1599. * This method was generated by Apache iBATIS ibator.
  1600. * This method sets the value of the database column dp_sjlr_sy.PZJGFBLC
  1601. *
  1602. * @param pzjgfblc the value for dp_sjlr_sy.PZJGFBLC
  1603. *
  1604. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1605. */
  1606. public void setPzjgfblc(String pzjgfblc) {
  1607. this.pzjgfblc = pzjgfblc == null ? null : pzjgfblc.trim();
  1608. }
  1609. /**
  1610. * This method was generated by Apache iBATIS ibator.
  1611. * This method returns the value of the database column dp_sjlr_sy.PZJGFBFQ
  1612. *
  1613. * @return the value of dp_sjlr_sy.PZJGFBFQ
  1614. *
  1615. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1616. */
  1617. public String getPzjgfbfq() {
  1618. return pzjgfbfq;
  1619. }
  1620. /**
  1621. * This method was generated by Apache iBATIS ibator.
  1622. * This method sets the value of the database column dp_sjlr_sy.PZJGFBFQ
  1623. *
  1624. * @param pzjgfbfq the value for dp_sjlr_sy.PZJGFBFQ
  1625. *
  1626. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1627. */
  1628. public void setPzjgfbfq(String pzjgfbfq) {
  1629. this.pzjgfbfq = pzjgfbfq == null ? null : pzjgfbfq.trim();
  1630. }
  1631. /**
  1632. * This method was generated by Apache iBATIS ibator.
  1633. * This method returns the value of the database column dp_sjlr_sy.PZJGFBQT
  1634. *
  1635. * @return the value of dp_sjlr_sy.PZJGFBQT
  1636. *
  1637. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1638. */
  1639. public String getPzjgfbqt() {
  1640. return pzjgfbqt;
  1641. }
  1642. /**
  1643. * This method was generated by Apache iBATIS ibator.
  1644. * This method sets the value of the database column dp_sjlr_sy.PZJGFBQT
  1645. *
  1646. * @param pzjgfbqt the value for dp_sjlr_sy.PZJGFBQT
  1647. *
  1648. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1649. */
  1650. public void setPzjgfbqt(String pzjgfbqt) {
  1651. this.pzjgfbqt = pzjgfbqt == null ? null : pzjgfbqt.trim();
  1652. }
  1653. /**
  1654. * This method was generated by Apache iBATIS ibator.
  1655. * This method returns the value of the database column dp_sjlr_sy.PZJGFBPZFML
  1656. *
  1657. * @return the value of dp_sjlr_sy.PZJGFBPZFML
  1658. *
  1659. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1660. */
  1661. public String getPzjgfbpzfml() {
  1662. return pzjgfbpzfml;
  1663. }
  1664. /**
  1665. * This method was generated by Apache iBATIS ibator.
  1666. * This method sets the value of the database column dp_sjlr_sy.PZJGFBPZFML
  1667. *
  1668. * @param pzjgfbpzfml the value for dp_sjlr_sy.PZJGFBPZFML
  1669. *
  1670. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1671. */
  1672. public void setPzjgfbpzfml(String pzjgfbpzfml) {
  1673. this.pzjgfbpzfml = pzjgfbpzfml == null ? null : pzjgfbpzfml.trim();
  1674. }
  1675. /**
  1676. * This method was generated by Apache iBATIS ibator.
  1677. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTJZS
  1678. *
  1679. * @return the value of dp_sjlr_sy.FMZZFBTJZS
  1680. *
  1681. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1682. */
  1683. public String getFmzzfbtjzs() {
  1684. return fmzzfbtjzs;
  1685. }
  1686. /**
  1687. * This method was generated by Apache iBATIS ibator.
  1688. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTJZS
  1689. *
  1690. * @param fmzzfbtjzs the value for dp_sjlr_sy.FMZZFBTJZS
  1691. *
  1692. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1693. */
  1694. public void setFmzzfbtjzs(String fmzzfbtjzs) {
  1695. this.fmzzfbtjzs = fmzzfbtjzs == null ? null : fmzzfbtjzs.trim();
  1696. }
  1697. /**
  1698. * This method was generated by Apache iBATIS ibator.
  1699. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTRZS
  1700. *
  1701. * @return the value of dp_sjlr_sy.FMZZFBTRZS
  1702. *
  1703. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1704. */
  1705. public String getFmzzfbtrzs() {
  1706. return fmzzfbtrzs;
  1707. }
  1708. /**
  1709. * This method was generated by Apache iBATIS ibator.
  1710. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTRZS
  1711. *
  1712. * @param fmzzfbtrzs the value for dp_sjlr_sy.FMZZFBTRZS
  1713. *
  1714. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1715. */
  1716. public void setFmzzfbtrzs(String fmzzfbtrzs) {
  1717. this.fmzzfbtrzs = fmzzfbtrzs == null ? null : fmzzfbtrzs.trim();
  1718. }
  1719. /**
  1720. * This method was generated by Apache iBATIS ibator.
  1721. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTJXS
  1722. *
  1723. * @return the value of dp_sjlr_sy.FMZZFBTJXS
  1724. *
  1725. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1726. */
  1727. public String getFmzzfbtjxs() {
  1728. return fmzzfbtjxs;
  1729. }
  1730. /**
  1731. * This method was generated by Apache iBATIS ibator.
  1732. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTJXS
  1733. *
  1734. * @param fmzzfbtjxs the value for dp_sjlr_sy.FMZZFBTJXS
  1735. *
  1736. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1737. */
  1738. public void setFmzzfbtjxs(String fmzzfbtjxs) {
  1739. this.fmzzfbtjxs = fmzzfbtjxs == null ? null : fmzzfbtjxs.trim();
  1740. }
  1741. /**
  1742. * This method was generated by Apache iBATIS ibator.
  1743. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTMNYS
  1744. *
  1745. * @return the value of dp_sjlr_sy.FMZZFBTMNYS
  1746. *
  1747. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1748. */
  1749. public String getFmzzfbtmnys() {
  1750. return fmzzfbtmnys;
  1751. }
  1752. /**
  1753. * This method was generated by Apache iBATIS ibator.
  1754. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTMNYS
  1755. *
  1756. * @param fmzzfbtmnys the value for dp_sjlr_sy.FMZZFBTMNYS
  1757. *
  1758. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1759. */
  1760. public void setFmzzfbtmnys(String fmzzfbtmnys) {
  1761. this.fmzzfbtmnys = fmzzfbtmnys == null ? null : fmzzfbtmnys.trim();
  1762. }
  1763. /**
  1764. * This method was generated by Apache iBATIS ibator.
  1765. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTSTS
  1766. *
  1767. * @return the value of dp_sjlr_sy.FMZZFBTSTS
  1768. *
  1769. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1770. */
  1771. public String getFmzzfbtsts() {
  1772. return fmzzfbtsts;
  1773. }
  1774. /**
  1775. * This method was generated by Apache iBATIS ibator.
  1776. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTSTS
  1777. *
  1778. * @param fmzzfbtsts the value for dp_sjlr_sy.FMZZFBTSTS
  1779. *
  1780. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1781. */
  1782. public void setFmzzfbtsts(String fmzzfbtsts) {
  1783. this.fmzzfbtsts = fmzzfbtsts == null ? null : fmzzfbtsts.trim();
  1784. }
  1785. /**
  1786. * This method was generated by Apache iBATIS ibator.
  1787. * This method returns the value of the database column dp_sjlr_sy.FMZZFBTFMCHL
  1788. *
  1789. * @return the value of dp_sjlr_sy.FMZZFBTFMCHL
  1790. *
  1791. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1792. */
  1793. public String getFmzzfbtfmchl() {
  1794. return fmzzfbtfmchl;
  1795. }
  1796. /**
  1797. * This method was generated by Apache iBATIS ibator.
  1798. * This method sets the value of the database column dp_sjlr_sy.FMZZFBTFMCHL
  1799. *
  1800. * @param fmzzfbtfmchl the value for dp_sjlr_sy.FMZZFBTFMCHL
  1801. *
  1802. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1803. */
  1804. public void setFmzzfbtfmchl(String fmzzfbtfmchl) {
  1805. this.fmzzfbtfmchl = fmzzfbtfmchl == null ? null : fmzzfbtfmchl.trim();
  1806. }
  1807. /**
  1808. * This method was generated by Apache iBATIS ibator.
  1809. * This method returns the value of the database column dp_sjlr_sy.TTFBTSW
  1810. *
  1811. * @return the value of dp_sjlr_sy.TTFBTSW
  1812. *
  1813. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1814. */
  1815. public String getTtfbtsw() {
  1816. return ttfbtsw;
  1817. }
  1818. /**
  1819. * This method was generated by Apache iBATIS ibator.
  1820. * This method sets the value of the database column dp_sjlr_sy.TTFBTSW
  1821. *
  1822. * @param ttfbtsw the value for dp_sjlr_sy.TTFBTSW
  1823. *
  1824. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1825. */
  1826. public void setTtfbtsw(String ttfbtsw) {
  1827. this.ttfbtsw = ttfbtsw == null ? null : ttfbtsw.trim();
  1828. }
  1829. /**
  1830. * This method was generated by Apache iBATIS ibator.
  1831. * This method returns the value of the database column dp_sjlr_sy.TTFBTTCTG
  1832. *
  1833. * @return the value of dp_sjlr_sy.TTFBTTCTG
  1834. *
  1835. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1836. */
  1837. public String getTtfbttctg() {
  1838. return ttfbttctg;
  1839. }
  1840. /**
  1841. * This method was generated by Apache iBATIS ibator.
  1842. * This method sets the value of the database column dp_sjlr_sy.TTFBTTCTG
  1843. *
  1844. * @param ttfbttctg the value for dp_sjlr_sy.TTFBTTCTG
  1845. *
  1846. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1847. */
  1848. public void setTtfbttctg(String ttfbttctg) {
  1849. this.ttfbttctg = ttfbttctg == null ? null : ttfbttctg.trim();
  1850. }
  1851. /**
  1852. * This method was generated by Apache iBATIS ibator.
  1853. * This method returns the value of the database column dp_sjlr_sy.TTFBTCQBFQ
  1854. *
  1855. * @return the value of dp_sjlr_sy.TTFBTCQBFQ
  1856. *
  1857. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1858. */
  1859. public String getTtfbtcqbfq() {
  1860. return ttfbtcqbfq;
  1861. }
  1862. /**
  1863. * This method was generated by Apache iBATIS ibator.
  1864. * This method sets the value of the database column dp_sjlr_sy.TTFBTCQBFQ
  1865. *
  1866. * @param ttfbtcqbfq the value for dp_sjlr_sy.TTFBTCQBFQ
  1867. *
  1868. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1869. */
  1870. public void setTtfbtcqbfq(String ttfbtcqbfq) {
  1871. this.ttfbtcqbfq = ttfbtcqbfq == null ? null : ttfbtcqbfq.trim();
  1872. }
  1873. /**
  1874. * This method was generated by Apache iBATIS ibator.
  1875. * This method returns the value of the database column dp_sjlr_sy.TTFBTCZSS
  1876. *
  1877. * @return the value of dp_sjlr_sy.TTFBTCZSS
  1878. *
  1879. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1880. */
  1881. public String getTtfbtczss() {
  1882. return ttfbtczss;
  1883. }
  1884. /**
  1885. * This method was generated by Apache iBATIS ibator.
  1886. * This method sets the value of the database column dp_sjlr_sy.TTFBTCZSS
  1887. *
  1888. * @param ttfbtczss the value for dp_sjlr_sy.TTFBTCZSS
  1889. *
  1890. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1891. */
  1892. public void setTtfbtczss(String ttfbtczss) {
  1893. this.ttfbtczss = ttfbtczss == null ? null : ttfbtczss.trim();
  1894. }
  1895. /**
  1896. * This method was generated by Apache iBATIS ibator.
  1897. * This method returns the value of the database column dp_sjlr_sy.TTFBTCDYZ
  1898. *
  1899. * @return the value of dp_sjlr_sy.TTFBTCDYZ
  1900. *
  1901. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1902. */
  1903. public String getTtfbtcdyz() {
  1904. return ttfbtcdyz;
  1905. }
  1906. /**
  1907. * This method was generated by Apache iBATIS ibator.
  1908. * This method sets the value of the database column dp_sjlr_sy.TTFBTCDYZ
  1909. *
  1910. * @param ttfbtcdyz the value for dp_sjlr_sy.TTFBTCDYZ
  1911. *
  1912. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1913. */
  1914. public void setTtfbtcdyz(String ttfbtcdyz) {
  1915. this.ttfbtcdyz = ttfbtcdyz == null ? null : ttfbtcdyz.trim();
  1916. }
  1917. /**
  1918. * This method was generated by Apache iBATIS ibator.
  1919. * This method returns the value of the database column dp_sjlr_sy.TTFBTYYBL
  1920. *
  1921. * @return the value of dp_sjlr_sy.TTFBTYYBL
  1922. *
  1923. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1924. */
  1925. public String getTtfbtyybl() {
  1926. return ttfbtyybl;
  1927. }
  1928. /**
  1929. * This method was generated by Apache iBATIS ibator.
  1930. * This method sets the value of the database column dp_sjlr_sy.TTFBTYYBL
  1931. *
  1932. * @param ttfbtyybl the value for dp_sjlr_sy.TTFBTYYBL
  1933. *
  1934. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1935. */
  1936. public void setTtfbtyybl(String ttfbtyybl) {
  1937. this.ttfbtyybl = ttfbtyybl == null ? null : ttfbtyybl.trim();
  1938. }
  1939. /**
  1940. * This method was generated by Apache iBATIS ibator.
  1941. * This method returns the value of the database column dp_sjlr_sy.TTFBTZTJB
  1942. *
  1943. * @return the value of dp_sjlr_sy.TTFBTZTJB
  1944. *
  1945. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1946. */
  1947. public String getTtfbtztjb() {
  1948. return ttfbtztjb;
  1949. }
  1950. /**
  1951. * This method was generated by Apache iBATIS ibator.
  1952. * This method sets the value of the database column dp_sjlr_sy.TTFBTZTJB
  1953. *
  1954. * @param ttfbtztjb the value for dp_sjlr_sy.TTFBTZTJB
  1955. *
  1956. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1957. */
  1958. public void setTtfbtztjb(String ttfbtztjb) {
  1959. this.ttfbtztjb = ttfbtztjb == null ? null : ttfbtztjb.trim();
  1960. }
  1961. /**
  1962. * This method was generated by Apache iBATIS ibator.
  1963. * This method returns the value of the database column dp_sjlr_sy.TTFBTQT
  1964. *
  1965. * @return the value of dp_sjlr_sy.TTFBTQT
  1966. *
  1967. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1968. */
  1969. public String getTtfbtqt() {
  1970. return ttfbtqt;
  1971. }
  1972. /**
  1973. * This method was generated by Apache iBATIS ibator.
  1974. * This method sets the value of the database column dp_sjlr_sy.TTFBTQT
  1975. *
  1976. * @param ttfbtqt the value for dp_sjlr_sy.TTFBTQT
  1977. *
  1978. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1979. */
  1980. public void setTtfbtqt(String ttfbtqt) {
  1981. this.ttfbtqt = ttfbtqt == null ? null : ttfbtqt.trim();
  1982. }
  1983. /**
  1984. * This method was generated by Apache iBATIS ibator.
  1985. * This method returns the value of the database column dp_sjlr_sy.YDTTS1
  1986. *
  1987. * @return the value of dp_sjlr_sy.YDTTS1
  1988. *
  1989. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  1990. */
  1991. public String getYdtts1() {
  1992. return ydtts1;
  1993. }
  1994. /**
  1995. * This method was generated by Apache iBATIS ibator.
  1996. * This method sets the value of the database column dp_sjlr_sy.YDTTS1
  1997. *
  1998. * @param ydtts1 the value for dp_sjlr_sy.YDTTS1
  1999. *
  2000. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2001. */
  2002. public void setYdtts1(String ydtts1) {
  2003. this.ydtts1 = ydtts1 == null ? null : ydtts1.trim();
  2004. }
  2005. /**
  2006. * This method was generated by Apache iBATIS ibator.
  2007. * This method returns the value of the database column dp_sjlr_sy.YDTTS2
  2008. *
  2009. * @return the value of dp_sjlr_sy.YDTTS2
  2010. *
  2011. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2012. */
  2013. public String getYdtts2() {
  2014. return ydtts2;
  2015. }
  2016. /**
  2017. * This method was generated by Apache iBATIS ibator.
  2018. * This method sets the value of the database column dp_sjlr_sy.YDTTS2
  2019. *
  2020. * @param ydtts2 the value for dp_sjlr_sy.YDTTS2
  2021. *
  2022. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2023. */
  2024. public void setYdtts2(String ydtts2) {
  2025. this.ydtts2 = ydtts2 == null ? null : ydtts2.trim();
  2026. }
  2027. /**
  2028. * This method was generated by Apache iBATIS ibator.
  2029. * This method returns the value of the database column dp_sjlr_sy.YDTTS3
  2030. *
  2031. * @return the value of dp_sjlr_sy.YDTTS3
  2032. *
  2033. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2034. */
  2035. public String getYdtts3() {
  2036. return ydtts3;
  2037. }
  2038. /**
  2039. * This method was generated by Apache iBATIS ibator.
  2040. * This method sets the value of the database column dp_sjlr_sy.YDTTS3
  2041. *
  2042. * @param ydtts3 the value for dp_sjlr_sy.YDTTS3
  2043. *
  2044. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2045. */
  2046. public void setYdtts3(String ydtts3) {
  2047. this.ydtts3 = ydtts3 == null ? null : ydtts3.trim();
  2048. }
  2049. /**
  2050. * This method was generated by Apache iBATIS ibator.
  2051. * This method returns the value of the database column dp_sjlr_sy.YDTTS4
  2052. *
  2053. * @return the value of dp_sjlr_sy.YDTTS4
  2054. *
  2055. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2056. */
  2057. public String getYdtts4() {
  2058. return ydtts4;
  2059. }
  2060. /**
  2061. * This method was generated by Apache iBATIS ibator.
  2062. * This method sets the value of the database column dp_sjlr_sy.YDTTS4
  2063. *
  2064. * @param ydtts4 the value for dp_sjlr_sy.YDTTS4
  2065. *
  2066. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2067. */
  2068. public void setYdtts4(String ydtts4) {
  2069. this.ydtts4 = ydtts4 == null ? null : ydtts4.trim();
  2070. }
  2071. /**
  2072. * This method was generated by Apache iBATIS ibator.
  2073. * This method returns the value of the database column dp_sjlr_sy.YDTTS5
  2074. *
  2075. * @return the value of dp_sjlr_sy.YDTTS5
  2076. *
  2077. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2078. */
  2079. public String getYdtts5() {
  2080. return ydtts5;
  2081. }
  2082. /**
  2083. * This method was generated by Apache iBATIS ibator.
  2084. * This method sets the value of the database column dp_sjlr_sy.YDTTS5
  2085. *
  2086. * @param ydtts5 the value for dp_sjlr_sy.YDTTS5
  2087. *
  2088. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2089. */
  2090. public void setYdtts5(String ydtts5) {
  2091. this.ydtts5 = ydtts5 == null ? null : ydtts5.trim();
  2092. }
  2093. /**
  2094. * This method was generated by Apache iBATIS ibator.
  2095. * This method returns the value of the database column dp_sjlr_sy.YDTTS6
  2096. *
  2097. * @return the value of dp_sjlr_sy.YDTTS6
  2098. *
  2099. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2100. */
  2101. public String getYdtts6() {
  2102. return ydtts6;
  2103. }
  2104. /**
  2105. * This method was generated by Apache iBATIS ibator.
  2106. * This method sets the value of the database column dp_sjlr_sy.YDTTS6
  2107. *
  2108. * @param ydtts6 the value for dp_sjlr_sy.YDTTS6
  2109. *
  2110. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2111. */
  2112. public void setYdtts6(String ydtts6) {
  2113. this.ydtts6 = ydtts6 == null ? null : ydtts6.trim();
  2114. }
  2115. /**
  2116. * This method was generated by Apache iBATIS ibator.
  2117. * This method returns the value of the database column dp_sjlr_sy.YDTTS7
  2118. *
  2119. * @return the value of dp_sjlr_sy.YDTTS7
  2120. *
  2121. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2122. */
  2123. public String getYdtts7() {
  2124. return ydtts7;
  2125. }
  2126. /**
  2127. * This method was generated by Apache iBATIS ibator.
  2128. * This method sets the value of the database column dp_sjlr_sy.YDTTS7
  2129. *
  2130. * @param ydtts7 the value for dp_sjlr_sy.YDTTS7
  2131. *
  2132. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2133. */
  2134. public void setYdtts7(String ydtts7) {
  2135. this.ydtts7 = ydtts7 == null ? null : ydtts7.trim();
  2136. }
  2137. /**
  2138. * This method was generated by Apache iBATIS ibator.
  2139. * This method returns the value of the database column dp_sjlr_sy.YDTTS8
  2140. *
  2141. * @return the value of dp_sjlr_sy.YDTTS8
  2142. *
  2143. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2144. */
  2145. public String getYdtts8() {
  2146. return ydtts8;
  2147. }
  2148. /**
  2149. * This method was generated by Apache iBATIS ibator.
  2150. * This method sets the value of the database column dp_sjlr_sy.YDTTS8
  2151. *
  2152. * @param ydtts8 the value for dp_sjlr_sy.YDTTS8
  2153. *
  2154. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2155. */
  2156. public void setYdtts8(String ydtts8) {
  2157. this.ydtts8 = ydtts8 == null ? null : ydtts8.trim();
  2158. }
  2159. /**
  2160. * This method was generated by Apache iBATIS ibator.
  2161. * This method returns the value of the database column dp_sjlr_sy.YDTTS9
  2162. *
  2163. * @return the value of dp_sjlr_sy.YDTTS9
  2164. *
  2165. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2166. */
  2167. public String getYdtts9() {
  2168. return ydtts9;
  2169. }
  2170. /**
  2171. * This method was generated by Apache iBATIS ibator.
  2172. * This method sets the value of the database column dp_sjlr_sy.YDTTS9
  2173. *
  2174. * @param ydtts9 the value for dp_sjlr_sy.YDTTS9
  2175. *
  2176. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2177. */
  2178. public void setYdtts9(String ydtts9) {
  2179. this.ydtts9 = ydtts9 == null ? null : ydtts9.trim();
  2180. }
  2181. /**
  2182. * This method was generated by Apache iBATIS ibator.
  2183. * This method returns the value of the database column dp_sjlr_sy.YDTTS10
  2184. *
  2185. * @return the value of dp_sjlr_sy.YDTTS10
  2186. *
  2187. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2188. */
  2189. public String getYdtts10() {
  2190. return ydtts10;
  2191. }
  2192. /**
  2193. * This method was generated by Apache iBATIS ibator.
  2194. * This method sets the value of the database column dp_sjlr_sy.YDTTS10
  2195. *
  2196. * @param ydtts10 the value for dp_sjlr_sy.YDTTS10
  2197. *
  2198. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2199. */
  2200. public void setYdtts10(String ydtts10) {
  2201. this.ydtts10 = ydtts10 == null ? null : ydtts10.trim();
  2202. }
  2203. /**
  2204. * This method was generated by Apache iBATIS ibator.
  2205. * This method returns the value of the database column dp_sjlr_sy.YDTTS11
  2206. *
  2207. * @return the value of dp_sjlr_sy.YDTTS11
  2208. *
  2209. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2210. */
  2211. public String getYdtts11() {
  2212. return ydtts11;
  2213. }
  2214. /**
  2215. * This method was generated by Apache iBATIS ibator.
  2216. * This method sets the value of the database column dp_sjlr_sy.YDTTS11
  2217. *
  2218. * @param ydtts11 the value for dp_sjlr_sy.YDTTS11
  2219. *
  2220. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2221. */
  2222. public void setYdtts11(String ydtts11) {
  2223. this.ydtts11 = ydtts11 == null ? null : ydtts11.trim();
  2224. }
  2225. /**
  2226. * This method was generated by Apache iBATIS ibator.
  2227. * This method returns the value of the database column dp_sjlr_sy.YDTTS12
  2228. *
  2229. * @return the value of dp_sjlr_sy.YDTTS12
  2230. *
  2231. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2232. */
  2233. public String getYdtts12() {
  2234. return ydtts12;
  2235. }
  2236. /**
  2237. * This method was generated by Apache iBATIS ibator.
  2238. * This method sets the value of the database column dp_sjlr_sy.YDTTS12
  2239. *
  2240. * @param ydtts12 the value for dp_sjlr_sy.YDTTS12
  2241. *
  2242. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2243. */
  2244. public void setYdtts12(String ydtts12) {
  2245. this.ydtts12 = ydtts12 == null ? null : ydtts12.trim();
  2246. }
  2247. /**
  2248. * This method was generated by Apache iBATIS ibator.
  2249. * This method returns the value of the database column dp_sjlr_sy.YFFBT1
  2250. *
  2251. * @return the value of dp_sjlr_sy.YFFBT1
  2252. *
  2253. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2254. */
  2255. public String getYffbt1() {
  2256. return yffbt1;
  2257. }
  2258. /**
  2259. * This method was generated by Apache iBATIS ibator.
  2260. * This method sets the value of the database column dp_sjlr_sy.YFFBT1
  2261. *
  2262. * @param yffbt1 the value for dp_sjlr_sy.YFFBT1
  2263. *
  2264. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2265. */
  2266. public void setYffbt1(String yffbt1) {
  2267. this.yffbt1 = yffbt1 == null ? null : yffbt1.trim();
  2268. }
  2269. /**
  2270. * This method was generated by Apache iBATIS ibator.
  2271. * This method returns the value of the database column dp_sjlr_sy.YFFBT2
  2272. *
  2273. * @return the value of dp_sjlr_sy.YFFBT2
  2274. *
  2275. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2276. */
  2277. public String getYffbt2() {
  2278. return yffbt2;
  2279. }
  2280. /**
  2281. * This method was generated by Apache iBATIS ibator.
  2282. * This method sets the value of the database column dp_sjlr_sy.YFFBT2
  2283. *
  2284. * @param yffbt2 the value for dp_sjlr_sy.YFFBT2
  2285. *
  2286. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2287. */
  2288. public void setYffbt2(String yffbt2) {
  2289. this.yffbt2 = yffbt2 == null ? null : yffbt2.trim();
  2290. }
  2291. /**
  2292. * This method was generated by Apache iBATIS ibator.
  2293. * This method returns the value of the database column dp_sjlr_sy.YFFBT3
  2294. *
  2295. * @return the value of dp_sjlr_sy.YFFBT3
  2296. *
  2297. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2298. */
  2299. public String getYffbt3() {
  2300. return yffbt3;
  2301. }
  2302. /**
  2303. * This method was generated by Apache iBATIS ibator.
  2304. * This method sets the value of the database column dp_sjlr_sy.YFFBT3
  2305. *
  2306. * @param yffbt3 the value for dp_sjlr_sy.YFFBT3
  2307. *
  2308. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2309. */
  2310. public void setYffbt3(String yffbt3) {
  2311. this.yffbt3 = yffbt3 == null ? null : yffbt3.trim();
  2312. }
  2313. /**
  2314. * This method was generated by Apache iBATIS ibator.
  2315. * This method returns the value of the database column dp_sjlr_sy.YFFBT4
  2316. *
  2317. * @return the value of dp_sjlr_sy.YFFBT4
  2318. *
  2319. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2320. */
  2321. public String getYffbt4() {
  2322. return yffbt4;
  2323. }
  2324. /**
  2325. * This method was generated by Apache iBATIS ibator.
  2326. * This method sets the value of the database column dp_sjlr_sy.YFFBT4
  2327. *
  2328. * @param yffbt4 the value for dp_sjlr_sy.YFFBT4
  2329. *
  2330. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2331. */
  2332. public void setYffbt4(String yffbt4) {
  2333. this.yffbt4 = yffbt4 == null ? null : yffbt4.trim();
  2334. }
  2335. /**
  2336. * This method was generated by Apache iBATIS ibator.
  2337. * This method returns the value of the database column dp_sjlr_sy.YFFBT5
  2338. *
  2339. * @return the value of dp_sjlr_sy.YFFBT5
  2340. *
  2341. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2342. */
  2343. public String getYffbt5() {
  2344. return yffbt5;
  2345. }
  2346. /**
  2347. * This method was generated by Apache iBATIS ibator.
  2348. * This method sets the value of the database column dp_sjlr_sy.YFFBT5
  2349. *
  2350. * @param yffbt5 the value for dp_sjlr_sy.YFFBT5
  2351. *
  2352. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2353. */
  2354. public void setYffbt5(String yffbt5) {
  2355. this.yffbt5 = yffbt5 == null ? null : yffbt5.trim();
  2356. }
  2357. /**
  2358. * This method was generated by Apache iBATIS ibator.
  2359. * This method returns the value of the database column dp_sjlr_sy.YFYFTSYY
  2360. *
  2361. * @return the value of dp_sjlr_sy.YFYFTSYY
  2362. *
  2363. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2364. */
  2365. public String getYfyftsyy() {
  2366. return yfyftsyy;
  2367. }
  2368. /**
  2369. * This method was generated by Apache iBATIS ibator.
  2370. * This method sets the value of the database column dp_sjlr_sy.YFYFTSYY
  2371. *
  2372. * @param yfyftsyy the value for dp_sjlr_sy.YFYFTSYY
  2373. *
  2374. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2375. */
  2376. public void setYfyftsyy(String yfyftsyy) {
  2377. this.yfyftsyy = yfyftsyy == null ? null : yfyftsyy.trim();
  2378. }
  2379. /**
  2380. * This method was generated by Apache iBATIS ibator.
  2381. * This method returns the value of the database column dp_sjlr_sy.YFYFTSEY
  2382. *
  2383. * @return the value of dp_sjlr_sy.YFYFTSEY
  2384. *
  2385. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2386. */
  2387. public String getYfyftsey() {
  2388. return yfyftsey;
  2389. }
  2390. /**
  2391. * This method was generated by Apache iBATIS ibator.
  2392. * This method sets the value of the database column dp_sjlr_sy.YFYFTSEY
  2393. *
  2394. * @param yfyftsey the value for dp_sjlr_sy.YFYFTSEY
  2395. *
  2396. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2397. */
  2398. public void setYfyftsey(String yfyftsey) {
  2399. this.yfyftsey = yfyftsey == null ? null : yfyftsey.trim();
  2400. }
  2401. /**
  2402. * This method was generated by Apache iBATIS ibator.
  2403. * This method returns the value of the database column dp_sjlr_sy.YFYFTSSY
  2404. *
  2405. * @return the value of dp_sjlr_sy.YFYFTSSY
  2406. *
  2407. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2408. */
  2409. public String getYfyftssy() {
  2410. return yfyftssy;
  2411. }
  2412. /**
  2413. * This method was generated by Apache iBATIS ibator.
  2414. * This method sets the value of the database column dp_sjlr_sy.YFYFTSSY
  2415. *
  2416. * @param yfyftssy the value for dp_sjlr_sy.YFYFTSSY
  2417. *
  2418. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2419. */
  2420. public void setYfyftssy(String yfyftssy) {
  2421. this.yfyftssy = yfyftssy == null ? null : yfyftssy.trim();
  2422. }
  2423. /**
  2424. * This method was generated by Apache iBATIS ibator.
  2425. * This method returns the value of the database column dp_sjlr_sy.YFYFTSSIY
  2426. *
  2427. * @return the value of dp_sjlr_sy.YFYFTSSIY
  2428. *
  2429. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2430. */
  2431. public String getYfyftssiy() {
  2432. return yfyftssiy;
  2433. }
  2434. /**
  2435. * This method was generated by Apache iBATIS ibator.
  2436. * This method sets the value of the database column dp_sjlr_sy.YFYFTSSIY
  2437. *
  2438. * @param yfyftssiy the value for dp_sjlr_sy.YFYFTSSIY
  2439. *
  2440. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2441. */
  2442. public void setYfyftssiy(String yfyftssiy) {
  2443. this.yfyftssiy = yfyftssiy == null ? null : yfyftssiy.trim();
  2444. }
  2445. /**
  2446. * This method was generated by Apache iBATIS ibator.
  2447. * This method returns the value of the database column dp_sjlr_sy.YFYFTSWY
  2448. *
  2449. * @return the value of dp_sjlr_sy.YFYFTSWY
  2450. *
  2451. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2452. */
  2453. public String getYfyftswy() {
  2454. return yfyftswy;
  2455. }
  2456. /**
  2457. * This method was generated by Apache iBATIS ibator.
  2458. * This method sets the value of the database column dp_sjlr_sy.YFYFTSWY
  2459. *
  2460. * @param yfyftswy the value for dp_sjlr_sy.YFYFTSWY
  2461. *
  2462. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2463. */
  2464. public void setYfyftswy(String yfyftswy) {
  2465. this.yfyftswy = yfyftswy == null ? null : yfyftswy.trim();
  2466. }
  2467. /**
  2468. * This method was generated by Apache iBATIS ibator.
  2469. * This method returns the value of the database column dp_sjlr_sy.WHHCLLXR
  2470. *
  2471. * @return the value of dp_sjlr_sy.WHHCLLXR
  2472. *
  2473. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2474. */
  2475. public String getWhhcllxr() {
  2476. return whhcllxr;
  2477. }
  2478. /**
  2479. * This method was generated by Apache iBATIS ibator.
  2480. * This method sets the value of the database column dp_sjlr_sy.WHHCLLXR
  2481. *
  2482. * @param whhcllxr the value for dp_sjlr_sy.WHHCLLXR
  2483. *
  2484. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2485. */
  2486. public void setWhhcllxr(String whhcllxr) {
  2487. this.whhcllxr = whhcllxr == null ? null : whhcllxr.trim();
  2488. }
  2489. /**
  2490. * This method was generated by Apache iBATIS ibator.
  2491. * This method returns the value of the database column dp_sjlr_sy.WHHCLLXDH
  2492. *
  2493. * @return the value of dp_sjlr_sy.WHHCLLXDH
  2494. *
  2495. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2496. */
  2497. public String getWhhcllxdh() {
  2498. return whhcllxdh;
  2499. }
  2500. /**
  2501. * This method was generated by Apache iBATIS ibator.
  2502. * This method sets the value of the database column dp_sjlr_sy.WHHCLLXDH
  2503. *
  2504. * @param whhcllxdh the value for dp_sjlr_sy.WHHCLLXDH
  2505. *
  2506. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2507. */
  2508. public void setWhhcllxdh(String whhcllxdh) {
  2509. this.whhcllxdh = whhcllxdh == null ? null : whhcllxdh.trim();
  2510. }
  2511. /**
  2512. * This method was generated by Apache iBATIS ibator.
  2513. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ1
  2514. *
  2515. * @return the value of dp_sjlr_sy.WHHCLRQ1
  2516. *
  2517. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2518. */
  2519. public Date getWhhclrq1() {
  2520. return whhclrq1;
  2521. }
  2522. /**
  2523. * This method was generated by Apache iBATIS ibator.
  2524. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ1
  2525. *
  2526. * @param whhclrq1 the value for dp_sjlr_sy.WHHCLRQ1
  2527. *
  2528. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2529. */
  2530. public void setWhhclrq1(Date whhclrq1) {
  2531. this.whhclrq1 = whhclrq1;
  2532. }
  2533. /**
  2534. * This method was generated by Apache iBATIS ibator.
  2535. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ2
  2536. *
  2537. * @return the value of dp_sjlr_sy.WHHCLRQ2
  2538. *
  2539. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2540. */
  2541. public Date getWhhclrq2() {
  2542. return whhclrq2;
  2543. }
  2544. /**
  2545. * This method was generated by Apache iBATIS ibator.
  2546. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ2
  2547. *
  2548. * @param whhclrq2 the value for dp_sjlr_sy.WHHCLRQ2
  2549. *
  2550. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2551. */
  2552. public void setWhhclrq2(Date whhclrq2) {
  2553. this.whhclrq2 = whhclrq2;
  2554. }
  2555. /**
  2556. * This method was generated by Apache iBATIS ibator.
  2557. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ3
  2558. *
  2559. * @return the value of dp_sjlr_sy.WHHCLRQ3
  2560. *
  2561. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2562. */
  2563. public Date getWhhclrq3() {
  2564. return whhclrq3;
  2565. }
  2566. /**
  2567. * This method was generated by Apache iBATIS ibator.
  2568. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ3
  2569. *
  2570. * @param whhclrq3 the value for dp_sjlr_sy.WHHCLRQ3
  2571. *
  2572. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2573. */
  2574. public void setWhhclrq3(Date whhclrq3) {
  2575. this.whhclrq3 = whhclrq3;
  2576. }
  2577. /**
  2578. * This method was generated by Apache iBATIS ibator.
  2579. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ4
  2580. *
  2581. * @return the value of dp_sjlr_sy.WHHCLRQ4
  2582. *
  2583. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2584. */
  2585. public Date getWhhclrq4() {
  2586. return whhclrq4;
  2587. }
  2588. /**
  2589. * This method was generated by Apache iBATIS ibator.
  2590. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ4
  2591. *
  2592. * @param whhclrq4 the value for dp_sjlr_sy.WHHCLRQ4
  2593. *
  2594. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2595. */
  2596. public void setWhhclrq4(Date whhclrq4) {
  2597. this.whhclrq4 = whhclrq4;
  2598. }
  2599. /**
  2600. * This method was generated by Apache iBATIS ibator.
  2601. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ5
  2602. *
  2603. * @return the value of dp_sjlr_sy.WHHCLRQ5
  2604. *
  2605. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2606. */
  2607. public Date getWhhclrq5() {
  2608. return whhclrq5;
  2609. }
  2610. /**
  2611. * This method was generated by Apache iBATIS ibator.
  2612. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ5
  2613. *
  2614. * @param whhclrq5 the value for dp_sjlr_sy.WHHCLRQ5
  2615. *
  2616. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2617. */
  2618. public void setWhhclrq5(Date whhclrq5) {
  2619. this.whhclrq5 = whhclrq5;
  2620. }
  2621. /**
  2622. * This method was generated by Apache iBATIS ibator.
  2623. * This method returns the value of the database column dp_sjlr_sy.WHHCLRQ6
  2624. *
  2625. * @return the value of dp_sjlr_sy.WHHCLRQ6
  2626. *
  2627. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2628. */
  2629. public Date getWhhclrq6() {
  2630. return whhclrq6;
  2631. }
  2632. /**
  2633. * This method was generated by Apache iBATIS ibator.
  2634. * This method sets the value of the database column dp_sjlr_sy.WHHCLRQ6
  2635. *
  2636. * @param whhclrq6 the value for dp_sjlr_sy.WHHCLRQ6
  2637. *
  2638. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2639. */
  2640. public void setWhhclrq6(Date whhclrq6) {
  2641. this.whhclrq6 = whhclrq6;
  2642. }
  2643. /**
  2644. * This method was generated by Apache iBATIS ibator.
  2645. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS1
  2646. *
  2647. * @return the value of dp_sjlr_sy.WHHCLFS1
  2648. *
  2649. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2650. */
  2651. public String getWhhclfs1() {
  2652. return whhclfs1;
  2653. }
  2654. /**
  2655. * This method was generated by Apache iBATIS ibator.
  2656. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS1
  2657. *
  2658. * @param whhclfs1 the value for dp_sjlr_sy.WHHCLFS1
  2659. *
  2660. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2661. */
  2662. public void setWhhclfs1(String whhclfs1) {
  2663. this.whhclfs1 = whhclfs1 == null ? null : whhclfs1.trim();
  2664. }
  2665. /**
  2666. * This method was generated by Apache iBATIS ibator.
  2667. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS2
  2668. *
  2669. * @return the value of dp_sjlr_sy.WHHCLFS2
  2670. *
  2671. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2672. */
  2673. public String getWhhclfs2() {
  2674. return whhclfs2;
  2675. }
  2676. /**
  2677. * This method was generated by Apache iBATIS ibator.
  2678. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS2
  2679. *
  2680. * @param whhclfs2 the value for dp_sjlr_sy.WHHCLFS2
  2681. *
  2682. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2683. */
  2684. public void setWhhclfs2(String whhclfs2) {
  2685. this.whhclfs2 = whhclfs2 == null ? null : whhclfs2.trim();
  2686. }
  2687. /**
  2688. * This method was generated by Apache iBATIS ibator.
  2689. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS3
  2690. *
  2691. * @return the value of dp_sjlr_sy.WHHCLFS3
  2692. *
  2693. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2694. */
  2695. public String getWhhclfs3() {
  2696. return whhclfs3;
  2697. }
  2698. /**
  2699. * This method was generated by Apache iBATIS ibator.
  2700. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS3
  2701. *
  2702. * @param whhclfs3 the value for dp_sjlr_sy.WHHCLFS3
  2703. *
  2704. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2705. */
  2706. public void setWhhclfs3(String whhclfs3) {
  2707. this.whhclfs3 = whhclfs3 == null ? null : whhclfs3.trim();
  2708. }
  2709. /**
  2710. * This method was generated by Apache iBATIS ibator.
  2711. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS4
  2712. *
  2713. * @return the value of dp_sjlr_sy.WHHCLFS4
  2714. *
  2715. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2716. */
  2717. public String getWhhclfs4() {
  2718. return whhclfs4;
  2719. }
  2720. /**
  2721. * This method was generated by Apache iBATIS ibator.
  2722. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS4
  2723. *
  2724. * @param whhclfs4 the value for dp_sjlr_sy.WHHCLFS4
  2725. *
  2726. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2727. */
  2728. public void setWhhclfs4(String whhclfs4) {
  2729. this.whhclfs4 = whhclfs4 == null ? null : whhclfs4.trim();
  2730. }
  2731. /**
  2732. * This method was generated by Apache iBATIS ibator.
  2733. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS5
  2734. *
  2735. * @return the value of dp_sjlr_sy.WHHCLFS5
  2736. *
  2737. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2738. */
  2739. public String getWhhclfs5() {
  2740. return whhclfs5;
  2741. }
  2742. /**
  2743. * This method was generated by Apache iBATIS ibator.
  2744. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS5
  2745. *
  2746. * @param whhclfs5 the value for dp_sjlr_sy.WHHCLFS5
  2747. *
  2748. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2749. */
  2750. public void setWhhclfs5(String whhclfs5) {
  2751. this.whhclfs5 = whhclfs5 == null ? null : whhclfs5.trim();
  2752. }
  2753. /**
  2754. * This method was generated by Apache iBATIS ibator.
  2755. * This method returns the value of the database column dp_sjlr_sy.WHHCLFS6
  2756. *
  2757. * @return the value of dp_sjlr_sy.WHHCLFS6
  2758. *
  2759. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2760. */
  2761. public String getWhhclfs6() {
  2762. return whhclfs6;
  2763. }
  2764. /**
  2765. * This method was generated by Apache iBATIS ibator.
  2766. * This method sets the value of the database column dp_sjlr_sy.WHHCLFS6
  2767. *
  2768. * @param whhclfs6 the value for dp_sjlr_sy.WHHCLFS6
  2769. *
  2770. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2771. */
  2772. public void setWhhclfs6(String whhclfs6) {
  2773. this.whhclfs6 = whhclfs6 == null ? null : whhclfs6.trim();
  2774. }
  2775. /**
  2776. * This method was generated by Apache iBATIS ibator.
  2777. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL1
  2778. *
  2779. * @return the value of dp_sjlr_sy.WHHCLSL1
  2780. *
  2781. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2782. */
  2783. public String getWhhclsl1() {
  2784. return whhclsl1;
  2785. }
  2786. /**
  2787. * This method was generated by Apache iBATIS ibator.
  2788. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL1
  2789. *
  2790. * @param whhclsl1 the value for dp_sjlr_sy.WHHCLSL1
  2791. *
  2792. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2793. */
  2794. public void setWhhclsl1(String whhclsl1) {
  2795. this.whhclsl1 = whhclsl1 == null ? null : whhclsl1.trim();
  2796. }
  2797. /**
  2798. * This method was generated by Apache iBATIS ibator.
  2799. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL2
  2800. *
  2801. * @return the value of dp_sjlr_sy.WHHCLSL2
  2802. *
  2803. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2804. */
  2805. public String getWhhclsl2() {
  2806. return whhclsl2;
  2807. }
  2808. /**
  2809. * This method was generated by Apache iBATIS ibator.
  2810. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL2
  2811. *
  2812. * @param whhclsl2 the value for dp_sjlr_sy.WHHCLSL2
  2813. *
  2814. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2815. */
  2816. public void setWhhclsl2(String whhclsl2) {
  2817. this.whhclsl2 = whhclsl2 == null ? null : whhclsl2.trim();
  2818. }
  2819. /**
  2820. * This method was generated by Apache iBATIS ibator.
  2821. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL3
  2822. *
  2823. * @return the value of dp_sjlr_sy.WHHCLSL3
  2824. *
  2825. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2826. */
  2827. public String getWhhclsl3() {
  2828. return whhclsl3;
  2829. }
  2830. /**
  2831. * This method was generated by Apache iBATIS ibator.
  2832. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL3
  2833. *
  2834. * @param whhclsl3 the value for dp_sjlr_sy.WHHCLSL3
  2835. *
  2836. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2837. */
  2838. public void setWhhclsl3(String whhclsl3) {
  2839. this.whhclsl3 = whhclsl3 == null ? null : whhclsl3.trim();
  2840. }
  2841. /**
  2842. * This method was generated by Apache iBATIS ibator.
  2843. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL4
  2844. *
  2845. * @return the value of dp_sjlr_sy.WHHCLSL4
  2846. *
  2847. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2848. */
  2849. public String getWhhclsl4() {
  2850. return whhclsl4;
  2851. }
  2852. /**
  2853. * This method was generated by Apache iBATIS ibator.
  2854. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL4
  2855. *
  2856. * @param whhclsl4 the value for dp_sjlr_sy.WHHCLSL4
  2857. *
  2858. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2859. */
  2860. public void setWhhclsl4(String whhclsl4) {
  2861. this.whhclsl4 = whhclsl4 == null ? null : whhclsl4.trim();
  2862. }
  2863. /**
  2864. * This method was generated by Apache iBATIS ibator.
  2865. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL5
  2866. *
  2867. * @return the value of dp_sjlr_sy.WHHCLSL5
  2868. *
  2869. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2870. */
  2871. public String getWhhclsl5() {
  2872. return whhclsl5;
  2873. }
  2874. /**
  2875. * This method was generated by Apache iBATIS ibator.
  2876. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL5
  2877. *
  2878. * @param whhclsl5 the value for dp_sjlr_sy.WHHCLSL5
  2879. *
  2880. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2881. */
  2882. public void setWhhclsl5(String whhclsl5) {
  2883. this.whhclsl5 = whhclsl5 == null ? null : whhclsl5.trim();
  2884. }
  2885. /**
  2886. * This method was generated by Apache iBATIS ibator.
  2887. * This method returns the value of the database column dp_sjlr_sy.WHHCLSL6
  2888. *
  2889. * @return the value of dp_sjlr_sy.WHHCLSL6
  2890. *
  2891. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2892. */
  2893. public String getWhhclsl6() {
  2894. return whhclsl6;
  2895. }
  2896. /**
  2897. * This method was generated by Apache iBATIS ibator.
  2898. * This method sets the value of the database column dp_sjlr_sy.WHHCLSL6
  2899. *
  2900. * @param whhclsl6 the value for dp_sjlr_sy.WHHCLSL6
  2901. *
  2902. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2903. */
  2904. public void setWhhclsl6(String whhclsl6) {
  2905. this.whhclsl6 = whhclsl6 == null ? null : whhclsl6.trim();
  2906. }
  2907. /**
  2908. * This method was generated by Apache iBATIS ibator.
  2909. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ1
  2910. *
  2911. * @return the value of dp_sjlr_sy.XSSJSJ1
  2912. *
  2913. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2914. */
  2915. public Date getXssjsj1() {
  2916. return xssjsj1;
  2917. }
  2918. /**
  2919. * This method was generated by Apache iBATIS ibator.
  2920. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ1
  2921. *
  2922. * @param xssjsj1 the value for dp_sjlr_sy.XSSJSJ1
  2923. *
  2924. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2925. */
  2926. public void setXssjsj1(Date xssjsj1) {
  2927. this.xssjsj1 = xssjsj1;
  2928. }
  2929. /**
  2930. * This method was generated by Apache iBATIS ibator.
  2931. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ2
  2932. *
  2933. * @return the value of dp_sjlr_sy.XSSJSJ2
  2934. *
  2935. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2936. */
  2937. public Date getXssjsj2() {
  2938. return xssjsj2;
  2939. }
  2940. /**
  2941. * This method was generated by Apache iBATIS ibator.
  2942. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ2
  2943. *
  2944. * @param xssjsj2 the value for dp_sjlr_sy.XSSJSJ2
  2945. *
  2946. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2947. */
  2948. public void setXssjsj2(Date xssjsj2) {
  2949. this.xssjsj2 = xssjsj2;
  2950. }
  2951. /**
  2952. * This method was generated by Apache iBATIS ibator.
  2953. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ3
  2954. *
  2955. * @return the value of dp_sjlr_sy.XSSJSJ3
  2956. *
  2957. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2958. */
  2959. public Date getXssjsj3() {
  2960. return xssjsj3;
  2961. }
  2962. /**
  2963. * This method was generated by Apache iBATIS ibator.
  2964. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ3
  2965. *
  2966. * @param xssjsj3 the value for dp_sjlr_sy.XSSJSJ3
  2967. *
  2968. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2969. */
  2970. public void setXssjsj3(Date xssjsj3) {
  2971. this.xssjsj3 = xssjsj3;
  2972. }
  2973. /**
  2974. * This method was generated by Apache iBATIS ibator.
  2975. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ4
  2976. *
  2977. * @return the value of dp_sjlr_sy.XSSJSJ4
  2978. *
  2979. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2980. */
  2981. public Date getXssjsj4() {
  2982. return xssjsj4;
  2983. }
  2984. /**
  2985. * This method was generated by Apache iBATIS ibator.
  2986. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ4
  2987. *
  2988. * @param xssjsj4 the value for dp_sjlr_sy.XSSJSJ4
  2989. *
  2990. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  2991. */
  2992. public void setXssjsj4(Date xssjsj4) {
  2993. this.xssjsj4 = xssjsj4;
  2994. }
  2995. /**
  2996. * This method was generated by Apache iBATIS ibator.
  2997. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ5
  2998. *
  2999. * @return the value of dp_sjlr_sy.XSSJSJ5
  3000. *
  3001. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3002. */
  3003. public Date getXssjsj5() {
  3004. return xssjsj5;
  3005. }
  3006. /**
  3007. * This method was generated by Apache iBATIS ibator.
  3008. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ5
  3009. *
  3010. * @param xssjsj5 the value for dp_sjlr_sy.XSSJSJ5
  3011. *
  3012. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3013. */
  3014. public void setXssjsj5(Date xssjsj5) {
  3015. this.xssjsj5 = xssjsj5;
  3016. }
  3017. /**
  3018. * This method was generated by Apache iBATIS ibator.
  3019. * This method returns the value of the database column dp_sjlr_sy.XSSJSJ6
  3020. *
  3021. * @return the value of dp_sjlr_sy.XSSJSJ6
  3022. *
  3023. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3024. */
  3025. public Date getXssjsj6() {
  3026. return xssjsj6;
  3027. }
  3028. /**
  3029. * This method was generated by Apache iBATIS ibator.
  3030. * This method sets the value of the database column dp_sjlr_sy.XSSJSJ6
  3031. *
  3032. * @param xssjsj6 the value for dp_sjlr_sy.XSSJSJ6
  3033. *
  3034. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3035. */
  3036. public void setXssjsj6(Date xssjsj6) {
  3037. this.xssjsj6 = xssjsj6;
  3038. }
  3039. /**
  3040. * This method was generated by Apache iBATIS ibator.
  3041. * This method returns the value of the database column dp_sjlr_sy.WSCL1
  3042. *
  3043. * @return the value of dp_sjlr_sy.WSCL1
  3044. *
  3045. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3046. */
  3047. public String getWscl1() {
  3048. return wscl1;
  3049. }
  3050. /**
  3051. * This method was generated by Apache iBATIS ibator.
  3052. * This method sets the value of the database column dp_sjlr_sy.WSCL1
  3053. *
  3054. * @param wscl1 the value for dp_sjlr_sy.WSCL1
  3055. *
  3056. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3057. */
  3058. public void setWscl1(String wscl1) {
  3059. this.wscl1 = wscl1 == null ? null : wscl1.trim();
  3060. }
  3061. /**
  3062. * This method was generated by Apache iBATIS ibator.
  3063. * This method returns the value of the database column dp_sjlr_sy.WSCL2
  3064. *
  3065. * @return the value of dp_sjlr_sy.WSCL2
  3066. *
  3067. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3068. */
  3069. public String getWscl2() {
  3070. return wscl2;
  3071. }
  3072. /**
  3073. * This method was generated by Apache iBATIS ibator.
  3074. * This method sets the value of the database column dp_sjlr_sy.WSCL2
  3075. *
  3076. * @param wscl2 the value for dp_sjlr_sy.WSCL2
  3077. *
  3078. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3079. */
  3080. public void setWscl2(String wscl2) {
  3081. this.wscl2 = wscl2 == null ? null : wscl2.trim();
  3082. }
  3083. /**
  3084. * This method was generated by Apache iBATIS ibator.
  3085. * This method returns the value of the database column dp_sjlr_sy.WSCL3
  3086. *
  3087. * @return the value of dp_sjlr_sy.WSCL3
  3088. *
  3089. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3090. */
  3091. public String getWscl3() {
  3092. return wscl3;
  3093. }
  3094. /**
  3095. * This method was generated by Apache iBATIS ibator.
  3096. * This method sets the value of the database column dp_sjlr_sy.WSCL3
  3097. *
  3098. * @param wscl3 the value for dp_sjlr_sy.WSCL3
  3099. *
  3100. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3101. */
  3102. public void setWscl3(String wscl3) {
  3103. this.wscl3 = wscl3 == null ? null : wscl3.trim();
  3104. }
  3105. /**
  3106. * This method was generated by Apache iBATIS ibator.
  3107. * This method returns the value of the database column dp_sjlr_sy.WSCL4
  3108. *
  3109. * @return the value of dp_sjlr_sy.WSCL4
  3110. *
  3111. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3112. */
  3113. public String getWscl4() {
  3114. return wscl4;
  3115. }
  3116. /**
  3117. * This method was generated by Apache iBATIS ibator.
  3118. * This method sets the value of the database column dp_sjlr_sy.WSCL4
  3119. *
  3120. * @param wscl4 the value for dp_sjlr_sy.WSCL4
  3121. *
  3122. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3123. */
  3124. public void setWscl4(String wscl4) {
  3125. this.wscl4 = wscl4 == null ? null : wscl4.trim();
  3126. }
  3127. /**
  3128. * This method was generated by Apache iBATIS ibator.
  3129. * This method returns the value of the database column dp_sjlr_sy.WSCL5
  3130. *
  3131. * @return the value of dp_sjlr_sy.WSCL5
  3132. *
  3133. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3134. */
  3135. public String getWscl5() {
  3136. return wscl5;
  3137. }
  3138. /**
  3139. * This method was generated by Apache iBATIS ibator.
  3140. * This method sets the value of the database column dp_sjlr_sy.WSCL5
  3141. *
  3142. * @param wscl5 the value for dp_sjlr_sy.WSCL5
  3143. *
  3144. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3145. */
  3146. public void setWscl5(String wscl5) {
  3147. this.wscl5 = wscl5 == null ? null : wscl5.trim();
  3148. }
  3149. /**
  3150. * This method was generated by Apache iBATIS ibator.
  3151. * This method returns the value of the database column dp_sjlr_sy.WSCL6
  3152. *
  3153. * @return the value of dp_sjlr_sy.WSCL6
  3154. *
  3155. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3156. */
  3157. public String getWscl6() {
  3158. return wscl6;
  3159. }
  3160. /**
  3161. * This method was generated by Apache iBATIS ibator.
  3162. * This method sets the value of the database column dp_sjlr_sy.WSCL6
  3163. *
  3164. * @param wscl6 the value for dp_sjlr_sy.WSCL6
  3165. *
  3166. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3167. */
  3168. public void setWscl6(String wscl6) {
  3169. this.wscl6 = wscl6 == null ? null : wscl6.trim();
  3170. }
  3171. /**
  3172. * This method was generated by Apache iBATIS ibator.
  3173. * This method returns the value of the database column dp_sjlr_sy.WSCL7
  3174. *
  3175. * @return the value of dp_sjlr_sy.WSCL7
  3176. *
  3177. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3178. */
  3179. public String getWscl7() {
  3180. return wscl7;
  3181. }
  3182. /**
  3183. * This method was generated by Apache iBATIS ibator.
  3184. * This method sets the value of the database column dp_sjlr_sy.WSCL7
  3185. *
  3186. * @param wscl7 the value for dp_sjlr_sy.WSCL7
  3187. *
  3188. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3189. */
  3190. public void setWscl7(String wscl7) {
  3191. this.wscl7 = wscl7 == null ? null : wscl7.trim();
  3192. }
  3193. /**
  3194. * This method was generated by Apache iBATIS ibator.
  3195. * This method returns the value of the database column dp_sjlr_sy.SBTJ1
  3196. *
  3197. * @return the value of dp_sjlr_sy.SBTJ1
  3198. *
  3199. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3200. */
  3201. public String getSbtj1() {
  3202. return sbtj1;
  3203. }
  3204. /**
  3205. * This method was generated by Apache iBATIS ibator.
  3206. * This method sets the value of the database column dp_sjlr_sy.SBTJ1
  3207. *
  3208. * @param sbtj1 the value for dp_sjlr_sy.SBTJ1
  3209. *
  3210. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3211. */
  3212. public void setSbtj1(String sbtj1) {
  3213. this.sbtj1 = sbtj1 == null ? null : sbtj1.trim();
  3214. }
  3215. /**
  3216. * This method was generated by Apache iBATIS ibator.
  3217. * This method returns the value of the database column dp_sjlr_sy.SBTJ2
  3218. *
  3219. * @return the value of dp_sjlr_sy.SBTJ2
  3220. *
  3221. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3222. */
  3223. public String getSbtj2() {
  3224. return sbtj2;
  3225. }
  3226. /**
  3227. * This method was generated by Apache iBATIS ibator.
  3228. * This method sets the value of the database column dp_sjlr_sy.SBTJ2
  3229. *
  3230. * @param sbtj2 the value for dp_sjlr_sy.SBTJ2
  3231. *
  3232. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3233. */
  3234. public void setSbtj2(String sbtj2) {
  3235. this.sbtj2 = sbtj2 == null ? null : sbtj2.trim();
  3236. }
  3237. /**
  3238. * This method was generated by Apache iBATIS ibator.
  3239. * This method returns the value of the database column dp_sjlr_sy.SBTJ3
  3240. *
  3241. * @return the value of dp_sjlr_sy.SBTJ3
  3242. *
  3243. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3244. */
  3245. public String getSbtj3() {
  3246. return sbtj3;
  3247. }
  3248. /**
  3249. * This method was generated by Apache iBATIS ibator.
  3250. * This method sets the value of the database column dp_sjlr_sy.SBTJ3
  3251. *
  3252. * @param sbtj3 the value for dp_sjlr_sy.SBTJ3
  3253. *
  3254. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3255. */
  3256. public void setSbtj3(String sbtj3) {
  3257. this.sbtj3 = sbtj3 == null ? null : sbtj3.trim();
  3258. }
  3259. /**
  3260. * This method was generated by Apache iBATIS ibator.
  3261. * This method returns the value of the database column dp_sjlr_sy.SBTJ4
  3262. *
  3263. * @return the value of dp_sjlr_sy.SBTJ4
  3264. *
  3265. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3266. */
  3267. public String getSbtj4() {
  3268. return sbtj4;
  3269. }
  3270. /**
  3271. * This method was generated by Apache iBATIS ibator.
  3272. * This method sets the value of the database column dp_sjlr_sy.SBTJ4
  3273. *
  3274. * @param sbtj4 the value for dp_sjlr_sy.SBTJ4
  3275. *
  3276. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3277. */
  3278. public void setSbtj4(String sbtj4) {
  3279. this.sbtj4 = sbtj4 == null ? null : sbtj4.trim();
  3280. }
  3281. /**
  3282. * This method was generated by Apache iBATIS ibator.
  3283. * This method returns the value of the database column dp_sjlr_sy.SBTJ5
  3284. *
  3285. * @return the value of dp_sjlr_sy.SBTJ5
  3286. *
  3287. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3288. */
  3289. public String getSbtj5() {
  3290. return sbtj5;
  3291. }
  3292. /**
  3293. * This method was generated by Apache iBATIS ibator.
  3294. * This method sets the value of the database column dp_sjlr_sy.SBTJ5
  3295. *
  3296. * @param sbtj5 the value for dp_sjlr_sy.SBTJ5
  3297. *
  3298. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3299. */
  3300. public void setSbtj5(String sbtj5) {
  3301. this.sbtj5 = sbtj5 == null ? null : sbtj5.trim();
  3302. }
  3303. /**
  3304. * This method was generated by Apache iBATIS ibator.
  3305. * This method returns the value of the database column dp_sjlr_sy.SBTJ6
  3306. *
  3307. * @return the value of dp_sjlr_sy.SBTJ6
  3308. *
  3309. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3310. */
  3311. public String getSbtj6() {
  3312. return sbtj6;
  3313. }
  3314. /**
  3315. * This method was generated by Apache iBATIS ibator.
  3316. * This method sets the value of the database column dp_sjlr_sy.SBTJ6
  3317. *
  3318. * @param sbtj6 the value for dp_sjlr_sy.SBTJ6
  3319. *
  3320. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3321. */
  3322. public void setSbtj6(String sbtj6) {
  3323. this.sbtj6 = sbtj6 == null ? null : sbtj6.trim();
  3324. }
  3325. /**
  3326. * This method was generated by Apache iBATIS ibator.
  3327. * This method returns the value of the database column dp_sjlr_sy.SBTJ7
  3328. *
  3329. * @return the value of dp_sjlr_sy.SBTJ7
  3330. *
  3331. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3332. */
  3333. public String getSbtj7() {
  3334. return sbtj7;
  3335. }
  3336. /**
  3337. * This method was generated by Apache iBATIS ibator.
  3338. * This method sets the value of the database column dp_sjlr_sy.SBTJ7
  3339. *
  3340. * @param sbtj7 the value for dp_sjlr_sy.SBTJ7
  3341. *
  3342. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3343. */
  3344. public void setSbtj7(String sbtj7) {
  3345. this.sbtj7 = sbtj7 == null ? null : sbtj7.trim();
  3346. }
  3347. /**
  3348. * This method was generated by Apache iBATIS ibator.
  3349. * This method returns the value of the database column dp_sjlr_sy.SBTJJN
  3350. *
  3351. * @return the value of dp_sjlr_sy.SBTJJN
  3352. *
  3353. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3354. */
  3355. public String getSbtjjn() {
  3356. return sbtjjn;
  3357. }
  3358. /**
  3359. * This method was generated by Apache iBATIS ibator.
  3360. * This method sets the value of the database column dp_sjlr_sy.SBTJJN
  3361. *
  3362. * @param sbtjjn the value for dp_sjlr_sy.SBTJJN
  3363. *
  3364. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3365. */
  3366. public void setSbtjjn(String sbtjjn) {
  3367. this.sbtjjn = sbtjjn == null ? null : sbtjjn.trim();
  3368. }
  3369. /**
  3370. * This method was generated by Apache iBATIS ibator.
  3371. * This method returns the value of the database column dp_sjlr_sy.SBTJQN
  3372. *
  3373. * @return the value of dp_sjlr_sy.SBTJQN
  3374. *
  3375. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3376. */
  3377. public String getSbtjqn() {
  3378. return sbtjqn;
  3379. }
  3380. /**
  3381. * This method was generated by Apache iBATIS ibator.
  3382. * This method sets the value of the database column dp_sjlr_sy.SBTJQN
  3383. *
  3384. * @param sbtjqn the value for dp_sjlr_sy.SBTJQN
  3385. *
  3386. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3387. */
  3388. public void setSbtjqn(String sbtjqn) {
  3389. this.sbtjqn = sbtjqn == null ? null : sbtjqn.trim();
  3390. }
  3391. /**
  3392. * This method was generated by Apache iBATIS ibator.
  3393. * This method returns the value of the database column dp_sjlr_sy.DNZS
  3394. *
  3395. * @return the value of dp_sjlr_sy.DNZS
  3396. *
  3397. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3398. */
  3399. public String getDnzs() {
  3400. return dnzs;
  3401. }
  3402. /**
  3403. * This method was generated by Apache iBATIS ibator.
  3404. * This method sets the value of the database column dp_sjlr_sy.DNZS
  3405. *
  3406. * @param dnzs the value for dp_sjlr_sy.DNZS
  3407. *
  3408. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3409. */
  3410. public void setDnzs(String dnzs) {
  3411. this.dnzs = dnzs == null ? null : dnzs.trim();
  3412. }
  3413. /**
  3414. * This method was generated by Apache iBATIS ibator.
  3415. * This method returns the value of the database column dp_sjlr_sy.DNWS
  3416. *
  3417. * @return the value of dp_sjlr_sy.DNWS
  3418. *
  3419. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3420. */
  3421. public String getDnws() {
  3422. return dnws;
  3423. }
  3424. /**
  3425. * This method was generated by Apache iBATIS ibator.
  3426. * This method sets the value of the database column dp_sjlr_sy.DNWS
  3427. *
  3428. * @param dnws the value for dp_sjlr_sy.DNWS
  3429. *
  3430. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3431. */
  3432. public void setDnws(String dnws) {
  3433. this.dnws = dnws == null ? null : dnws.trim();
  3434. }
  3435. /**
  3436. * This method was generated by Apache iBATIS ibator.
  3437. * This method returns the value of the database column dp_sjlr_sy.GTJZ
  3438. *
  3439. * @return the value of dp_sjlr_sy.GTJZ
  3440. *
  3441. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3442. */
  3443. public String getGtjz() {
  3444. return gtjz;
  3445. }
  3446. /**
  3447. * This method was generated by Apache iBATIS ibator.
  3448. * This method sets the value of the database column dp_sjlr_sy.GTJZ
  3449. *
  3450. * @param gtjz the value for dp_sjlr_sy.GTJZ
  3451. *
  3452. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3453. */
  3454. public void setGtjz(String gtjz) {
  3455. this.gtjz = gtjz == null ? null : gtjz.trim();
  3456. }
  3457. /**
  3458. * This method was generated by Apache iBATIS ibator.
  3459. * This method returns the value of the database column dp_sjlr_sy.WZHZS
  3460. *
  3461. * @return the value of dp_sjlr_sy.WZHZS
  3462. *
  3463. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3464. */
  3465. public String getWzhzs() {
  3466. return wzhzs;
  3467. }
  3468. /**
  3469. * This method was generated by Apache iBATIS ibator.
  3470. * This method sets the value of the database column dp_sjlr_sy.WZHZS
  3471. *
  3472. * @param wzhzs the value for dp_sjlr_sy.WZHZS
  3473. *
  3474. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3475. */
  3476. public void setWzhzs(String wzhzs) {
  3477. this.wzhzs = wzhzs == null ? null : wzhzs.trim();
  3478. }
  3479. /**
  3480. * This method was generated by Apache iBATIS ibator.
  3481. * This method returns the value of the database column dp_sjlr_sy.YFFBT6
  3482. *
  3483. * @return the value of dp_sjlr_sy.YFFBT6
  3484. *
  3485. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3486. */
  3487. public String getYffbt6() {
  3488. return yffbt6;
  3489. }
  3490. /**
  3491. * This method was generated by Apache iBATIS ibator.
  3492. * This method sets the value of the database column dp_sjlr_sy.YFFBT6
  3493. *
  3494. * @param yffbt6 the value for dp_sjlr_sy.YFFBT6
  3495. *
  3496. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3497. */
  3498. public void setYffbt6(String yffbt6) {
  3499. this.yffbt6 = yffbt6 == null ? null : yffbt6.trim();
  3500. }
  3501. /**
  3502. * This method was generated by Apache iBATIS ibator.
  3503. * This method returns the value of the database column dp_sjlr_sy.YFFBT7
  3504. *
  3505. * @return the value of dp_sjlr_sy.YFFBT7
  3506. *
  3507. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3508. */
  3509. public String getYffbt7() {
  3510. return yffbt7;
  3511. }
  3512. /**
  3513. * This method was generated by Apache iBATIS ibator.
  3514. * This method sets the value of the database column dp_sjlr_sy.YFFBT7
  3515. *
  3516. * @param yffbt7 the value for dp_sjlr_sy.YFFBT7
  3517. *
  3518. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3519. */
  3520. public void setYffbt7(String yffbt7) {
  3521. this.yffbt7 = yffbt7 == null ? null : yffbt7.trim();
  3522. }
  3523. /**
  3524. * This method was generated by Apache iBATIS ibator.
  3525. * This method returns the value of the database column dp_sjlr_sy.BYTTS
  3526. *
  3527. * @return the value of dp_sjlr_sy.BYTTS
  3528. *
  3529. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3530. */
  3531. public String getBytts() {
  3532. return bytts;
  3533. }
  3534. /**
  3535. * This method was generated by Apache iBATIS ibator.
  3536. * This method sets the value of the database column dp_sjlr_sy.BYTTS
  3537. *
  3538. * @param bytts the value for dp_sjlr_sy.BYTTS
  3539. *
  3540. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3541. */
  3542. public void setBytts(String bytts) {
  3543. this.bytts = bytts == null ? null : bytts.trim();
  3544. }
  3545. /**
  3546. * This method was generated by Apache iBATIS ibator.
  3547. * This method returns the value of the database column dp_sjlr_sy.YFTTS
  3548. *
  3549. * @return the value of dp_sjlr_sy.YFTTS
  3550. *
  3551. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3552. */
  3553. public String getYftts() {
  3554. return yftts;
  3555. }
  3556. /**
  3557. * This method was generated by Apache iBATIS ibator.
  3558. * This method sets the value of the database column dp_sjlr_sy.YFTTS
  3559. *
  3560. * @param yftts the value for dp_sjlr_sy.YFTTS
  3561. *
  3562. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3563. */
  3564. public void setYftts(String yftts) {
  3565. this.yftts = yftts == null ? null : yftts.trim();
  3566. }
  3567. /**
  3568. * This method was generated by Apache iBATIS ibator.
  3569. * This method returns the value of the database column dp_sjlr_sy.BYTTSZB
  3570. *
  3571. * @return the value of dp_sjlr_sy.BYTTSZB
  3572. *
  3573. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3574. */
  3575. public String getByttszb() {
  3576. return byttszb;
  3577. }
  3578. /**
  3579. * This method was generated by Apache iBATIS ibator.
  3580. * This method sets the value of the database column dp_sjlr_sy.BYTTSZB
  3581. *
  3582. * @param byttszb the value for dp_sjlr_sy.BYTTSZB
  3583. *
  3584. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3585. */
  3586. public void setByttszb(String byttszb) {
  3587. this.byttszb = byttszb == null ? null : byttszb.trim();
  3588. }
  3589. /**
  3590. * This method was generated by Apache iBATIS ibator.
  3591. * This method returns the value of the database column dp_sjlr_sy.QYYTTSZB
  3592. *
  3593. * @return the value of dp_sjlr_sy.QYYTTSZB
  3594. *
  3595. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3596. */
  3597. public String getQyyttszb() {
  3598. return qyyttszb;
  3599. }
  3600. /**
  3601. * This method was generated by Apache iBATIS ibator.
  3602. * This method sets the value of the database column dp_sjlr_sy.QYYTTSZB
  3603. *
  3604. * @param qyyttszb the value for dp_sjlr_sy.QYYTTSZB
  3605. *
  3606. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3607. */
  3608. public void setQyyttszb(String qyyttszb) {
  3609. this.qyyttszb = qyyttszb == null ? null : qyyttszb.trim();
  3610. }
  3611. /**
  3612. * This method was generated by Apache iBATIS ibator.
  3613. * This method returns the value of the database column dp_sjlr_sy.QEYTTSZB
  3614. *
  3615. * @return the value of dp_sjlr_sy.QEYTTSZB
  3616. *
  3617. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3618. */
  3619. public String getQeyttszb() {
  3620. return qeyttszb;
  3621. }
  3622. /**
  3623. * This method was generated by Apache iBATIS ibator.
  3624. * This method sets the value of the database column dp_sjlr_sy.QEYTTSZB
  3625. *
  3626. * @param qeyttszb the value for dp_sjlr_sy.QEYTTSZB
  3627. *
  3628. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3629. */
  3630. public void setQeyttszb(String qeyttszb) {
  3631. this.qeyttszb = qeyttszb == null ? null : qeyttszb.trim();
  3632. }
  3633. /**
  3634. * This method was generated by Apache iBATIS ibator.
  3635. * This method returns the value of the database column dp_sjlr_sy.QSYTTSZB
  3636. *
  3637. * @return the value of dp_sjlr_sy.QSYTTSZB
  3638. *
  3639. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3640. */
  3641. public String getQsyttszb() {
  3642. return qsyttszb;
  3643. }
  3644. /**
  3645. * This method was generated by Apache iBATIS ibator.
  3646. * This method sets the value of the database column dp_sjlr_sy.QSYTTSZB
  3647. *
  3648. * @param qsyttszb the value for dp_sjlr_sy.QSYTTSZB
  3649. *
  3650. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3651. */
  3652. public void setQsyttszb(String qsyttszb) {
  3653. this.qsyttszb = qsyttszb == null ? null : qsyttszb.trim();
  3654. }
  3655. /**
  3656. * This method was generated by Apache iBATIS ibator.
  3657. * This method returns the value of the database column dp_sjlr_sy.MZTTS
  3658. *
  3659. * @return the value of dp_sjlr_sy.MZTTS
  3660. *
  3661. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3662. */
  3663. public String getMztts() {
  3664. return mztts;
  3665. }
  3666. /**
  3667. * This method was generated by Apache iBATIS ibator.
  3668. * This method sets the value of the database column dp_sjlr_sy.MZTTS
  3669. *
  3670. * @param mztts the value for dp_sjlr_sy.MZTTS
  3671. *
  3672. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3673. */
  3674. public void setMztts(String mztts) {
  3675. this.mztts = mztts == null ? null : mztts.trim();
  3676. }
  3677. /**
  3678. * This method was generated by Apache iBATIS ibator.
  3679. * This method returns the value of the database column dp_sjlr_sy.GZTTS
  3680. *
  3681. * @return the value of dp_sjlr_sy.GZTTS
  3682. *
  3683. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3684. */
  3685. public String getGztts() {
  3686. return gztts;
  3687. }
  3688. /**
  3689. * This method was generated by Apache iBATIS ibator.
  3690. * This method sets the value of the database column dp_sjlr_sy.GZTTS
  3691. *
  3692. * @param gztts the value for dp_sjlr_sy.GZTTS
  3693. *
  3694. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3695. */
  3696. public void setGztts(String gztts) {
  3697. this.gztts = gztts == null ? null : gztts.trim();
  3698. }
  3699. /**
  3700. * This method was generated by Apache iBATIS ibator.
  3701. * This method returns the value of the database column dp_sjlr_sy.WEEK1
  3702. *
  3703. * @return the value of dp_sjlr_sy.WEEK1
  3704. *
  3705. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3706. */
  3707. public Integer getWeek1() {
  3708. return week1;
  3709. }
  3710. /**
  3711. * This method was generated by Apache iBATIS ibator.
  3712. * This method sets the value of the database column dp_sjlr_sy.WEEK1
  3713. *
  3714. * @param week1 the value for dp_sjlr_sy.WEEK1
  3715. *
  3716. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3717. */
  3718. public void setWeek1(Integer week1) {
  3719. this.week1 = week1;
  3720. }
  3721. /**
  3722. * This method was generated by Apache iBATIS ibator.
  3723. * This method returns the value of the database column dp_sjlr_sy.WEEK2
  3724. *
  3725. * @return the value of dp_sjlr_sy.WEEK2
  3726. *
  3727. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3728. */
  3729. public Integer getWeek2() {
  3730. return week2;
  3731. }
  3732. /**
  3733. * This method was generated by Apache iBATIS ibator.
  3734. * This method sets the value of the database column dp_sjlr_sy.WEEK2
  3735. *
  3736. * @param week2 the value for dp_sjlr_sy.WEEK2
  3737. *
  3738. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3739. */
  3740. public void setWeek2(Integer week2) {
  3741. this.week2 = week2;
  3742. }
  3743. /**
  3744. * This method was generated by Apache iBATIS ibator.
  3745. * This method returns the value of the database column dp_sjlr_sy.WEEK3
  3746. *
  3747. * @return the value of dp_sjlr_sy.WEEK3
  3748. *
  3749. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3750. */
  3751. public Integer getWeek3() {
  3752. return week3;
  3753. }
  3754. /**
  3755. * This method was generated by Apache iBATIS ibator.
  3756. * This method sets the value of the database column dp_sjlr_sy.WEEK3
  3757. *
  3758. * @param week3 the value for dp_sjlr_sy.WEEK3
  3759. *
  3760. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3761. */
  3762. public void setWeek3(Integer week3) {
  3763. this.week3 = week3;
  3764. }
  3765. /**
  3766. * This method was generated by Apache iBATIS ibator.
  3767. * This method returns the value of the database column dp_sjlr_sy.WEEK4
  3768. *
  3769. * @return the value of dp_sjlr_sy.WEEK4
  3770. *
  3771. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3772. */
  3773. public Integer getWeek4() {
  3774. return week4;
  3775. }
  3776. /**
  3777. * This method was generated by Apache iBATIS ibator.
  3778. * This method sets the value of the database column dp_sjlr_sy.WEEK4
  3779. *
  3780. * @param week4 the value for dp_sjlr_sy.WEEK4
  3781. *
  3782. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3783. */
  3784. public void setWeek4(Integer week4) {
  3785. this.week4 = week4;
  3786. }
  3787. /**
  3788. * This method was generated by Apache iBATIS ibator.
  3789. * This method returns the value of the database column dp_sjlr_sy.WEEK5
  3790. *
  3791. * @return the value of dp_sjlr_sy.WEEK5
  3792. *
  3793. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3794. */
  3795. public Integer getWeek5() {
  3796. return week5;
  3797. }
  3798. /**
  3799. * This method was generated by Apache iBATIS ibator.
  3800. * This method sets the value of the database column dp_sjlr_sy.WEEK5
  3801. *
  3802. * @param week5 the value for dp_sjlr_sy.WEEK5
  3803. *
  3804. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3805. */
  3806. public void setWeek5(Integer week5) {
  3807. this.week5 = week5;
  3808. }
  3809. /**
  3810. * This method was generated by Apache iBATIS ibator.
  3811. * This method returns the value of the database column dp_sjlr_sy.WEEK6
  3812. *
  3813. * @return the value of dp_sjlr_sy.WEEK6
  3814. *
  3815. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3816. */
  3817. public Integer getWeek6() {
  3818. return week6;
  3819. }
  3820. /**
  3821. * This method was generated by Apache iBATIS ibator.
  3822. * This method sets the value of the database column dp_sjlr_sy.WEEK6
  3823. *
  3824. * @param week6 the value for dp_sjlr_sy.WEEK6
  3825. *
  3826. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3827. */
  3828. public void setWeek6(Integer week6) {
  3829. this.week6 = week6;
  3830. }
  3831. /**
  3832. * This method was generated by Apache iBATIS ibator.
  3833. * This method returns the value of the database column dp_sjlr_sy.WEEK7
  3834. *
  3835. * @return the value of dp_sjlr_sy.WEEK7
  3836. *
  3837. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3838. */
  3839. public Integer getWeek7() {
  3840. return week7;
  3841. }
  3842. /**
  3843. * This method was generated by Apache iBATIS ibator.
  3844. * This method sets the value of the database column dp_sjlr_sy.WEEK7
  3845. *
  3846. * @param week7 the value for dp_sjlr_sy.WEEK7
  3847. *
  3848. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3849. */
  3850. public void setWeek7(Integer week7) {
  3851. this.week7 = week7;
  3852. }
  3853. /**
  3854. * This method was generated by Apache iBATIS ibator.
  3855. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE1
  3856. *
  3857. * @return the value of dp_sjlr_sy.WEEKPRICE1
  3858. *
  3859. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3860. */
  3861. public String getWeekprice1() {
  3862. return weekprice1;
  3863. }
  3864. /**
  3865. * This method was generated by Apache iBATIS ibator.
  3866. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE1
  3867. *
  3868. * @param weekprice1 the value for dp_sjlr_sy.WEEKPRICE1
  3869. *
  3870. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3871. */
  3872. public void setWeekprice1(String weekprice1) {
  3873. this.weekprice1 = weekprice1 == null ? null : weekprice1.trim();
  3874. }
  3875. /**
  3876. * This method was generated by Apache iBATIS ibator.
  3877. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE2
  3878. *
  3879. * @return the value of dp_sjlr_sy.WEEKPRICE2
  3880. *
  3881. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3882. */
  3883. public String getWeekprice2() {
  3884. return weekprice2;
  3885. }
  3886. /**
  3887. * This method was generated by Apache iBATIS ibator.
  3888. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE2
  3889. *
  3890. * @param weekprice2 the value for dp_sjlr_sy.WEEKPRICE2
  3891. *
  3892. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3893. */
  3894. public void setWeekprice2(String weekprice2) {
  3895. this.weekprice2 = weekprice2 == null ? null : weekprice2.trim();
  3896. }
  3897. /**
  3898. * This method was generated by Apache iBATIS ibator.
  3899. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE3
  3900. *
  3901. * @return the value of dp_sjlr_sy.WEEKPRICE3
  3902. *
  3903. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3904. */
  3905. public String getWeekprice3() {
  3906. return weekprice3;
  3907. }
  3908. /**
  3909. * This method was generated by Apache iBATIS ibator.
  3910. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE3
  3911. *
  3912. * @param weekprice3 the value for dp_sjlr_sy.WEEKPRICE3
  3913. *
  3914. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3915. */
  3916. public void setWeekprice3(String weekprice3) {
  3917. this.weekprice3 = weekprice3 == null ? null : weekprice3.trim();
  3918. }
  3919. /**
  3920. * This method was generated by Apache iBATIS ibator.
  3921. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE4
  3922. *
  3923. * @return the value of dp_sjlr_sy.WEEKPRICE4
  3924. *
  3925. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3926. */
  3927. public String getWeekprice4() {
  3928. return weekprice4;
  3929. }
  3930. /**
  3931. * This method was generated by Apache iBATIS ibator.
  3932. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE4
  3933. *
  3934. * @param weekprice4 the value for dp_sjlr_sy.WEEKPRICE4
  3935. *
  3936. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3937. */
  3938. public void setWeekprice4(String weekprice4) {
  3939. this.weekprice4 = weekprice4 == null ? null : weekprice4.trim();
  3940. }
  3941. /**
  3942. * This method was generated by Apache iBATIS ibator.
  3943. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE5
  3944. *
  3945. * @return the value of dp_sjlr_sy.WEEKPRICE5
  3946. *
  3947. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3948. */
  3949. public String getWeekprice5() {
  3950. return weekprice5;
  3951. }
  3952. /**
  3953. * This method was generated by Apache iBATIS ibator.
  3954. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE5
  3955. *
  3956. * @param weekprice5 the value for dp_sjlr_sy.WEEKPRICE5
  3957. *
  3958. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3959. */
  3960. public void setWeekprice5(String weekprice5) {
  3961. this.weekprice5 = weekprice5 == null ? null : weekprice5.trim();
  3962. }
  3963. /**
  3964. * This method was generated by Apache iBATIS ibator.
  3965. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE6
  3966. *
  3967. * @return the value of dp_sjlr_sy.WEEKPRICE6
  3968. *
  3969. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3970. */
  3971. public String getWeekprice6() {
  3972. return weekprice6;
  3973. }
  3974. /**
  3975. * This method was generated by Apache iBATIS ibator.
  3976. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE6
  3977. *
  3978. * @param weekprice6 the value for dp_sjlr_sy.WEEKPRICE6
  3979. *
  3980. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3981. */
  3982. public void setWeekprice6(String weekprice6) {
  3983. this.weekprice6 = weekprice6 == null ? null : weekprice6.trim();
  3984. }
  3985. /**
  3986. * This method was generated by Apache iBATIS ibator.
  3987. * This method returns the value of the database column dp_sjlr_sy.WEEKPRICE7
  3988. *
  3989. * @return the value of dp_sjlr_sy.WEEKPRICE7
  3990. *
  3991. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  3992. */
  3993. public String getWeekprice7() {
  3994. return weekprice7;
  3995. }
  3996. /**
  3997. * This method was generated by Apache iBATIS ibator.
  3998. * This method sets the value of the database column dp_sjlr_sy.WEEKPRICE7
  3999. *
  4000. * @param weekprice7 the value for dp_sjlr_sy.WEEKPRICE7
  4001. *
  4002. * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
  4003. */
  4004. public void setWeekprice7(String weekprice7) {
  4005. this.weekprice7 = weekprice7 == null ? null : weekprice7.trim();
  4006. }
  4007. }