EmsWAiHourSumTab1Mapper.xml 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.steerinfo.ems.emswaihoursumtab1.mapper.EmsWAiHourSumTab1Mapper">
  4. <resultMap id="BaseResultMap" type="com.steerinfo.ems.emswaihoursumtab1.model.EmsWAiHourSumTab1">
  5. <id column="CLOCK" jdbcType="VARCHAR" property="clock" />
  6. <result column="INSERT_TIME" jdbcType="TIMESTAMP" property="insertTime" />
  7. <result column="TAG1" jdbcType="FLOAT" property="tag1" />
  8. <result column="TAG2" jdbcType="FLOAT" property="tag2" />
  9. <result column="TAG3" jdbcType="FLOAT" property="tag3" />
  10. <result column="TAG4" jdbcType="FLOAT" property="tag4" />
  11. <result column="TAG5" jdbcType="FLOAT" property="tag5" />
  12. <result column="TAG6" jdbcType="FLOAT" property="tag6" />
  13. <result column="TAG7" jdbcType="FLOAT" property="tag7" />
  14. <result column="TAG8" jdbcType="FLOAT" property="tag8" />
  15. <result column="TAG9" jdbcType="FLOAT" property="tag9" />
  16. <result column="TAG10" jdbcType="FLOAT" property="tag10" />
  17. <result column="TAG11" jdbcType="FLOAT" property="tag11" />
  18. <result column="TAG12" jdbcType="FLOAT" property="tag12" />
  19. <result column="TAG13" jdbcType="FLOAT" property="tag13" />
  20. <result column="TAG14" jdbcType="FLOAT" property="tag14" />
  21. <result column="TAG15" jdbcType="FLOAT" property="tag15" />
  22. <result column="TAG16" jdbcType="FLOAT" property="tag16" />
  23. <result column="TAG17" jdbcType="FLOAT" property="tag17" />
  24. <result column="TAG18" jdbcType="FLOAT" property="tag18" />
  25. <result column="TAG19" jdbcType="FLOAT" property="tag19" />
  26. <result column="TAG20" jdbcType="FLOAT" property="tag20" />
  27. <result column="TAG21" jdbcType="FLOAT" property="tag21" />
  28. <result column="TAG22" jdbcType="FLOAT" property="tag22" />
  29. <result column="TAG23" jdbcType="FLOAT" property="tag23" />
  30. <result column="TAG24" jdbcType="FLOAT" property="tag24" />
  31. <result column="TAG25" jdbcType="FLOAT" property="tag25" />
  32. <result column="TAG26" jdbcType="FLOAT" property="tag26" />
  33. <result column="TAG27" jdbcType="FLOAT" property="tag27" />
  34. <result column="TAG28" jdbcType="FLOAT" property="tag28" />
  35. <result column="TAG29" jdbcType="FLOAT" property="tag29" />
  36. <result column="TAG30" jdbcType="FLOAT" property="tag30" />
  37. <result column="TAG31" jdbcType="FLOAT" property="tag31" />
  38. <result column="TAG32" jdbcType="FLOAT" property="tag32" />
  39. <result column="TAG33" jdbcType="FLOAT" property="tag33" />
  40. <result column="TAG34" jdbcType="FLOAT" property="tag34" />
  41. <result column="TAG35" jdbcType="FLOAT" property="tag35" />
  42. <result column="TAG36" jdbcType="FLOAT" property="tag36" />
  43. <result column="TAG37" jdbcType="FLOAT" property="tag37" />
  44. <result column="TAG38" jdbcType="FLOAT" property="tag38" />
  45. <result column="TAG39" jdbcType="FLOAT" property="tag39" />
  46. <result column="TAG40" jdbcType="FLOAT" property="tag40" />
  47. <result column="TAG41" jdbcType="FLOAT" property="tag41" />
  48. <result column="TAG42" jdbcType="FLOAT" property="tag42" />
  49. <result column="TAG43" jdbcType="FLOAT" property="tag43" />
  50. <result column="TAG44" jdbcType="FLOAT" property="tag44" />
  51. <result column="TAG46" jdbcType="FLOAT" property="tag46" />
  52. <result column="TAG47" jdbcType="FLOAT" property="tag47" />
  53. <result column="TAG48" jdbcType="FLOAT" property="tag48" />
  54. <result column="TAG49" jdbcType="FLOAT" property="tag49" />
  55. <result column="TAG50" jdbcType="FLOAT" property="tag50" />
  56. <result column="TAG51" jdbcType="FLOAT" property="tag51" />
  57. <result column="TAG52" jdbcType="FLOAT" property="tag52" />
  58. <result column="TAG53" jdbcType="FLOAT" property="tag53" />
  59. <result column="TAG54" jdbcType="FLOAT" property="tag54" />
  60. <result column="TAG55" jdbcType="FLOAT" property="tag55" />
  61. <result column="TAG56" jdbcType="FLOAT" property="tag56" />
  62. <result column="TAG57" jdbcType="FLOAT" property="tag57" />
  63. <result column="TAG58" jdbcType="FLOAT" property="tag58" />
  64. <result column="TAG59" jdbcType="FLOAT" property="tag59" />
  65. <result column="TAG60" jdbcType="FLOAT" property="tag60" />
  66. <result column="TAG61" jdbcType="FLOAT" property="tag61" />
  67. <result column="TAG62" jdbcType="FLOAT" property="tag62" />
  68. <result column="TAG63" jdbcType="FLOAT" property="tag63" />
  69. <result column="TAG64" jdbcType="FLOAT" property="tag64" />
  70. <result column="TAG65" jdbcType="FLOAT" property="tag65" />
  71. <result column="TAG66" jdbcType="FLOAT" property="tag66" />
  72. <result column="TAG67" jdbcType="FLOAT" property="tag67" />
  73. <result column="TAG68" jdbcType="FLOAT" property="tag68" />
  74. <result column="TAG69" jdbcType="FLOAT" property="tag69" />
  75. <result column="TAG70" jdbcType="FLOAT" property="tag70" />
  76. <result column="TAG71" jdbcType="FLOAT" property="tag71" />
  77. <result column="TAG72" jdbcType="FLOAT" property="tag72" />
  78. <result column="TAG73" jdbcType="FLOAT" property="tag73" />
  79. <result column="TAG74" jdbcType="FLOAT" property="tag74" />
  80. <result column="TAG75" jdbcType="FLOAT" property="tag75" />
  81. <result column="TAG76" jdbcType="FLOAT" property="tag76" />
  82. <result column="TAG77" jdbcType="FLOAT" property="tag77" />
  83. <result column="TAG78" jdbcType="FLOAT" property="tag78" />
  84. <result column="TAG79" jdbcType="FLOAT" property="tag79" />
  85. <result column="TAG80" jdbcType="FLOAT" property="tag80" />
  86. <result column="TAG81" jdbcType="FLOAT" property="tag81" />
  87. <result column="TAG82" jdbcType="FLOAT" property="tag82" />
  88. <result column="TAG83" jdbcType="FLOAT" property="tag83" />
  89. <result column="TAG84" jdbcType="FLOAT" property="tag84" />
  90. <result column="TAG85" jdbcType="FLOAT" property="tag85" />
  91. <result column="TAG86" jdbcType="FLOAT" property="tag86" />
  92. <result column="TAG87" jdbcType="FLOAT" property="tag87" />
  93. <result column="TAG88" jdbcType="FLOAT" property="tag88" />
  94. <result column="TAG89" jdbcType="FLOAT" property="tag89" />
  95. <result column="TAG90" jdbcType="FLOAT" property="tag90" />
  96. <result column="TAG91" jdbcType="FLOAT" property="tag91" />
  97. <result column="TAG92" jdbcType="FLOAT" property="tag92" />
  98. <result column="TAG93" jdbcType="FLOAT" property="tag93" />
  99. <result column="TAG94" jdbcType="FLOAT" property="tag94" />
  100. <result column="TAG95" jdbcType="FLOAT" property="tag95" />
  101. <result column="TAG96" jdbcType="FLOAT" property="tag96" />
  102. <result column="TAG97" jdbcType="FLOAT" property="tag97" />
  103. <result column="TAG98" jdbcType="FLOAT" property="tag98" />
  104. <result column="TAG99" jdbcType="FLOAT" property="tag99" />
  105. <result column="TAG100" jdbcType="FLOAT" property="tag100" />
  106. <result column="TAG101" jdbcType="FLOAT" property="tag101" />
  107. <result column="TAG45" jdbcType="FLOAT" property="tag45" />
  108. <result column="TAG102" jdbcType="FLOAT" property="tag102" />
  109. <result column="TAG103" jdbcType="FLOAT" property="tag103" />
  110. <result column="TAG104" jdbcType="FLOAT" property="tag104" />
  111. <result column="TAG105" jdbcType="FLOAT" property="tag105" />
  112. <result column="TAG106" jdbcType="FLOAT" property="tag106" />
  113. <result column="TAG107" jdbcType="FLOAT" property="tag107" />
  114. <result column="TAG108" jdbcType="FLOAT" property="tag108" />
  115. <result column="TAG109" jdbcType="FLOAT" property="tag109" />
  116. <result column="TAG110" jdbcType="FLOAT" property="tag110" />
  117. <result column="TAG111" jdbcType="FLOAT" property="tag111" />
  118. <result column="TAG112" jdbcType="FLOAT" property="tag112" />
  119. <result column="TAG113" jdbcType="FLOAT" property="tag113" />
  120. <result column="TAG114" jdbcType="FLOAT" property="tag114" />
  121. <result column="TAG115" jdbcType="FLOAT" property="tag115" />
  122. <result column="TAG116" jdbcType="FLOAT" property="tag116" />
  123. <result column="TAG117" jdbcType="FLOAT" property="tag117" />
  124. <result column="TAG118" jdbcType="FLOAT" property="tag118" />
  125. <result column="TAG119" jdbcType="FLOAT" property="tag119" />
  126. <result column="TAG120" jdbcType="FLOAT" property="tag120" />
  127. <result column="TAG121" jdbcType="FLOAT" property="tag121" />
  128. <result column="TAG122" jdbcType="FLOAT" property="tag122" />
  129. <result column="TAG123" jdbcType="FLOAT" property="tag123" />
  130. <result column="TAG124" jdbcType="FLOAT" property="tag124" />
  131. <result column="TAG125" jdbcType="FLOAT" property="tag125" />
  132. <result column="TAG126" jdbcType="FLOAT" property="tag126" />
  133. <result column="TAG127" jdbcType="FLOAT" property="tag127" />
  134. <result column="TAG128" jdbcType="FLOAT" property="tag128" />
  135. <result column="TAG129" jdbcType="FLOAT" property="tag129" />
  136. <result column="TAG130" jdbcType="FLOAT" property="tag130" />
  137. <result column="TAG131" jdbcType="FLOAT" property="tag131" />
  138. <result column="TAG132" jdbcType="FLOAT" property="tag132" />
  139. <result column="TAG133" jdbcType="FLOAT" property="tag133" />
  140. <result column="TAG134" jdbcType="FLOAT" property="tag134" />
  141. <result column="TAG135" jdbcType="FLOAT" property="tag135" />
  142. <result column="TAG136" jdbcType="FLOAT" property="tag136" />
  143. <result column="TAG137" jdbcType="FLOAT" property="tag137" />
  144. <result column="TAG138" jdbcType="FLOAT" property="tag138" />
  145. <result column="TAG139" jdbcType="FLOAT" property="tag139" />
  146. <result column="TAG140" jdbcType="FLOAT" property="tag140" />
  147. <result column="TAG141" jdbcType="FLOAT" property="tag141" />
  148. <result column="TAG142" jdbcType="FLOAT" property="tag142" />
  149. <result column="TAG143" jdbcType="FLOAT" property="tag143" />
  150. <result column="TAG144" jdbcType="FLOAT" property="tag144" />
  151. <result column="TAG145" jdbcType="FLOAT" property="tag145" />
  152. <result column="TAG146" jdbcType="FLOAT" property="tag146" />
  153. <result column="TAG147" jdbcType="FLOAT" property="tag147" />
  154. <result column="TAG148" jdbcType="FLOAT" property="tag148" />
  155. <result column="TAG149" jdbcType="FLOAT" property="tag149" />
  156. <result column="TAG150" jdbcType="FLOAT" property="tag150" />
  157. <result column="TAG151" jdbcType="FLOAT" property="tag151" />
  158. <result column="TAG152" jdbcType="FLOAT" property="tag152" />
  159. <result column="TAG153" jdbcType="FLOAT" property="tag153" />
  160. <result column="TAG154" jdbcType="FLOAT" property="tag154" />
  161. <result column="TAG155" jdbcType="FLOAT" property="tag155" />
  162. <result column="TAG156" jdbcType="FLOAT" property="tag156" />
  163. <result column="TAG157" jdbcType="FLOAT" property="tag157" />
  164. <result column="TAG158" jdbcType="FLOAT" property="tag158" />
  165. <result column="TAG159" jdbcType="FLOAT" property="tag159" />
  166. <result column="TAG160" jdbcType="FLOAT" property="tag160" />
  167. </resultMap>
  168. <sql id="columns">
  169. CLOCK, INSERT_TIME, TAG1, TAG2, TAG3, TAG4, TAG5, TAG6, TAG7, TAG8, TAG9, TAG10,
  170. TAG11, TAG12, TAG13, TAG14, TAG15, TAG16, TAG17, TAG18, TAG19, TAG20, TAG21, TAG22,
  171. TAG23, TAG24, TAG25, TAG26, TAG27, TAG28, TAG29, TAG30, TAG31, TAG32, TAG33, TAG34,
  172. TAG35, TAG36, TAG37, TAG38, TAG39, TAG40, TAG41, TAG42, TAG43, TAG44, TAG46, TAG47,
  173. TAG48, TAG49, TAG50, TAG51, TAG52, TAG53, TAG54, TAG55, TAG56, TAG57, TAG58, TAG59,
  174. TAG60, TAG61, TAG62, TAG63, TAG64, TAG65, TAG66, TAG67, TAG68, TAG69, TAG70, TAG71,
  175. TAG72, TAG73, TAG74, TAG75, TAG76, TAG77, TAG78, TAG79, TAG80, TAG81, TAG82, TAG83,
  176. TAG84, TAG85, TAG86, TAG87, TAG88, TAG89, TAG90, TAG91, TAG92, TAG93, TAG94, TAG95,
  177. TAG96, TAG97, TAG98, TAG99, TAG100, TAG101, TAG45, TAG102, TAG103, TAG104, TAG105,
  178. TAG106, TAG107, TAG108, TAG109, TAG110, TAG111, TAG112, TAG113, TAG114, TAG115, TAG116,
  179. TAG117, TAG118, TAG119, TAG120, TAG121, TAG122, TAG123, TAG124, TAG125, TAG126, TAG127,
  180. TAG128, TAG129, TAG130, TAG131, TAG132, TAG133, TAG134, TAG135, TAG136, TAG137, TAG138,
  181. TAG139, TAG140, TAG141, TAG142, TAG143, TAG144, TAG145, TAG146, TAG147, TAG148, TAG149,
  182. TAG150, TAG151, TAG152, TAG153, TAG154, TAG155, TAG156, TAG157, TAG158, TAG159, TAG160
  183. </sql>
  184. <sql id="columns_alias">
  185. t.CLOCK, t.INSERT_TIME, t.TAG1, t.TAG2, t.TAG3, t.TAG4, t.TAG5, t.TAG6, t.TAG7, t.TAG8,
  186. t.TAG9, t.TAG10, t.TAG11, t.TAG12, t.TAG13, t.TAG14, t.TAG15, t.TAG16, t.TAG17, t.TAG18,
  187. t.TAG19, t.TAG20, t.TAG21, t.TAG22, t.TAG23, t.TAG24, t.TAG25, t.TAG26, t.TAG27,
  188. t.TAG28, t.TAG29, t.TAG30, t.TAG31, t.TAG32, t.TAG33, t.TAG34, t.TAG35, t.TAG36,
  189. t.TAG37, t.TAG38, t.TAG39, t.TAG40, t.TAG41, t.TAG42, t.TAG43, t.TAG44, t.TAG46,
  190. t.TAG47, t.TAG48, t.TAG49, t.TAG50, t.TAG51, t.TAG52, t.TAG53, t.TAG54, t.TAG55,
  191. t.TAG56, t.TAG57, t.TAG58, t.TAG59, t.TAG60, t.TAG61, t.TAG62, t.TAG63, t.TAG64,
  192. t.TAG65, t.TAG66, t.TAG67, t.TAG68, t.TAG69, t.TAG70, t.TAG71, t.TAG72, t.TAG73,
  193. t.TAG74, t.TAG75, t.TAG76, t.TAG77, t.TAG78, t.TAG79, t.TAG80, t.TAG81, t.TAG82,
  194. t.TAG83, t.TAG84, t.TAG85, t.TAG86, t.TAG87, t.TAG88, t.TAG89, t.TAG90, t.TAG91,
  195. t.TAG92, t.TAG93, t.TAG94, t.TAG95, t.TAG96, t.TAG97, t.TAG98, t.TAG99, t.TAG100,
  196. t.TAG101, t.TAG45, t.TAG102, t.TAG103, t.TAG104, t.TAG105, t.TAG106, t.TAG107, t.TAG108,
  197. t.TAG109, t.TAG110, t.TAG111, t.TAG112, t.TAG113, t.TAG114, t.TAG115, t.TAG116, t.TAG117,
  198. t.TAG118, t.TAG119, t.TAG120, t.TAG121, t.TAG122, t.TAG123, t.TAG124, t.TAG125, t.TAG126,
  199. t.TAG127, t.TAG128, t.TAG129, t.TAG130, t.TAG131, t.TAG132, t.TAG133, t.TAG134, t.TAG135,
  200. t.TAG136, t.TAG137, t.TAG138, t.TAG139, t.TAG140, t.TAG141, t.TAG142, t.TAG143, t.TAG144,
  201. t.TAG145, t.TAG146, t.TAG147, t.TAG148, t.TAG149, t.TAG150, t.TAG151, t.TAG152, t.TAG153,
  202. t.TAG154, t.TAG155, t.TAG156, t.TAG157, t.TAG158, t.TAG159, t.TAG160
  203. </sql>
  204. <sql id="select">
  205. SELECT <include refid="columns"/> FROM EMS_W_AI_HOUR_SUM_TAB1
  206. </sql>
  207. <sql id="select_alias">
  208. SELECT <include refid="columns_alias"/> FROM EMS_W_AI_HOUR_SUM_TAB1 t
  209. </sql>
  210. <sql id="where">
  211. <where>
  212. <if test="clock != null and clock != ''">
  213. and CLOCK = #{clock}
  214. </if>
  215. <if test="insertTime != null">
  216. and TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = #{insertTime}
  217. </if>
  218. <if test="tag1 != null">
  219. and TAG1 = #{tag1}
  220. </if>
  221. <if test="tag2 != null">
  222. and TAG2 = #{tag2}
  223. </if>
  224. <if test="tag3 != null">
  225. and TAG3 = #{tag3}
  226. </if>
  227. <if test="tag4 != null">
  228. and TAG4 = #{tag4}
  229. </if>
  230. <if test="tag5 != null">
  231. and TAG5 = #{tag5}
  232. </if>
  233. <if test="tag6 != null">
  234. and TAG6 = #{tag6}
  235. </if>
  236. <if test="tag7 != null">
  237. and TAG7 = #{tag7}
  238. </if>
  239. <if test="tag8 != null">
  240. and TAG8 = #{tag8}
  241. </if>
  242. <if test="tag9 != null">
  243. and TAG9 = #{tag9}
  244. </if>
  245. <if test="tag10 != null">
  246. and TAG10 = #{tag10}
  247. </if>
  248. <if test="tag11 != null">
  249. and TAG11 = #{tag11}
  250. </if>
  251. <if test="tag12 != null">
  252. and TAG12 = #{tag12}
  253. </if>
  254. <if test="tag13 != null">
  255. and TAG13 = #{tag13}
  256. </if>
  257. <if test="tag14 != null">
  258. and TAG14 = #{tag14}
  259. </if>
  260. <if test="tag15 != null">
  261. and TAG15 = #{tag15}
  262. </if>
  263. <if test="tag16 != null">
  264. and TAG16 = #{tag16}
  265. </if>
  266. <if test="tag17 != null">
  267. and TAG17 = #{tag17}
  268. </if>
  269. <if test="tag18 != null">
  270. and TAG18 = #{tag18}
  271. </if>
  272. <if test="tag19 != null">
  273. and TAG19 = #{tag19}
  274. </if>
  275. <if test="tag20 != null">
  276. and TAG20 = #{tag20}
  277. </if>
  278. <if test="tag21 != null">
  279. and TAG21 = #{tag21}
  280. </if>
  281. <if test="tag22 != null">
  282. and TAG22 = #{tag22}
  283. </if>
  284. <if test="tag23 != null">
  285. and TAG23 = #{tag23}
  286. </if>
  287. <if test="tag24 != null">
  288. and TAG24 = #{tag24}
  289. </if>
  290. <if test="tag25 != null">
  291. and TAG25 = #{tag25}
  292. </if>
  293. <if test="tag26 != null">
  294. and TAG26 = #{tag26}
  295. </if>
  296. <if test="tag27 != null">
  297. and TAG27 = #{tag27}
  298. </if>
  299. <if test="tag28 != null">
  300. and TAG28 = #{tag28}
  301. </if>
  302. <if test="tag29 != null">
  303. and TAG29 = #{tag29}
  304. </if>
  305. <if test="tag30 != null">
  306. and TAG30 = #{tag30}
  307. </if>
  308. <if test="tag31 != null">
  309. and TAG31 = #{tag31}
  310. </if>
  311. <if test="tag32 != null">
  312. and TAG32 = #{tag32}
  313. </if>
  314. <if test="tag33 != null">
  315. and TAG33 = #{tag33}
  316. </if>
  317. <if test="tag34 != null">
  318. and TAG34 = #{tag34}
  319. </if>
  320. <if test="tag35 != null">
  321. and TAG35 = #{tag35}
  322. </if>
  323. <if test="tag36 != null">
  324. and TAG36 = #{tag36}
  325. </if>
  326. <if test="tag37 != null">
  327. and TAG37 = #{tag37}
  328. </if>
  329. <if test="tag38 != null">
  330. and TAG38 = #{tag38}
  331. </if>
  332. <if test="tag39 != null">
  333. and TAG39 = #{tag39}
  334. </if>
  335. <if test="tag40 != null">
  336. and TAG40 = #{tag40}
  337. </if>
  338. <if test="tag41 != null">
  339. and TAG41 = #{tag41}
  340. </if>
  341. <if test="tag42 != null">
  342. and TAG42 = #{tag42}
  343. </if>
  344. <if test="tag43 != null">
  345. and TAG43 = #{tag43}
  346. </if>
  347. <if test="tag44 != null">
  348. and TAG44 = #{tag44}
  349. </if>
  350. <if test="tag46 != null">
  351. and TAG46 = #{tag46}
  352. </if>
  353. <if test="tag47 != null">
  354. and TAG47 = #{tag47}
  355. </if>
  356. <if test="tag48 != null">
  357. and TAG48 = #{tag48}
  358. </if>
  359. <if test="tag49 != null">
  360. and TAG49 = #{tag49}
  361. </if>
  362. <if test="tag50 != null">
  363. and TAG50 = #{tag50}
  364. </if>
  365. <if test="tag51 != null">
  366. and TAG51 = #{tag51}
  367. </if>
  368. <if test="tag52 != null">
  369. and TAG52 = #{tag52}
  370. </if>
  371. <if test="tag53 != null">
  372. and TAG53 = #{tag53}
  373. </if>
  374. <if test="tag54 != null">
  375. and TAG54 = #{tag54}
  376. </if>
  377. <if test="tag55 != null">
  378. and TAG55 = #{tag55}
  379. </if>
  380. <if test="tag56 != null">
  381. and TAG56 = #{tag56}
  382. </if>
  383. <if test="tag57 != null">
  384. and TAG57 = #{tag57}
  385. </if>
  386. <if test="tag58 != null">
  387. and TAG58 = #{tag58}
  388. </if>
  389. <if test="tag59 != null">
  390. and TAG59 = #{tag59}
  391. </if>
  392. <if test="tag60 != null">
  393. and TAG60 = #{tag60}
  394. </if>
  395. <if test="tag61 != null">
  396. and TAG61 = #{tag61}
  397. </if>
  398. <if test="tag62 != null">
  399. and TAG62 = #{tag62}
  400. </if>
  401. <if test="tag63 != null">
  402. and TAG63 = #{tag63}
  403. </if>
  404. <if test="tag64 != null">
  405. and TAG64 = #{tag64}
  406. </if>
  407. <if test="tag65 != null">
  408. and TAG65 = #{tag65}
  409. </if>
  410. <if test="tag66 != null">
  411. and TAG66 = #{tag66}
  412. </if>
  413. <if test="tag67 != null">
  414. and TAG67 = #{tag67}
  415. </if>
  416. <if test="tag68 != null">
  417. and TAG68 = #{tag68}
  418. </if>
  419. <if test="tag69 != null">
  420. and TAG69 = #{tag69}
  421. </if>
  422. <if test="tag70 != null">
  423. and TAG70 = #{tag70}
  424. </if>
  425. <if test="tag71 != null">
  426. and TAG71 = #{tag71}
  427. </if>
  428. <if test="tag72 != null">
  429. and TAG72 = #{tag72}
  430. </if>
  431. <if test="tag73 != null">
  432. and TAG73 = #{tag73}
  433. </if>
  434. <if test="tag74 != null">
  435. and TAG74 = #{tag74}
  436. </if>
  437. <if test="tag75 != null">
  438. and TAG75 = #{tag75}
  439. </if>
  440. <if test="tag76 != null">
  441. and TAG76 = #{tag76}
  442. </if>
  443. <if test="tag77 != null">
  444. and TAG77 = #{tag77}
  445. </if>
  446. <if test="tag78 != null">
  447. and TAG78 = #{tag78}
  448. </if>
  449. <if test="tag79 != null">
  450. and TAG79 = #{tag79}
  451. </if>
  452. <if test="tag80 != null">
  453. and TAG80 = #{tag80}
  454. </if>
  455. <if test="tag81 != null">
  456. and TAG81 = #{tag81}
  457. </if>
  458. <if test="tag82 != null">
  459. and TAG82 = #{tag82}
  460. </if>
  461. <if test="tag83 != null">
  462. and TAG83 = #{tag83}
  463. </if>
  464. <if test="tag84 != null">
  465. and TAG84 = #{tag84}
  466. </if>
  467. <if test="tag85 != null">
  468. and TAG85 = #{tag85}
  469. </if>
  470. <if test="tag86 != null">
  471. and TAG86 = #{tag86}
  472. </if>
  473. <if test="tag87 != null">
  474. and TAG87 = #{tag87}
  475. </if>
  476. <if test="tag88 != null">
  477. and TAG88 = #{tag88}
  478. </if>
  479. <if test="tag89 != null">
  480. and TAG89 = #{tag89}
  481. </if>
  482. <if test="tag90 != null">
  483. and TAG90 = #{tag90}
  484. </if>
  485. <if test="tag91 != null">
  486. and TAG91 = #{tag91}
  487. </if>
  488. <if test="tag92 != null">
  489. and TAG92 = #{tag92}
  490. </if>
  491. <if test="tag93 != null">
  492. and TAG93 = #{tag93}
  493. </if>
  494. <if test="tag94 != null">
  495. and TAG94 = #{tag94}
  496. </if>
  497. <if test="tag95 != null">
  498. and TAG95 = #{tag95}
  499. </if>
  500. <if test="tag96 != null">
  501. and TAG96 = #{tag96}
  502. </if>
  503. <if test="tag97 != null">
  504. and TAG97 = #{tag97}
  505. </if>
  506. <if test="tag98 != null">
  507. and TAG98 = #{tag98}
  508. </if>
  509. <if test="tag99 != null">
  510. and TAG99 = #{tag99}
  511. </if>
  512. <if test="tag100 != null">
  513. and TAG100 = #{tag100}
  514. </if>
  515. <if test="tag101 != null">
  516. and TAG101 = #{tag101}
  517. </if>
  518. <if test="tag45 != null">
  519. and TAG45 = #{tag45}
  520. </if>
  521. <if test="tag102 != null">
  522. and TAG102 = #{tag102}
  523. </if>
  524. <if test="tag103 != null">
  525. and TAG103 = #{tag103}
  526. </if>
  527. <if test="tag104 != null">
  528. and TAG104 = #{tag104}
  529. </if>
  530. <if test="tag105 != null">
  531. and TAG105 = #{tag105}
  532. </if>
  533. <if test="tag106 != null">
  534. and TAG106 = #{tag106}
  535. </if>
  536. <if test="tag107 != null">
  537. and TAG107 = #{tag107}
  538. </if>
  539. <if test="tag108 != null">
  540. and TAG108 = #{tag108}
  541. </if>
  542. <if test="tag109 != null">
  543. and TAG109 = #{tag109}
  544. </if>
  545. <if test="tag110 != null">
  546. and TAG110 = #{tag110}
  547. </if>
  548. <if test="tag111 != null">
  549. and TAG111 = #{tag111}
  550. </if>
  551. <if test="tag112 != null">
  552. and TAG112 = #{tag112}
  553. </if>
  554. <if test="tag113 != null">
  555. and TAG113 = #{tag113}
  556. </if>
  557. <if test="tag114 != null">
  558. and TAG114 = #{tag114}
  559. </if>
  560. <if test="tag115 != null">
  561. and TAG115 = #{tag115}
  562. </if>
  563. <if test="tag116 != null">
  564. and TAG116 = #{tag116}
  565. </if>
  566. <if test="tag117 != null">
  567. and TAG117 = #{tag117}
  568. </if>
  569. <if test="tag118 != null">
  570. and TAG118 = #{tag118}
  571. </if>
  572. <if test="tag119 != null">
  573. and TAG119 = #{tag119}
  574. </if>
  575. <if test="tag120 != null">
  576. and TAG120 = #{tag120}
  577. </if>
  578. <if test="tag121 != null">
  579. and TAG121 = #{tag121}
  580. </if>
  581. <if test="tag122 != null">
  582. and TAG122 = #{tag122}
  583. </if>
  584. <if test="tag123 != null">
  585. and TAG123 = #{tag123}
  586. </if>
  587. <if test="tag124 != null">
  588. and TAG124 = #{tag124}
  589. </if>
  590. <if test="tag125 != null">
  591. and TAG125 = #{tag125}
  592. </if>
  593. <if test="tag126 != null">
  594. and TAG126 = #{tag126}
  595. </if>
  596. <if test="tag127 != null">
  597. and TAG127 = #{tag127}
  598. </if>
  599. <if test="tag128 != null">
  600. and TAG128 = #{tag128}
  601. </if>
  602. <if test="tag129 != null">
  603. and TAG129 = #{tag129}
  604. </if>
  605. <if test="tag130 != null">
  606. and TAG130 = #{tag130}
  607. </if>
  608. <if test="tag131 != null">
  609. and TAG131 = #{tag131}
  610. </if>
  611. <if test="tag132 != null">
  612. and TAG132 = #{tag132}
  613. </if>
  614. <if test="tag133 != null">
  615. and TAG133 = #{tag133}
  616. </if>
  617. <if test="tag134 != null">
  618. and TAG134 = #{tag134}
  619. </if>
  620. <if test="tag135 != null">
  621. and TAG135 = #{tag135}
  622. </if>
  623. <if test="tag136 != null">
  624. and TAG136 = #{tag136}
  625. </if>
  626. <if test="tag137 != null">
  627. and TAG137 = #{tag137}
  628. </if>
  629. <if test="tag138 != null">
  630. and TAG138 = #{tag138}
  631. </if>
  632. <if test="tag139 != null">
  633. and TAG139 = #{tag139}
  634. </if>
  635. <if test="tag140 != null">
  636. and TAG140 = #{tag140}
  637. </if>
  638. <if test="tag141 != null">
  639. and TAG141 = #{tag141}
  640. </if>
  641. <if test="tag142 != null">
  642. and TAG142 = #{tag142}
  643. </if>
  644. <if test="tag143 != null">
  645. and TAG143 = #{tag143}
  646. </if>
  647. <if test="tag144 != null">
  648. and TAG144 = #{tag144}
  649. </if>
  650. <if test="tag145 != null">
  651. and TAG145 = #{tag145}
  652. </if>
  653. <if test="tag146 != null">
  654. and TAG146 = #{tag146}
  655. </if>
  656. <if test="tag147 != null">
  657. and TAG147 = #{tag147}
  658. </if>
  659. <if test="tag148 != null">
  660. and TAG148 = #{tag148}
  661. </if>
  662. <if test="tag149 != null">
  663. and TAG149 = #{tag149}
  664. </if>
  665. <if test="tag150 != null">
  666. and TAG150 = #{tag150}
  667. </if>
  668. <if test="tag151 != null">
  669. and TAG151 = #{tag151}
  670. </if>
  671. <if test="tag152 != null">
  672. and TAG152 = #{tag152}
  673. </if>
  674. <if test="tag153 != null">
  675. and TAG153 = #{tag153}
  676. </if>
  677. <if test="tag154 != null">
  678. and TAG154 = #{tag154}
  679. </if>
  680. <if test="tag155 != null">
  681. and TAG155 = #{tag155}
  682. </if>
  683. <if test="tag156 != null">
  684. and TAG156 = #{tag156}
  685. </if>
  686. <if test="tag157 != null">
  687. and TAG157 = #{tag157}
  688. </if>
  689. <if test="tag158 != null">
  690. and TAG158 = #{tag158}
  691. </if>
  692. <if test="tag159 != null">
  693. and TAG159 = #{tag159}
  694. </if>
  695. <if test="tag160 != null">
  696. and TAG160 = #{tag160}
  697. </if>
  698. </where>
  699. </sql>
  700. <sql id="whereLike">
  701. <where>
  702. <if test="clock != null and clock != ''">
  703. and CLOCK LIKE '%${clock}%'
  704. </if>
  705. <if test="insertTime != null">
  706. and TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = #{insertTime}
  707. </if>
  708. <if test="tag1 != null">
  709. and TAG1 = #{tag1}
  710. </if>
  711. <if test="tag2 != null">
  712. and TAG2 = #{tag2}
  713. </if>
  714. <if test="tag3 != null">
  715. and TAG3 = #{tag3}
  716. </if>
  717. <if test="tag4 != null">
  718. and TAG4 = #{tag4}
  719. </if>
  720. <if test="tag5 != null">
  721. and TAG5 = #{tag5}
  722. </if>
  723. <if test="tag6 != null">
  724. and TAG6 = #{tag6}
  725. </if>
  726. <if test="tag7 != null">
  727. and TAG7 = #{tag7}
  728. </if>
  729. <if test="tag8 != null">
  730. and TAG8 = #{tag8}
  731. </if>
  732. <if test="tag9 != null">
  733. and TAG9 = #{tag9}
  734. </if>
  735. <if test="tag10 != null">
  736. and TAG10 = #{tag10}
  737. </if>
  738. <if test="tag11 != null">
  739. and TAG11 = #{tag11}
  740. </if>
  741. <if test="tag12 != null">
  742. and TAG12 = #{tag12}
  743. </if>
  744. <if test="tag13 != null">
  745. and TAG13 = #{tag13}
  746. </if>
  747. <if test="tag14 != null">
  748. and TAG14 = #{tag14}
  749. </if>
  750. <if test="tag15 != null">
  751. and TAG15 = #{tag15}
  752. </if>
  753. <if test="tag16 != null">
  754. and TAG16 = #{tag16}
  755. </if>
  756. <if test="tag17 != null">
  757. and TAG17 = #{tag17}
  758. </if>
  759. <if test="tag18 != null">
  760. and TAG18 = #{tag18}
  761. </if>
  762. <if test="tag19 != null">
  763. and TAG19 = #{tag19}
  764. </if>
  765. <if test="tag20 != null">
  766. and TAG20 = #{tag20}
  767. </if>
  768. <if test="tag21 != null">
  769. and TAG21 = #{tag21}
  770. </if>
  771. <if test="tag22 != null">
  772. and TAG22 = #{tag22}
  773. </if>
  774. <if test="tag23 != null">
  775. and TAG23 = #{tag23}
  776. </if>
  777. <if test="tag24 != null">
  778. and TAG24 = #{tag24}
  779. </if>
  780. <if test="tag25 != null">
  781. and TAG25 = #{tag25}
  782. </if>
  783. <if test="tag26 != null">
  784. and TAG26 = #{tag26}
  785. </if>
  786. <if test="tag27 != null">
  787. and TAG27 = #{tag27}
  788. </if>
  789. <if test="tag28 != null">
  790. and TAG28 = #{tag28}
  791. </if>
  792. <if test="tag29 != null">
  793. and TAG29 = #{tag29}
  794. </if>
  795. <if test="tag30 != null">
  796. and TAG30 = #{tag30}
  797. </if>
  798. <if test="tag31 != null">
  799. and TAG31 = #{tag31}
  800. </if>
  801. <if test="tag32 != null">
  802. and TAG32 = #{tag32}
  803. </if>
  804. <if test="tag33 != null">
  805. and TAG33 = #{tag33}
  806. </if>
  807. <if test="tag34 != null">
  808. and TAG34 = #{tag34}
  809. </if>
  810. <if test="tag35 != null">
  811. and TAG35 = #{tag35}
  812. </if>
  813. <if test="tag36 != null">
  814. and TAG36 = #{tag36}
  815. </if>
  816. <if test="tag37 != null">
  817. and TAG37 = #{tag37}
  818. </if>
  819. <if test="tag38 != null">
  820. and TAG38 = #{tag38}
  821. </if>
  822. <if test="tag39 != null">
  823. and TAG39 = #{tag39}
  824. </if>
  825. <if test="tag40 != null">
  826. and TAG40 = #{tag40}
  827. </if>
  828. <if test="tag41 != null">
  829. and TAG41 = #{tag41}
  830. </if>
  831. <if test="tag42 != null">
  832. and TAG42 = #{tag42}
  833. </if>
  834. <if test="tag43 != null">
  835. and TAG43 = #{tag43}
  836. </if>
  837. <if test="tag44 != null">
  838. and TAG44 = #{tag44}
  839. </if>
  840. <if test="tag46 != null">
  841. and TAG46 = #{tag46}
  842. </if>
  843. <if test="tag47 != null">
  844. and TAG47 = #{tag47}
  845. </if>
  846. <if test="tag48 != null">
  847. and TAG48 = #{tag48}
  848. </if>
  849. <if test="tag49 != null">
  850. and TAG49 = #{tag49}
  851. </if>
  852. <if test="tag50 != null">
  853. and TAG50 = #{tag50}
  854. </if>
  855. <if test="tag51 != null">
  856. and TAG51 = #{tag51}
  857. </if>
  858. <if test="tag52 != null">
  859. and TAG52 = #{tag52}
  860. </if>
  861. <if test="tag53 != null">
  862. and TAG53 = #{tag53}
  863. </if>
  864. <if test="tag54 != null">
  865. and TAG54 = #{tag54}
  866. </if>
  867. <if test="tag55 != null">
  868. and TAG55 = #{tag55}
  869. </if>
  870. <if test="tag56 != null">
  871. and TAG56 = #{tag56}
  872. </if>
  873. <if test="tag57 != null">
  874. and TAG57 = #{tag57}
  875. </if>
  876. <if test="tag58 != null">
  877. and TAG58 = #{tag58}
  878. </if>
  879. <if test="tag59 != null">
  880. and TAG59 = #{tag59}
  881. </if>
  882. <if test="tag60 != null">
  883. and TAG60 = #{tag60}
  884. </if>
  885. <if test="tag61 != null">
  886. and TAG61 = #{tag61}
  887. </if>
  888. <if test="tag62 != null">
  889. and TAG62 = #{tag62}
  890. </if>
  891. <if test="tag63 != null">
  892. and TAG63 = #{tag63}
  893. </if>
  894. <if test="tag64 != null">
  895. and TAG64 = #{tag64}
  896. </if>
  897. <if test="tag65 != null">
  898. and TAG65 = #{tag65}
  899. </if>
  900. <if test="tag66 != null">
  901. and TAG66 = #{tag66}
  902. </if>
  903. <if test="tag67 != null">
  904. and TAG67 = #{tag67}
  905. </if>
  906. <if test="tag68 != null">
  907. and TAG68 = #{tag68}
  908. </if>
  909. <if test="tag69 != null">
  910. and TAG69 = #{tag69}
  911. </if>
  912. <if test="tag70 != null">
  913. and TAG70 = #{tag70}
  914. </if>
  915. <if test="tag71 != null">
  916. and TAG71 = #{tag71}
  917. </if>
  918. <if test="tag72 != null">
  919. and TAG72 = #{tag72}
  920. </if>
  921. <if test="tag73 != null">
  922. and TAG73 = #{tag73}
  923. </if>
  924. <if test="tag74 != null">
  925. and TAG74 = #{tag74}
  926. </if>
  927. <if test="tag75 != null">
  928. and TAG75 = #{tag75}
  929. </if>
  930. <if test="tag76 != null">
  931. and TAG76 = #{tag76}
  932. </if>
  933. <if test="tag77 != null">
  934. and TAG77 = #{tag77}
  935. </if>
  936. <if test="tag78 != null">
  937. and TAG78 = #{tag78}
  938. </if>
  939. <if test="tag79 != null">
  940. and TAG79 = #{tag79}
  941. </if>
  942. <if test="tag80 != null">
  943. and TAG80 = #{tag80}
  944. </if>
  945. <if test="tag81 != null">
  946. and TAG81 = #{tag81}
  947. </if>
  948. <if test="tag82 != null">
  949. and TAG82 = #{tag82}
  950. </if>
  951. <if test="tag83 != null">
  952. and TAG83 = #{tag83}
  953. </if>
  954. <if test="tag84 != null">
  955. and TAG84 = #{tag84}
  956. </if>
  957. <if test="tag85 != null">
  958. and TAG85 = #{tag85}
  959. </if>
  960. <if test="tag86 != null">
  961. and TAG86 = #{tag86}
  962. </if>
  963. <if test="tag87 != null">
  964. and TAG87 = #{tag87}
  965. </if>
  966. <if test="tag88 != null">
  967. and TAG88 = #{tag88}
  968. </if>
  969. <if test="tag89 != null">
  970. and TAG89 = #{tag89}
  971. </if>
  972. <if test="tag90 != null">
  973. and TAG90 = #{tag90}
  974. </if>
  975. <if test="tag91 != null">
  976. and TAG91 = #{tag91}
  977. </if>
  978. <if test="tag92 != null">
  979. and TAG92 = #{tag92}
  980. </if>
  981. <if test="tag93 != null">
  982. and TAG93 = #{tag93}
  983. </if>
  984. <if test="tag94 != null">
  985. and TAG94 = #{tag94}
  986. </if>
  987. <if test="tag95 != null">
  988. and TAG95 = #{tag95}
  989. </if>
  990. <if test="tag96 != null">
  991. and TAG96 = #{tag96}
  992. </if>
  993. <if test="tag97 != null">
  994. and TAG97 = #{tag97}
  995. </if>
  996. <if test="tag98 != null">
  997. and TAG98 = #{tag98}
  998. </if>
  999. <if test="tag99 != null">
  1000. and TAG99 = #{tag99}
  1001. </if>
  1002. <if test="tag100 != null">
  1003. and TAG100 = #{tag100}
  1004. </if>
  1005. <if test="tag101 != null">
  1006. and TAG101 = #{tag101}
  1007. </if>
  1008. <if test="tag45 != null">
  1009. and TAG45 = #{tag45}
  1010. </if>
  1011. <if test="tag102 != null">
  1012. and TAG102 = #{tag102}
  1013. </if>
  1014. <if test="tag103 != null">
  1015. and TAG103 = #{tag103}
  1016. </if>
  1017. <if test="tag104 != null">
  1018. and TAG104 = #{tag104}
  1019. </if>
  1020. <if test="tag105 != null">
  1021. and TAG105 = #{tag105}
  1022. </if>
  1023. <if test="tag106 != null">
  1024. and TAG106 = #{tag106}
  1025. </if>
  1026. <if test="tag107 != null">
  1027. and TAG107 = #{tag107}
  1028. </if>
  1029. <if test="tag108 != null">
  1030. and TAG108 = #{tag108}
  1031. </if>
  1032. <if test="tag109 != null">
  1033. and TAG109 = #{tag109}
  1034. </if>
  1035. <if test="tag110 != null">
  1036. and TAG110 = #{tag110}
  1037. </if>
  1038. <if test="tag111 != null">
  1039. and TAG111 = #{tag111}
  1040. </if>
  1041. <if test="tag112 != null">
  1042. and TAG112 = #{tag112}
  1043. </if>
  1044. <if test="tag113 != null">
  1045. and TAG113 = #{tag113}
  1046. </if>
  1047. <if test="tag114 != null">
  1048. and TAG114 = #{tag114}
  1049. </if>
  1050. <if test="tag115 != null">
  1051. and TAG115 = #{tag115}
  1052. </if>
  1053. <if test="tag116 != null">
  1054. and TAG116 = #{tag116}
  1055. </if>
  1056. <if test="tag117 != null">
  1057. and TAG117 = #{tag117}
  1058. </if>
  1059. <if test="tag118 != null">
  1060. and TAG118 = #{tag118}
  1061. </if>
  1062. <if test="tag119 != null">
  1063. and TAG119 = #{tag119}
  1064. </if>
  1065. <if test="tag120 != null">
  1066. and TAG120 = #{tag120}
  1067. </if>
  1068. <if test="tag121 != null">
  1069. and TAG121 = #{tag121}
  1070. </if>
  1071. <if test="tag122 != null">
  1072. and TAG122 = #{tag122}
  1073. </if>
  1074. <if test="tag123 != null">
  1075. and TAG123 = #{tag123}
  1076. </if>
  1077. <if test="tag124 != null">
  1078. and TAG124 = #{tag124}
  1079. </if>
  1080. <if test="tag125 != null">
  1081. and TAG125 = #{tag125}
  1082. </if>
  1083. <if test="tag126 != null">
  1084. and TAG126 = #{tag126}
  1085. </if>
  1086. <if test="tag127 != null">
  1087. and TAG127 = #{tag127}
  1088. </if>
  1089. <if test="tag128 != null">
  1090. and TAG128 = #{tag128}
  1091. </if>
  1092. <if test="tag129 != null">
  1093. and TAG129 = #{tag129}
  1094. </if>
  1095. <if test="tag130 != null">
  1096. and TAG130 = #{tag130}
  1097. </if>
  1098. <if test="tag131 != null">
  1099. and TAG131 = #{tag131}
  1100. </if>
  1101. <if test="tag132 != null">
  1102. and TAG132 = #{tag132}
  1103. </if>
  1104. <if test="tag133 != null">
  1105. and TAG133 = #{tag133}
  1106. </if>
  1107. <if test="tag134 != null">
  1108. and TAG134 = #{tag134}
  1109. </if>
  1110. <if test="tag135 != null">
  1111. and TAG135 = #{tag135}
  1112. </if>
  1113. <if test="tag136 != null">
  1114. and TAG136 = #{tag136}
  1115. </if>
  1116. <if test="tag137 != null">
  1117. and TAG137 = #{tag137}
  1118. </if>
  1119. <if test="tag138 != null">
  1120. and TAG138 = #{tag138}
  1121. </if>
  1122. <if test="tag139 != null">
  1123. and TAG139 = #{tag139}
  1124. </if>
  1125. <if test="tag140 != null">
  1126. and TAG140 = #{tag140}
  1127. </if>
  1128. <if test="tag141 != null">
  1129. and TAG141 = #{tag141}
  1130. </if>
  1131. <if test="tag142 != null">
  1132. and TAG142 = #{tag142}
  1133. </if>
  1134. <if test="tag143 != null">
  1135. and TAG143 = #{tag143}
  1136. </if>
  1137. <if test="tag144 != null">
  1138. and TAG144 = #{tag144}
  1139. </if>
  1140. <if test="tag145 != null">
  1141. and TAG145 = #{tag145}
  1142. </if>
  1143. <if test="tag146 != null">
  1144. and TAG146 = #{tag146}
  1145. </if>
  1146. <if test="tag147 != null">
  1147. and TAG147 = #{tag147}
  1148. </if>
  1149. <if test="tag148 != null">
  1150. and TAG148 = #{tag148}
  1151. </if>
  1152. <if test="tag149 != null">
  1153. and TAG149 = #{tag149}
  1154. </if>
  1155. <if test="tag150 != null">
  1156. and TAG150 = #{tag150}
  1157. </if>
  1158. <if test="tag151 != null">
  1159. and TAG151 = #{tag151}
  1160. </if>
  1161. <if test="tag152 != null">
  1162. and TAG152 = #{tag152}
  1163. </if>
  1164. <if test="tag153 != null">
  1165. and TAG153 = #{tag153}
  1166. </if>
  1167. <if test="tag154 != null">
  1168. and TAG154 = #{tag154}
  1169. </if>
  1170. <if test="tag155 != null">
  1171. and TAG155 = #{tag155}
  1172. </if>
  1173. <if test="tag156 != null">
  1174. and TAG156 = #{tag156}
  1175. </if>
  1176. <if test="tag157 != null">
  1177. and TAG157 = #{tag157}
  1178. </if>
  1179. <if test="tag158 != null">
  1180. and TAG158 = #{tag158}
  1181. </if>
  1182. <if test="tag159 != null">
  1183. and TAG159 = #{tag159}
  1184. </if>
  1185. <if test="tag160 != null">
  1186. and TAG160 = #{tag160}
  1187. </if>
  1188. </where>
  1189. </sql>
  1190. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  1191. delete from EMS_W_AI_HOUR_SUM_TAB1
  1192. where CLOCK = #{clock,jdbcType=VARCHAR}
  1193. </delete>
  1194. <delete id="deleteBySelectiveElement" parameterType="java.util.HashMap">
  1195. delete from EMS_W_AI_HOUR_SUM_TAB1
  1196. where 1!=1
  1197. <if test="insertTime != null">
  1198. or TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = '#{insertTime}'
  1199. </if>
  1200. <if test="tag1 != null">
  1201. or TAG1 = #{tag1}
  1202. </if>
  1203. <if test="tag2 != null">
  1204. or TAG2 = #{tag2}
  1205. </if>
  1206. <if test="tag3 != null">
  1207. or TAG3 = #{tag3}
  1208. </if>
  1209. <if test="tag4 != null">
  1210. or TAG4 = #{tag4}
  1211. </if>
  1212. <if test="tag5 != null">
  1213. or TAG5 = #{tag5}
  1214. </if>
  1215. <if test="tag6 != null">
  1216. or TAG6 = #{tag6}
  1217. </if>
  1218. <if test="tag7 != null">
  1219. or TAG7 = #{tag7}
  1220. </if>
  1221. <if test="tag8 != null">
  1222. or TAG8 = #{tag8}
  1223. </if>
  1224. <if test="tag9 != null">
  1225. or TAG9 = #{tag9}
  1226. </if>
  1227. <if test="tag10 != null">
  1228. or TAG10 = #{tag10}
  1229. </if>
  1230. <if test="tag11 != null">
  1231. or TAG11 = #{tag11}
  1232. </if>
  1233. <if test="tag12 != null">
  1234. or TAG12 = #{tag12}
  1235. </if>
  1236. <if test="tag13 != null">
  1237. or TAG13 = #{tag13}
  1238. </if>
  1239. <if test="tag14 != null">
  1240. or TAG14 = #{tag14}
  1241. </if>
  1242. <if test="tag15 != null">
  1243. or TAG15 = #{tag15}
  1244. </if>
  1245. <if test="tag16 != null">
  1246. or TAG16 = #{tag16}
  1247. </if>
  1248. <if test="tag17 != null">
  1249. or TAG17 = #{tag17}
  1250. </if>
  1251. <if test="tag18 != null">
  1252. or TAG18 = #{tag18}
  1253. </if>
  1254. <if test="tag19 != null">
  1255. or TAG19 = #{tag19}
  1256. </if>
  1257. <if test="tag20 != null">
  1258. or TAG20 = #{tag20}
  1259. </if>
  1260. <if test="tag21 != null">
  1261. or TAG21 = #{tag21}
  1262. </if>
  1263. <if test="tag22 != null">
  1264. or TAG22 = #{tag22}
  1265. </if>
  1266. <if test="tag23 != null">
  1267. or TAG23 = #{tag23}
  1268. </if>
  1269. <if test="tag24 != null">
  1270. or TAG24 = #{tag24}
  1271. </if>
  1272. <if test="tag25 != null">
  1273. or TAG25 = #{tag25}
  1274. </if>
  1275. <if test="tag26 != null">
  1276. or TAG26 = #{tag26}
  1277. </if>
  1278. <if test="tag27 != null">
  1279. or TAG27 = #{tag27}
  1280. </if>
  1281. <if test="tag28 != null">
  1282. or TAG28 = #{tag28}
  1283. </if>
  1284. <if test="tag29 != null">
  1285. or TAG29 = #{tag29}
  1286. </if>
  1287. <if test="tag30 != null">
  1288. or TAG30 = #{tag30}
  1289. </if>
  1290. <if test="tag31 != null">
  1291. or TAG31 = #{tag31}
  1292. </if>
  1293. <if test="tag32 != null">
  1294. or TAG32 = #{tag32}
  1295. </if>
  1296. <if test="tag33 != null">
  1297. or TAG33 = #{tag33}
  1298. </if>
  1299. <if test="tag34 != null">
  1300. or TAG34 = #{tag34}
  1301. </if>
  1302. <if test="tag35 != null">
  1303. or TAG35 = #{tag35}
  1304. </if>
  1305. <if test="tag36 != null">
  1306. or TAG36 = #{tag36}
  1307. </if>
  1308. <if test="tag37 != null">
  1309. or TAG37 = #{tag37}
  1310. </if>
  1311. <if test="tag38 != null">
  1312. or TAG38 = #{tag38}
  1313. </if>
  1314. <if test="tag39 != null">
  1315. or TAG39 = #{tag39}
  1316. </if>
  1317. <if test="tag40 != null">
  1318. or TAG40 = #{tag40}
  1319. </if>
  1320. <if test="tag41 != null">
  1321. or TAG41 = #{tag41}
  1322. </if>
  1323. <if test="tag42 != null">
  1324. or TAG42 = #{tag42}
  1325. </if>
  1326. <if test="tag43 != null">
  1327. or TAG43 = #{tag43}
  1328. </if>
  1329. <if test="tag44 != null">
  1330. or TAG44 = #{tag44}
  1331. </if>
  1332. <if test="tag46 != null">
  1333. or TAG46 = #{tag46}
  1334. </if>
  1335. <if test="tag47 != null">
  1336. or TAG47 = #{tag47}
  1337. </if>
  1338. <if test="tag48 != null">
  1339. or TAG48 = #{tag48}
  1340. </if>
  1341. <if test="tag49 != null">
  1342. or TAG49 = #{tag49}
  1343. </if>
  1344. <if test="tag50 != null">
  1345. or TAG50 = #{tag50}
  1346. </if>
  1347. <if test="tag51 != null">
  1348. or TAG51 = #{tag51}
  1349. </if>
  1350. <if test="tag52 != null">
  1351. or TAG52 = #{tag52}
  1352. </if>
  1353. <if test="tag53 != null">
  1354. or TAG53 = #{tag53}
  1355. </if>
  1356. <if test="tag54 != null">
  1357. or TAG54 = #{tag54}
  1358. </if>
  1359. <if test="tag55 != null">
  1360. or TAG55 = #{tag55}
  1361. </if>
  1362. <if test="tag56 != null">
  1363. or TAG56 = #{tag56}
  1364. </if>
  1365. <if test="tag57 != null">
  1366. or TAG57 = #{tag57}
  1367. </if>
  1368. <if test="tag58 != null">
  1369. or TAG58 = #{tag58}
  1370. </if>
  1371. <if test="tag59 != null">
  1372. or TAG59 = #{tag59}
  1373. </if>
  1374. <if test="tag60 != null">
  1375. or TAG60 = #{tag60}
  1376. </if>
  1377. <if test="tag61 != null">
  1378. or TAG61 = #{tag61}
  1379. </if>
  1380. <if test="tag62 != null">
  1381. or TAG62 = #{tag62}
  1382. </if>
  1383. <if test="tag63 != null">
  1384. or TAG63 = #{tag63}
  1385. </if>
  1386. <if test="tag64 != null">
  1387. or TAG64 = #{tag64}
  1388. </if>
  1389. <if test="tag65 != null">
  1390. or TAG65 = #{tag65}
  1391. </if>
  1392. <if test="tag66 != null">
  1393. or TAG66 = #{tag66}
  1394. </if>
  1395. <if test="tag67 != null">
  1396. or TAG67 = #{tag67}
  1397. </if>
  1398. <if test="tag68 != null">
  1399. or TAG68 = #{tag68}
  1400. </if>
  1401. <if test="tag69 != null">
  1402. or TAG69 = #{tag69}
  1403. </if>
  1404. <if test="tag70 != null">
  1405. or TAG70 = #{tag70}
  1406. </if>
  1407. <if test="tag71 != null">
  1408. or TAG71 = #{tag71}
  1409. </if>
  1410. <if test="tag72 != null">
  1411. or TAG72 = #{tag72}
  1412. </if>
  1413. <if test="tag73 != null">
  1414. or TAG73 = #{tag73}
  1415. </if>
  1416. <if test="tag74 != null">
  1417. or TAG74 = #{tag74}
  1418. </if>
  1419. <if test="tag75 != null">
  1420. or TAG75 = #{tag75}
  1421. </if>
  1422. <if test="tag76 != null">
  1423. or TAG76 = #{tag76}
  1424. </if>
  1425. <if test="tag77 != null">
  1426. or TAG77 = #{tag77}
  1427. </if>
  1428. <if test="tag78 != null">
  1429. or TAG78 = #{tag78}
  1430. </if>
  1431. <if test="tag79 != null">
  1432. or TAG79 = #{tag79}
  1433. </if>
  1434. <if test="tag80 != null">
  1435. or TAG80 = #{tag80}
  1436. </if>
  1437. <if test="tag81 != null">
  1438. or TAG81 = #{tag81}
  1439. </if>
  1440. <if test="tag82 != null">
  1441. or TAG82 = #{tag82}
  1442. </if>
  1443. <if test="tag83 != null">
  1444. or TAG83 = #{tag83}
  1445. </if>
  1446. <if test="tag84 != null">
  1447. or TAG84 = #{tag84}
  1448. </if>
  1449. <if test="tag85 != null">
  1450. or TAG85 = #{tag85}
  1451. </if>
  1452. <if test="tag86 != null">
  1453. or TAG86 = #{tag86}
  1454. </if>
  1455. <if test="tag87 != null">
  1456. or TAG87 = #{tag87}
  1457. </if>
  1458. <if test="tag88 != null">
  1459. or TAG88 = #{tag88}
  1460. </if>
  1461. <if test="tag89 != null">
  1462. or TAG89 = #{tag89}
  1463. </if>
  1464. <if test="tag90 != null">
  1465. or TAG90 = #{tag90}
  1466. </if>
  1467. <if test="tag91 != null">
  1468. or TAG91 = #{tag91}
  1469. </if>
  1470. <if test="tag92 != null">
  1471. or TAG92 = #{tag92}
  1472. </if>
  1473. <if test="tag93 != null">
  1474. or TAG93 = #{tag93}
  1475. </if>
  1476. <if test="tag94 != null">
  1477. or TAG94 = #{tag94}
  1478. </if>
  1479. <if test="tag95 != null">
  1480. or TAG95 = #{tag95}
  1481. </if>
  1482. <if test="tag96 != null">
  1483. or TAG96 = #{tag96}
  1484. </if>
  1485. <if test="tag97 != null">
  1486. or TAG97 = #{tag97}
  1487. </if>
  1488. <if test="tag98 != null">
  1489. or TAG98 = #{tag98}
  1490. </if>
  1491. <if test="tag99 != null">
  1492. or TAG99 = #{tag99}
  1493. </if>
  1494. <if test="tag100 != null">
  1495. or TAG100 = #{tag100}
  1496. </if>
  1497. <if test="tag101 != null">
  1498. or TAG101 = #{tag101}
  1499. </if>
  1500. <if test="tag45 != null">
  1501. or TAG45 = #{tag45}
  1502. </if>
  1503. <if test="tag102 != null">
  1504. or TAG102 = #{tag102}
  1505. </if>
  1506. <if test="tag103 != null">
  1507. or TAG103 = #{tag103}
  1508. </if>
  1509. <if test="tag104 != null">
  1510. or TAG104 = #{tag104}
  1511. </if>
  1512. <if test="tag105 != null">
  1513. or TAG105 = #{tag105}
  1514. </if>
  1515. <if test="tag106 != null">
  1516. or TAG106 = #{tag106}
  1517. </if>
  1518. <if test="tag107 != null">
  1519. or TAG107 = #{tag107}
  1520. </if>
  1521. <if test="tag108 != null">
  1522. or TAG108 = #{tag108}
  1523. </if>
  1524. <if test="tag109 != null">
  1525. or TAG109 = #{tag109}
  1526. </if>
  1527. <if test="tag110 != null">
  1528. or TAG110 = #{tag110}
  1529. </if>
  1530. <if test="tag111 != null">
  1531. or TAG111 = #{tag111}
  1532. </if>
  1533. <if test="tag112 != null">
  1534. or TAG112 = #{tag112}
  1535. </if>
  1536. <if test="tag113 != null">
  1537. or TAG113 = #{tag113}
  1538. </if>
  1539. <if test="tag114 != null">
  1540. or TAG114 = #{tag114}
  1541. </if>
  1542. <if test="tag115 != null">
  1543. or TAG115 = #{tag115}
  1544. </if>
  1545. <if test="tag116 != null">
  1546. or TAG116 = #{tag116}
  1547. </if>
  1548. <if test="tag117 != null">
  1549. or TAG117 = #{tag117}
  1550. </if>
  1551. <if test="tag118 != null">
  1552. or TAG118 = #{tag118}
  1553. </if>
  1554. <if test="tag119 != null">
  1555. or TAG119 = #{tag119}
  1556. </if>
  1557. <if test="tag120 != null">
  1558. or TAG120 = #{tag120}
  1559. </if>
  1560. <if test="tag121 != null">
  1561. or TAG121 = #{tag121}
  1562. </if>
  1563. <if test="tag122 != null">
  1564. or TAG122 = #{tag122}
  1565. </if>
  1566. <if test="tag123 != null">
  1567. or TAG123 = #{tag123}
  1568. </if>
  1569. <if test="tag124 != null">
  1570. or TAG124 = #{tag124}
  1571. </if>
  1572. <if test="tag125 != null">
  1573. or TAG125 = #{tag125}
  1574. </if>
  1575. <if test="tag126 != null">
  1576. or TAG126 = #{tag126}
  1577. </if>
  1578. <if test="tag127 != null">
  1579. or TAG127 = #{tag127}
  1580. </if>
  1581. <if test="tag128 != null">
  1582. or TAG128 = #{tag128}
  1583. </if>
  1584. <if test="tag129 != null">
  1585. or TAG129 = #{tag129}
  1586. </if>
  1587. <if test="tag130 != null">
  1588. or TAG130 = #{tag130}
  1589. </if>
  1590. <if test="tag131 != null">
  1591. or TAG131 = #{tag131}
  1592. </if>
  1593. <if test="tag132 != null">
  1594. or TAG132 = #{tag132}
  1595. </if>
  1596. <if test="tag133 != null">
  1597. or TAG133 = #{tag133}
  1598. </if>
  1599. <if test="tag134 != null">
  1600. or TAG134 = #{tag134}
  1601. </if>
  1602. <if test="tag135 != null">
  1603. or TAG135 = #{tag135}
  1604. </if>
  1605. <if test="tag136 != null">
  1606. or TAG136 = #{tag136}
  1607. </if>
  1608. <if test="tag137 != null">
  1609. or TAG137 = #{tag137}
  1610. </if>
  1611. <if test="tag138 != null">
  1612. or TAG138 = #{tag138}
  1613. </if>
  1614. <if test="tag139 != null">
  1615. or TAG139 = #{tag139}
  1616. </if>
  1617. <if test="tag140 != null">
  1618. or TAG140 = #{tag140}
  1619. </if>
  1620. <if test="tag141 != null">
  1621. or TAG141 = #{tag141}
  1622. </if>
  1623. <if test="tag142 != null">
  1624. or TAG142 = #{tag142}
  1625. </if>
  1626. <if test="tag143 != null">
  1627. or TAG143 = #{tag143}
  1628. </if>
  1629. <if test="tag144 != null">
  1630. or TAG144 = #{tag144}
  1631. </if>
  1632. <if test="tag145 != null">
  1633. or TAG145 = #{tag145}
  1634. </if>
  1635. <if test="tag146 != null">
  1636. or TAG146 = #{tag146}
  1637. </if>
  1638. <if test="tag147 != null">
  1639. or TAG147 = #{tag147}
  1640. </if>
  1641. <if test="tag148 != null">
  1642. or TAG148 = #{tag148}
  1643. </if>
  1644. <if test="tag149 != null">
  1645. or TAG149 = #{tag149}
  1646. </if>
  1647. <if test="tag150 != null">
  1648. or TAG150 = #{tag150}
  1649. </if>
  1650. <if test="tag151 != null">
  1651. or TAG151 = #{tag151}
  1652. </if>
  1653. <if test="tag152 != null">
  1654. or TAG152 = #{tag152}
  1655. </if>
  1656. <if test="tag153 != null">
  1657. or TAG153 = #{tag153}
  1658. </if>
  1659. <if test="tag154 != null">
  1660. or TAG154 = #{tag154}
  1661. </if>
  1662. <if test="tag155 != null">
  1663. or TAG155 = #{tag155}
  1664. </if>
  1665. <if test="tag156 != null">
  1666. or TAG156 = #{tag156}
  1667. </if>
  1668. <if test="tag157 != null">
  1669. or TAG157 = #{tag157}
  1670. </if>
  1671. <if test="tag158 != null">
  1672. or TAG158 = #{tag158}
  1673. </if>
  1674. <if test="tag159 != null">
  1675. or TAG159 = #{tag159}
  1676. </if>
  1677. <if test="tag160 != null">
  1678. or TAG160 = #{tag160}
  1679. </if>
  1680. </delete>
  1681. <insert id="insert" parameterType="com.steerinfo.ems.emswaihoursumtab1.model.EmsWAiHourSumTab1">
  1682. insert into EMS_W_AI_HOUR_SUM_TAB1 (CLOCK, INSERT_TIME, TAG1,
  1683. TAG2, TAG3, TAG4, TAG5,
  1684. TAG6, TAG7, TAG8, TAG9,
  1685. TAG10, TAG11, TAG12, TAG13,
  1686. TAG14, TAG15, TAG16, TAG17,
  1687. TAG18, TAG19, TAG20, TAG21,
  1688. TAG22, TAG23, TAG24, TAG25,
  1689. TAG26, TAG27, TAG28, TAG29,
  1690. TAG30, TAG31, TAG32, TAG33,
  1691. TAG34, TAG35, TAG36, TAG37,
  1692. TAG38, TAG39, TAG40, TAG41,
  1693. TAG42, TAG43, TAG44, TAG46,
  1694. TAG47, TAG48, TAG49, TAG50,
  1695. TAG51, TAG52, TAG53, TAG54,
  1696. TAG55, TAG56, TAG57, TAG58,
  1697. TAG59, TAG60, TAG61, TAG62,
  1698. TAG63, TAG64, TAG65, TAG66,
  1699. TAG67, TAG68, TAG69, TAG70,
  1700. TAG71, TAG72, TAG73, TAG74,
  1701. TAG75, TAG76, TAG77, TAG78,
  1702. TAG79, TAG80, TAG81, TAG82,
  1703. TAG83, TAG84, TAG85, TAG86,
  1704. TAG87, TAG88, TAG89, TAG90,
  1705. TAG91, TAG92, TAG93, TAG94,
  1706. TAG95, TAG96, TAG97, TAG98,
  1707. TAG99, TAG100, TAG101, TAG45,
  1708. TAG102, TAG103, TAG104, TAG105,
  1709. TAG106, TAG107, TAG108, TAG109,
  1710. TAG110, TAG111, TAG112, TAG113,
  1711. TAG114, TAG115, TAG116, TAG117,
  1712. TAG118, TAG119, TAG120, TAG121,
  1713. TAG122, TAG123, TAG124, TAG125,
  1714. TAG126, TAG127, TAG128, TAG129,
  1715. TAG130, TAG131, TAG132, TAG133,
  1716. TAG134, TAG135, TAG136, TAG137,
  1717. TAG138, TAG139, TAG140, TAG141,
  1718. TAG142, TAG143, TAG144, TAG145,
  1719. TAG146, TAG147, TAG148, TAG149,
  1720. TAG150, TAG151, TAG152, TAG153,
  1721. TAG154, TAG155, TAG156, TAG157,
  1722. TAG158, TAG159, TAG160)
  1723. values (#{clock,jdbcType=VARCHAR}, #{insertTime,jdbcType=TIMESTAMP}, #{tag1,jdbcType=FLOAT},
  1724. #{tag2,jdbcType=FLOAT}, #{tag3,jdbcType=FLOAT}, #{tag4,jdbcType=FLOAT}, #{tag5,jdbcType=FLOAT},
  1725. #{tag6,jdbcType=FLOAT}, #{tag7,jdbcType=FLOAT}, #{tag8,jdbcType=FLOAT}, #{tag9,jdbcType=FLOAT},
  1726. #{tag10,jdbcType=FLOAT}, #{tag11,jdbcType=FLOAT}, #{tag12,jdbcType=FLOAT}, #{tag13,jdbcType=FLOAT},
  1727. #{tag14,jdbcType=FLOAT}, #{tag15,jdbcType=FLOAT}, #{tag16,jdbcType=FLOAT}, #{tag17,jdbcType=FLOAT},
  1728. #{tag18,jdbcType=FLOAT}, #{tag19,jdbcType=FLOAT}, #{tag20,jdbcType=FLOAT}, #{tag21,jdbcType=FLOAT},
  1729. #{tag22,jdbcType=FLOAT}, #{tag23,jdbcType=FLOAT}, #{tag24,jdbcType=FLOAT}, #{tag25,jdbcType=FLOAT},
  1730. #{tag26,jdbcType=FLOAT}, #{tag27,jdbcType=FLOAT}, #{tag28,jdbcType=FLOAT}, #{tag29,jdbcType=FLOAT},
  1731. #{tag30,jdbcType=FLOAT}, #{tag31,jdbcType=FLOAT}, #{tag32,jdbcType=FLOAT}, #{tag33,jdbcType=FLOAT},
  1732. #{tag34,jdbcType=FLOAT}, #{tag35,jdbcType=FLOAT}, #{tag36,jdbcType=FLOAT}, #{tag37,jdbcType=FLOAT},
  1733. #{tag38,jdbcType=FLOAT}, #{tag39,jdbcType=FLOAT}, #{tag40,jdbcType=FLOAT}, #{tag41,jdbcType=FLOAT},
  1734. #{tag42,jdbcType=FLOAT}, #{tag43,jdbcType=FLOAT}, #{tag44,jdbcType=FLOAT}, #{tag46,jdbcType=FLOAT},
  1735. #{tag47,jdbcType=FLOAT}, #{tag48,jdbcType=FLOAT}, #{tag49,jdbcType=FLOAT}, #{tag50,jdbcType=FLOAT},
  1736. #{tag51,jdbcType=FLOAT}, #{tag52,jdbcType=FLOAT}, #{tag53,jdbcType=FLOAT}, #{tag54,jdbcType=FLOAT},
  1737. #{tag55,jdbcType=FLOAT}, #{tag56,jdbcType=FLOAT}, #{tag57,jdbcType=FLOAT}, #{tag58,jdbcType=FLOAT},
  1738. #{tag59,jdbcType=FLOAT}, #{tag60,jdbcType=FLOAT}, #{tag61,jdbcType=FLOAT}, #{tag62,jdbcType=FLOAT},
  1739. #{tag63,jdbcType=FLOAT}, #{tag64,jdbcType=FLOAT}, #{tag65,jdbcType=FLOAT}, #{tag66,jdbcType=FLOAT},
  1740. #{tag67,jdbcType=FLOAT}, #{tag68,jdbcType=FLOAT}, #{tag69,jdbcType=FLOAT}, #{tag70,jdbcType=FLOAT},
  1741. #{tag71,jdbcType=FLOAT}, #{tag72,jdbcType=FLOAT}, #{tag73,jdbcType=FLOAT}, #{tag74,jdbcType=FLOAT},
  1742. #{tag75,jdbcType=FLOAT}, #{tag76,jdbcType=FLOAT}, #{tag77,jdbcType=FLOAT}, #{tag78,jdbcType=FLOAT},
  1743. #{tag79,jdbcType=FLOAT}, #{tag80,jdbcType=FLOAT}, #{tag81,jdbcType=FLOAT}, #{tag82,jdbcType=FLOAT},
  1744. #{tag83,jdbcType=FLOAT}, #{tag84,jdbcType=FLOAT}, #{tag85,jdbcType=FLOAT}, #{tag86,jdbcType=FLOAT},
  1745. #{tag87,jdbcType=FLOAT}, #{tag88,jdbcType=FLOAT}, #{tag89,jdbcType=FLOAT}, #{tag90,jdbcType=FLOAT},
  1746. #{tag91,jdbcType=FLOAT}, #{tag92,jdbcType=FLOAT}, #{tag93,jdbcType=FLOAT}, #{tag94,jdbcType=FLOAT},
  1747. #{tag95,jdbcType=FLOAT}, #{tag96,jdbcType=FLOAT}, #{tag97,jdbcType=FLOAT}, #{tag98,jdbcType=FLOAT},
  1748. #{tag99,jdbcType=FLOAT}, #{tag100,jdbcType=FLOAT}, #{tag101,jdbcType=FLOAT}, #{tag45,jdbcType=FLOAT},
  1749. #{tag102,jdbcType=FLOAT}, #{tag103,jdbcType=FLOAT}, #{tag104,jdbcType=FLOAT}, #{tag105,jdbcType=FLOAT},
  1750. #{tag106,jdbcType=FLOAT}, #{tag107,jdbcType=FLOAT}, #{tag108,jdbcType=FLOAT}, #{tag109,jdbcType=FLOAT},
  1751. #{tag110,jdbcType=FLOAT}, #{tag111,jdbcType=FLOAT}, #{tag112,jdbcType=FLOAT}, #{tag113,jdbcType=FLOAT},
  1752. #{tag114,jdbcType=FLOAT}, #{tag115,jdbcType=FLOAT}, #{tag116,jdbcType=FLOAT}, #{tag117,jdbcType=FLOAT},
  1753. #{tag118,jdbcType=FLOAT}, #{tag119,jdbcType=FLOAT}, #{tag120,jdbcType=FLOAT}, #{tag121,jdbcType=FLOAT},
  1754. #{tag122,jdbcType=FLOAT}, #{tag123,jdbcType=FLOAT}, #{tag124,jdbcType=FLOAT}, #{tag125,jdbcType=FLOAT},
  1755. #{tag126,jdbcType=FLOAT}, #{tag127,jdbcType=FLOAT}, #{tag128,jdbcType=FLOAT}, #{tag129,jdbcType=FLOAT},
  1756. #{tag130,jdbcType=FLOAT}, #{tag131,jdbcType=FLOAT}, #{tag132,jdbcType=FLOAT}, #{tag133,jdbcType=FLOAT},
  1757. #{tag134,jdbcType=FLOAT}, #{tag135,jdbcType=FLOAT}, #{tag136,jdbcType=FLOAT}, #{tag137,jdbcType=FLOAT},
  1758. #{tag138,jdbcType=FLOAT}, #{tag139,jdbcType=FLOAT}, #{tag140,jdbcType=FLOAT}, #{tag141,jdbcType=FLOAT},
  1759. #{tag142,jdbcType=FLOAT}, #{tag143,jdbcType=FLOAT}, #{tag144,jdbcType=FLOAT}, #{tag145,jdbcType=FLOAT},
  1760. #{tag146,jdbcType=FLOAT}, #{tag147,jdbcType=FLOAT}, #{tag148,jdbcType=FLOAT}, #{tag149,jdbcType=FLOAT},
  1761. #{tag150,jdbcType=FLOAT}, #{tag151,jdbcType=FLOAT}, #{tag152,jdbcType=FLOAT}, #{tag153,jdbcType=FLOAT},
  1762. #{tag154,jdbcType=FLOAT}, #{tag155,jdbcType=FLOAT}, #{tag156,jdbcType=FLOAT}, #{tag157,jdbcType=FLOAT},
  1763. #{tag158,jdbcType=FLOAT}, #{tag159,jdbcType=FLOAT}, #{tag160,jdbcType=FLOAT})
  1764. </insert>
  1765. <insert id="insertSelective" parameterType="com.steerinfo.ems.emswaihoursumtab1.model.EmsWAiHourSumTab1">
  1766. insert into EMS_W_AI_HOUR_SUM_TAB1
  1767. <trim prefix="(" suffix=")" suffixOverrides=",">
  1768. <if test="clock != null">
  1769. CLOCK,
  1770. </if>
  1771. <if test="insertTime != null">
  1772. INSERT_TIME,
  1773. </if>
  1774. <if test="tag1 != null">
  1775. TAG1,
  1776. </if>
  1777. <if test="tag2 != null">
  1778. TAG2,
  1779. </if>
  1780. <if test="tag3 != null">
  1781. TAG3,
  1782. </if>
  1783. <if test="tag4 != null">
  1784. TAG4,
  1785. </if>
  1786. <if test="tag5 != null">
  1787. TAG5,
  1788. </if>
  1789. <if test="tag6 != null">
  1790. TAG6,
  1791. </if>
  1792. <if test="tag7 != null">
  1793. TAG7,
  1794. </if>
  1795. <if test="tag8 != null">
  1796. TAG8,
  1797. </if>
  1798. <if test="tag9 != null">
  1799. TAG9,
  1800. </if>
  1801. <if test="tag10 != null">
  1802. TAG10,
  1803. </if>
  1804. <if test="tag11 != null">
  1805. TAG11,
  1806. </if>
  1807. <if test="tag12 != null">
  1808. TAG12,
  1809. </if>
  1810. <if test="tag13 != null">
  1811. TAG13,
  1812. </if>
  1813. <if test="tag14 != null">
  1814. TAG14,
  1815. </if>
  1816. <if test="tag15 != null">
  1817. TAG15,
  1818. </if>
  1819. <if test="tag16 != null">
  1820. TAG16,
  1821. </if>
  1822. <if test="tag17 != null">
  1823. TAG17,
  1824. </if>
  1825. <if test="tag18 != null">
  1826. TAG18,
  1827. </if>
  1828. <if test="tag19 != null">
  1829. TAG19,
  1830. </if>
  1831. <if test="tag20 != null">
  1832. TAG20,
  1833. </if>
  1834. <if test="tag21 != null">
  1835. TAG21,
  1836. </if>
  1837. <if test="tag22 != null">
  1838. TAG22,
  1839. </if>
  1840. <if test="tag23 != null">
  1841. TAG23,
  1842. </if>
  1843. <if test="tag24 != null">
  1844. TAG24,
  1845. </if>
  1846. <if test="tag25 != null">
  1847. TAG25,
  1848. </if>
  1849. <if test="tag26 != null">
  1850. TAG26,
  1851. </if>
  1852. <if test="tag27 != null">
  1853. TAG27,
  1854. </if>
  1855. <if test="tag28 != null">
  1856. TAG28,
  1857. </if>
  1858. <if test="tag29 != null">
  1859. TAG29,
  1860. </if>
  1861. <if test="tag30 != null">
  1862. TAG30,
  1863. </if>
  1864. <if test="tag31 != null">
  1865. TAG31,
  1866. </if>
  1867. <if test="tag32 != null">
  1868. TAG32,
  1869. </if>
  1870. <if test="tag33 != null">
  1871. TAG33,
  1872. </if>
  1873. <if test="tag34 != null">
  1874. TAG34,
  1875. </if>
  1876. <if test="tag35 != null">
  1877. TAG35,
  1878. </if>
  1879. <if test="tag36 != null">
  1880. TAG36,
  1881. </if>
  1882. <if test="tag37 != null">
  1883. TAG37,
  1884. </if>
  1885. <if test="tag38 != null">
  1886. TAG38,
  1887. </if>
  1888. <if test="tag39 != null">
  1889. TAG39,
  1890. </if>
  1891. <if test="tag40 != null">
  1892. TAG40,
  1893. </if>
  1894. <if test="tag41 != null">
  1895. TAG41,
  1896. </if>
  1897. <if test="tag42 != null">
  1898. TAG42,
  1899. </if>
  1900. <if test="tag43 != null">
  1901. TAG43,
  1902. </if>
  1903. <if test="tag44 != null">
  1904. TAG44,
  1905. </if>
  1906. <if test="tag46 != null">
  1907. TAG46,
  1908. </if>
  1909. <if test="tag47 != null">
  1910. TAG47,
  1911. </if>
  1912. <if test="tag48 != null">
  1913. TAG48,
  1914. </if>
  1915. <if test="tag49 != null">
  1916. TAG49,
  1917. </if>
  1918. <if test="tag50 != null">
  1919. TAG50,
  1920. </if>
  1921. <if test="tag51 != null">
  1922. TAG51,
  1923. </if>
  1924. <if test="tag52 != null">
  1925. TAG52,
  1926. </if>
  1927. <if test="tag53 != null">
  1928. TAG53,
  1929. </if>
  1930. <if test="tag54 != null">
  1931. TAG54,
  1932. </if>
  1933. <if test="tag55 != null">
  1934. TAG55,
  1935. </if>
  1936. <if test="tag56 != null">
  1937. TAG56,
  1938. </if>
  1939. <if test="tag57 != null">
  1940. TAG57,
  1941. </if>
  1942. <if test="tag58 != null">
  1943. TAG58,
  1944. </if>
  1945. <if test="tag59 != null">
  1946. TAG59,
  1947. </if>
  1948. <if test="tag60 != null">
  1949. TAG60,
  1950. </if>
  1951. <if test="tag61 != null">
  1952. TAG61,
  1953. </if>
  1954. <if test="tag62 != null">
  1955. TAG62,
  1956. </if>
  1957. <if test="tag63 != null">
  1958. TAG63,
  1959. </if>
  1960. <if test="tag64 != null">
  1961. TAG64,
  1962. </if>
  1963. <if test="tag65 != null">
  1964. TAG65,
  1965. </if>
  1966. <if test="tag66 != null">
  1967. TAG66,
  1968. </if>
  1969. <if test="tag67 != null">
  1970. TAG67,
  1971. </if>
  1972. <if test="tag68 != null">
  1973. TAG68,
  1974. </if>
  1975. <if test="tag69 != null">
  1976. TAG69,
  1977. </if>
  1978. <if test="tag70 != null">
  1979. TAG70,
  1980. </if>
  1981. <if test="tag71 != null">
  1982. TAG71,
  1983. </if>
  1984. <if test="tag72 != null">
  1985. TAG72,
  1986. </if>
  1987. <if test="tag73 != null">
  1988. TAG73,
  1989. </if>
  1990. <if test="tag74 != null">
  1991. TAG74,
  1992. </if>
  1993. <if test="tag75 != null">
  1994. TAG75,
  1995. </if>
  1996. <if test="tag76 != null">
  1997. TAG76,
  1998. </if>
  1999. <if test="tag77 != null">
  2000. TAG77,
  2001. </if>
  2002. <if test="tag78 != null">
  2003. TAG78,
  2004. </if>
  2005. <if test="tag79 != null">
  2006. TAG79,
  2007. </if>
  2008. <if test="tag80 != null">
  2009. TAG80,
  2010. </if>
  2011. <if test="tag81 != null">
  2012. TAG81,
  2013. </if>
  2014. <if test="tag82 != null">
  2015. TAG82,
  2016. </if>
  2017. <if test="tag83 != null">
  2018. TAG83,
  2019. </if>
  2020. <if test="tag84 != null">
  2021. TAG84,
  2022. </if>
  2023. <if test="tag85 != null">
  2024. TAG85,
  2025. </if>
  2026. <if test="tag86 != null">
  2027. TAG86,
  2028. </if>
  2029. <if test="tag87 != null">
  2030. TAG87,
  2031. </if>
  2032. <if test="tag88 != null">
  2033. TAG88,
  2034. </if>
  2035. <if test="tag89 != null">
  2036. TAG89,
  2037. </if>
  2038. <if test="tag90 != null">
  2039. TAG90,
  2040. </if>
  2041. <if test="tag91 != null">
  2042. TAG91,
  2043. </if>
  2044. <if test="tag92 != null">
  2045. TAG92,
  2046. </if>
  2047. <if test="tag93 != null">
  2048. TAG93,
  2049. </if>
  2050. <if test="tag94 != null">
  2051. TAG94,
  2052. </if>
  2053. <if test="tag95 != null">
  2054. TAG95,
  2055. </if>
  2056. <if test="tag96 != null">
  2057. TAG96,
  2058. </if>
  2059. <if test="tag97 != null">
  2060. TAG97,
  2061. </if>
  2062. <if test="tag98 != null">
  2063. TAG98,
  2064. </if>
  2065. <if test="tag99 != null">
  2066. TAG99,
  2067. </if>
  2068. <if test="tag100 != null">
  2069. TAG100,
  2070. </if>
  2071. <if test="tag101 != null">
  2072. TAG101,
  2073. </if>
  2074. <if test="tag45 != null">
  2075. TAG45,
  2076. </if>
  2077. <if test="tag102 != null">
  2078. TAG102,
  2079. </if>
  2080. <if test="tag103 != null">
  2081. TAG103,
  2082. </if>
  2083. <if test="tag104 != null">
  2084. TAG104,
  2085. </if>
  2086. <if test="tag105 != null">
  2087. TAG105,
  2088. </if>
  2089. <if test="tag106 != null">
  2090. TAG106,
  2091. </if>
  2092. <if test="tag107 != null">
  2093. TAG107,
  2094. </if>
  2095. <if test="tag108 != null">
  2096. TAG108,
  2097. </if>
  2098. <if test="tag109 != null">
  2099. TAG109,
  2100. </if>
  2101. <if test="tag110 != null">
  2102. TAG110,
  2103. </if>
  2104. <if test="tag111 != null">
  2105. TAG111,
  2106. </if>
  2107. <if test="tag112 != null">
  2108. TAG112,
  2109. </if>
  2110. <if test="tag113 != null">
  2111. TAG113,
  2112. </if>
  2113. <if test="tag114 != null">
  2114. TAG114,
  2115. </if>
  2116. <if test="tag115 != null">
  2117. TAG115,
  2118. </if>
  2119. <if test="tag116 != null">
  2120. TAG116,
  2121. </if>
  2122. <if test="tag117 != null">
  2123. TAG117,
  2124. </if>
  2125. <if test="tag118 != null">
  2126. TAG118,
  2127. </if>
  2128. <if test="tag119 != null">
  2129. TAG119,
  2130. </if>
  2131. <if test="tag120 != null">
  2132. TAG120,
  2133. </if>
  2134. <if test="tag121 != null">
  2135. TAG121,
  2136. </if>
  2137. <if test="tag122 != null">
  2138. TAG122,
  2139. </if>
  2140. <if test="tag123 != null">
  2141. TAG123,
  2142. </if>
  2143. <if test="tag124 != null">
  2144. TAG124,
  2145. </if>
  2146. <if test="tag125 != null">
  2147. TAG125,
  2148. </if>
  2149. <if test="tag126 != null">
  2150. TAG126,
  2151. </if>
  2152. <if test="tag127 != null">
  2153. TAG127,
  2154. </if>
  2155. <if test="tag128 != null">
  2156. TAG128,
  2157. </if>
  2158. <if test="tag129 != null">
  2159. TAG129,
  2160. </if>
  2161. <if test="tag130 != null">
  2162. TAG130,
  2163. </if>
  2164. <if test="tag131 != null">
  2165. TAG131,
  2166. </if>
  2167. <if test="tag132 != null">
  2168. TAG132,
  2169. </if>
  2170. <if test="tag133 != null">
  2171. TAG133,
  2172. </if>
  2173. <if test="tag134 != null">
  2174. TAG134,
  2175. </if>
  2176. <if test="tag135 != null">
  2177. TAG135,
  2178. </if>
  2179. <if test="tag136 != null">
  2180. TAG136,
  2181. </if>
  2182. <if test="tag137 != null">
  2183. TAG137,
  2184. </if>
  2185. <if test="tag138 != null">
  2186. TAG138,
  2187. </if>
  2188. <if test="tag139 != null">
  2189. TAG139,
  2190. </if>
  2191. <if test="tag140 != null">
  2192. TAG140,
  2193. </if>
  2194. <if test="tag141 != null">
  2195. TAG141,
  2196. </if>
  2197. <if test="tag142 != null">
  2198. TAG142,
  2199. </if>
  2200. <if test="tag143 != null">
  2201. TAG143,
  2202. </if>
  2203. <if test="tag144 != null">
  2204. TAG144,
  2205. </if>
  2206. <if test="tag145 != null">
  2207. TAG145,
  2208. </if>
  2209. <if test="tag146 != null">
  2210. TAG146,
  2211. </if>
  2212. <if test="tag147 != null">
  2213. TAG147,
  2214. </if>
  2215. <if test="tag148 != null">
  2216. TAG148,
  2217. </if>
  2218. <if test="tag149 != null">
  2219. TAG149,
  2220. </if>
  2221. <if test="tag150 != null">
  2222. TAG150,
  2223. </if>
  2224. <if test="tag151 != null">
  2225. TAG151,
  2226. </if>
  2227. <if test="tag152 != null">
  2228. TAG152,
  2229. </if>
  2230. <if test="tag153 != null">
  2231. TAG153,
  2232. </if>
  2233. <if test="tag154 != null">
  2234. TAG154,
  2235. </if>
  2236. <if test="tag155 != null">
  2237. TAG155,
  2238. </if>
  2239. <if test="tag156 != null">
  2240. TAG156,
  2241. </if>
  2242. <if test="tag157 != null">
  2243. TAG157,
  2244. </if>
  2245. <if test="tag158 != null">
  2246. TAG158,
  2247. </if>
  2248. <if test="tag159 != null">
  2249. TAG159,
  2250. </if>
  2251. <if test="tag160 != null">
  2252. TAG160,
  2253. </if>
  2254. </trim>
  2255. <trim prefix="values (" suffix=")" suffixOverrides=",">
  2256. <if test="clock != null">
  2257. #{clock,jdbcType=VARCHAR},
  2258. </if>
  2259. <if test="insertTime != null">
  2260. #{insertTime,jdbcType=TIMESTAMP},
  2261. </if>
  2262. <if test="tag1 != null">
  2263. #{tag1,jdbcType=FLOAT},
  2264. </if>
  2265. <if test="tag2 != null">
  2266. #{tag2,jdbcType=FLOAT},
  2267. </if>
  2268. <if test="tag3 != null">
  2269. #{tag3,jdbcType=FLOAT},
  2270. </if>
  2271. <if test="tag4 != null">
  2272. #{tag4,jdbcType=FLOAT},
  2273. </if>
  2274. <if test="tag5 != null">
  2275. #{tag5,jdbcType=FLOAT},
  2276. </if>
  2277. <if test="tag6 != null">
  2278. #{tag6,jdbcType=FLOAT},
  2279. </if>
  2280. <if test="tag7 != null">
  2281. #{tag7,jdbcType=FLOAT},
  2282. </if>
  2283. <if test="tag8 != null">
  2284. #{tag8,jdbcType=FLOAT},
  2285. </if>
  2286. <if test="tag9 != null">
  2287. #{tag9,jdbcType=FLOAT},
  2288. </if>
  2289. <if test="tag10 != null">
  2290. #{tag10,jdbcType=FLOAT},
  2291. </if>
  2292. <if test="tag11 != null">
  2293. #{tag11,jdbcType=FLOAT},
  2294. </if>
  2295. <if test="tag12 != null">
  2296. #{tag12,jdbcType=FLOAT},
  2297. </if>
  2298. <if test="tag13 != null">
  2299. #{tag13,jdbcType=FLOAT},
  2300. </if>
  2301. <if test="tag14 != null">
  2302. #{tag14,jdbcType=FLOAT},
  2303. </if>
  2304. <if test="tag15 != null">
  2305. #{tag15,jdbcType=FLOAT},
  2306. </if>
  2307. <if test="tag16 != null">
  2308. #{tag16,jdbcType=FLOAT},
  2309. </if>
  2310. <if test="tag17 != null">
  2311. #{tag17,jdbcType=FLOAT},
  2312. </if>
  2313. <if test="tag18 != null">
  2314. #{tag18,jdbcType=FLOAT},
  2315. </if>
  2316. <if test="tag19 != null">
  2317. #{tag19,jdbcType=FLOAT},
  2318. </if>
  2319. <if test="tag20 != null">
  2320. #{tag20,jdbcType=FLOAT},
  2321. </if>
  2322. <if test="tag21 != null">
  2323. #{tag21,jdbcType=FLOAT},
  2324. </if>
  2325. <if test="tag22 != null">
  2326. #{tag22,jdbcType=FLOAT},
  2327. </if>
  2328. <if test="tag23 != null">
  2329. #{tag23,jdbcType=FLOAT},
  2330. </if>
  2331. <if test="tag24 != null">
  2332. #{tag24,jdbcType=FLOAT},
  2333. </if>
  2334. <if test="tag25 != null">
  2335. #{tag25,jdbcType=FLOAT},
  2336. </if>
  2337. <if test="tag26 != null">
  2338. #{tag26,jdbcType=FLOAT},
  2339. </if>
  2340. <if test="tag27 != null">
  2341. #{tag27,jdbcType=FLOAT},
  2342. </if>
  2343. <if test="tag28 != null">
  2344. #{tag28,jdbcType=FLOAT},
  2345. </if>
  2346. <if test="tag29 != null">
  2347. #{tag29,jdbcType=FLOAT},
  2348. </if>
  2349. <if test="tag30 != null">
  2350. #{tag30,jdbcType=FLOAT},
  2351. </if>
  2352. <if test="tag31 != null">
  2353. #{tag31,jdbcType=FLOAT},
  2354. </if>
  2355. <if test="tag32 != null">
  2356. #{tag32,jdbcType=FLOAT},
  2357. </if>
  2358. <if test="tag33 != null">
  2359. #{tag33,jdbcType=FLOAT},
  2360. </if>
  2361. <if test="tag34 != null">
  2362. #{tag34,jdbcType=FLOAT},
  2363. </if>
  2364. <if test="tag35 != null">
  2365. #{tag35,jdbcType=FLOAT},
  2366. </if>
  2367. <if test="tag36 != null">
  2368. #{tag36,jdbcType=FLOAT},
  2369. </if>
  2370. <if test="tag37 != null">
  2371. #{tag37,jdbcType=FLOAT},
  2372. </if>
  2373. <if test="tag38 != null">
  2374. #{tag38,jdbcType=FLOAT},
  2375. </if>
  2376. <if test="tag39 != null">
  2377. #{tag39,jdbcType=FLOAT},
  2378. </if>
  2379. <if test="tag40 != null">
  2380. #{tag40,jdbcType=FLOAT},
  2381. </if>
  2382. <if test="tag41 != null">
  2383. #{tag41,jdbcType=FLOAT},
  2384. </if>
  2385. <if test="tag42 != null">
  2386. #{tag42,jdbcType=FLOAT},
  2387. </if>
  2388. <if test="tag43 != null">
  2389. #{tag43,jdbcType=FLOAT},
  2390. </if>
  2391. <if test="tag44 != null">
  2392. #{tag44,jdbcType=FLOAT},
  2393. </if>
  2394. <if test="tag46 != null">
  2395. #{tag46,jdbcType=FLOAT},
  2396. </if>
  2397. <if test="tag47 != null">
  2398. #{tag47,jdbcType=FLOAT},
  2399. </if>
  2400. <if test="tag48 != null">
  2401. #{tag48,jdbcType=FLOAT},
  2402. </if>
  2403. <if test="tag49 != null">
  2404. #{tag49,jdbcType=FLOAT},
  2405. </if>
  2406. <if test="tag50 != null">
  2407. #{tag50,jdbcType=FLOAT},
  2408. </if>
  2409. <if test="tag51 != null">
  2410. #{tag51,jdbcType=FLOAT},
  2411. </if>
  2412. <if test="tag52 != null">
  2413. #{tag52,jdbcType=FLOAT},
  2414. </if>
  2415. <if test="tag53 != null">
  2416. #{tag53,jdbcType=FLOAT},
  2417. </if>
  2418. <if test="tag54 != null">
  2419. #{tag54,jdbcType=FLOAT},
  2420. </if>
  2421. <if test="tag55 != null">
  2422. #{tag55,jdbcType=FLOAT},
  2423. </if>
  2424. <if test="tag56 != null">
  2425. #{tag56,jdbcType=FLOAT},
  2426. </if>
  2427. <if test="tag57 != null">
  2428. #{tag57,jdbcType=FLOAT},
  2429. </if>
  2430. <if test="tag58 != null">
  2431. #{tag58,jdbcType=FLOAT},
  2432. </if>
  2433. <if test="tag59 != null">
  2434. #{tag59,jdbcType=FLOAT},
  2435. </if>
  2436. <if test="tag60 != null">
  2437. #{tag60,jdbcType=FLOAT},
  2438. </if>
  2439. <if test="tag61 != null">
  2440. #{tag61,jdbcType=FLOAT},
  2441. </if>
  2442. <if test="tag62 != null">
  2443. #{tag62,jdbcType=FLOAT},
  2444. </if>
  2445. <if test="tag63 != null">
  2446. #{tag63,jdbcType=FLOAT},
  2447. </if>
  2448. <if test="tag64 != null">
  2449. #{tag64,jdbcType=FLOAT},
  2450. </if>
  2451. <if test="tag65 != null">
  2452. #{tag65,jdbcType=FLOAT},
  2453. </if>
  2454. <if test="tag66 != null">
  2455. #{tag66,jdbcType=FLOAT},
  2456. </if>
  2457. <if test="tag67 != null">
  2458. #{tag67,jdbcType=FLOAT},
  2459. </if>
  2460. <if test="tag68 != null">
  2461. #{tag68,jdbcType=FLOAT},
  2462. </if>
  2463. <if test="tag69 != null">
  2464. #{tag69,jdbcType=FLOAT},
  2465. </if>
  2466. <if test="tag70 != null">
  2467. #{tag70,jdbcType=FLOAT},
  2468. </if>
  2469. <if test="tag71 != null">
  2470. #{tag71,jdbcType=FLOAT},
  2471. </if>
  2472. <if test="tag72 != null">
  2473. #{tag72,jdbcType=FLOAT},
  2474. </if>
  2475. <if test="tag73 != null">
  2476. #{tag73,jdbcType=FLOAT},
  2477. </if>
  2478. <if test="tag74 != null">
  2479. #{tag74,jdbcType=FLOAT},
  2480. </if>
  2481. <if test="tag75 != null">
  2482. #{tag75,jdbcType=FLOAT},
  2483. </if>
  2484. <if test="tag76 != null">
  2485. #{tag76,jdbcType=FLOAT},
  2486. </if>
  2487. <if test="tag77 != null">
  2488. #{tag77,jdbcType=FLOAT},
  2489. </if>
  2490. <if test="tag78 != null">
  2491. #{tag78,jdbcType=FLOAT},
  2492. </if>
  2493. <if test="tag79 != null">
  2494. #{tag79,jdbcType=FLOAT},
  2495. </if>
  2496. <if test="tag80 != null">
  2497. #{tag80,jdbcType=FLOAT},
  2498. </if>
  2499. <if test="tag81 != null">
  2500. #{tag81,jdbcType=FLOAT},
  2501. </if>
  2502. <if test="tag82 != null">
  2503. #{tag82,jdbcType=FLOAT},
  2504. </if>
  2505. <if test="tag83 != null">
  2506. #{tag83,jdbcType=FLOAT},
  2507. </if>
  2508. <if test="tag84 != null">
  2509. #{tag84,jdbcType=FLOAT},
  2510. </if>
  2511. <if test="tag85 != null">
  2512. #{tag85,jdbcType=FLOAT},
  2513. </if>
  2514. <if test="tag86 != null">
  2515. #{tag86,jdbcType=FLOAT},
  2516. </if>
  2517. <if test="tag87 != null">
  2518. #{tag87,jdbcType=FLOAT},
  2519. </if>
  2520. <if test="tag88 != null">
  2521. #{tag88,jdbcType=FLOAT},
  2522. </if>
  2523. <if test="tag89 != null">
  2524. #{tag89,jdbcType=FLOAT},
  2525. </if>
  2526. <if test="tag90 != null">
  2527. #{tag90,jdbcType=FLOAT},
  2528. </if>
  2529. <if test="tag91 != null">
  2530. #{tag91,jdbcType=FLOAT},
  2531. </if>
  2532. <if test="tag92 != null">
  2533. #{tag92,jdbcType=FLOAT},
  2534. </if>
  2535. <if test="tag93 != null">
  2536. #{tag93,jdbcType=FLOAT},
  2537. </if>
  2538. <if test="tag94 != null">
  2539. #{tag94,jdbcType=FLOAT},
  2540. </if>
  2541. <if test="tag95 != null">
  2542. #{tag95,jdbcType=FLOAT},
  2543. </if>
  2544. <if test="tag96 != null">
  2545. #{tag96,jdbcType=FLOAT},
  2546. </if>
  2547. <if test="tag97 != null">
  2548. #{tag97,jdbcType=FLOAT},
  2549. </if>
  2550. <if test="tag98 != null">
  2551. #{tag98,jdbcType=FLOAT},
  2552. </if>
  2553. <if test="tag99 != null">
  2554. #{tag99,jdbcType=FLOAT},
  2555. </if>
  2556. <if test="tag100 != null">
  2557. #{tag100,jdbcType=FLOAT},
  2558. </if>
  2559. <if test="tag101 != null">
  2560. #{tag101,jdbcType=FLOAT},
  2561. </if>
  2562. <if test="tag45 != null">
  2563. #{tag45,jdbcType=FLOAT},
  2564. </if>
  2565. <if test="tag102 != null">
  2566. #{tag102,jdbcType=FLOAT},
  2567. </if>
  2568. <if test="tag103 != null">
  2569. #{tag103,jdbcType=FLOAT},
  2570. </if>
  2571. <if test="tag104 != null">
  2572. #{tag104,jdbcType=FLOAT},
  2573. </if>
  2574. <if test="tag105 != null">
  2575. #{tag105,jdbcType=FLOAT},
  2576. </if>
  2577. <if test="tag106 != null">
  2578. #{tag106,jdbcType=FLOAT},
  2579. </if>
  2580. <if test="tag107 != null">
  2581. #{tag107,jdbcType=FLOAT},
  2582. </if>
  2583. <if test="tag108 != null">
  2584. #{tag108,jdbcType=FLOAT},
  2585. </if>
  2586. <if test="tag109 != null">
  2587. #{tag109,jdbcType=FLOAT},
  2588. </if>
  2589. <if test="tag110 != null">
  2590. #{tag110,jdbcType=FLOAT},
  2591. </if>
  2592. <if test="tag111 != null">
  2593. #{tag111,jdbcType=FLOAT},
  2594. </if>
  2595. <if test="tag112 != null">
  2596. #{tag112,jdbcType=FLOAT},
  2597. </if>
  2598. <if test="tag113 != null">
  2599. #{tag113,jdbcType=FLOAT},
  2600. </if>
  2601. <if test="tag114 != null">
  2602. #{tag114,jdbcType=FLOAT},
  2603. </if>
  2604. <if test="tag115 != null">
  2605. #{tag115,jdbcType=FLOAT},
  2606. </if>
  2607. <if test="tag116 != null">
  2608. #{tag116,jdbcType=FLOAT},
  2609. </if>
  2610. <if test="tag117 != null">
  2611. #{tag117,jdbcType=FLOAT},
  2612. </if>
  2613. <if test="tag118 != null">
  2614. #{tag118,jdbcType=FLOAT},
  2615. </if>
  2616. <if test="tag119 != null">
  2617. #{tag119,jdbcType=FLOAT},
  2618. </if>
  2619. <if test="tag120 != null">
  2620. #{tag120,jdbcType=FLOAT},
  2621. </if>
  2622. <if test="tag121 != null">
  2623. #{tag121,jdbcType=FLOAT},
  2624. </if>
  2625. <if test="tag122 != null">
  2626. #{tag122,jdbcType=FLOAT},
  2627. </if>
  2628. <if test="tag123 != null">
  2629. #{tag123,jdbcType=FLOAT},
  2630. </if>
  2631. <if test="tag124 != null">
  2632. #{tag124,jdbcType=FLOAT},
  2633. </if>
  2634. <if test="tag125 != null">
  2635. #{tag125,jdbcType=FLOAT},
  2636. </if>
  2637. <if test="tag126 != null">
  2638. #{tag126,jdbcType=FLOAT},
  2639. </if>
  2640. <if test="tag127 != null">
  2641. #{tag127,jdbcType=FLOAT},
  2642. </if>
  2643. <if test="tag128 != null">
  2644. #{tag128,jdbcType=FLOAT},
  2645. </if>
  2646. <if test="tag129 != null">
  2647. #{tag129,jdbcType=FLOAT},
  2648. </if>
  2649. <if test="tag130 != null">
  2650. #{tag130,jdbcType=FLOAT},
  2651. </if>
  2652. <if test="tag131 != null">
  2653. #{tag131,jdbcType=FLOAT},
  2654. </if>
  2655. <if test="tag132 != null">
  2656. #{tag132,jdbcType=FLOAT},
  2657. </if>
  2658. <if test="tag133 != null">
  2659. #{tag133,jdbcType=FLOAT},
  2660. </if>
  2661. <if test="tag134 != null">
  2662. #{tag134,jdbcType=FLOAT},
  2663. </if>
  2664. <if test="tag135 != null">
  2665. #{tag135,jdbcType=FLOAT},
  2666. </if>
  2667. <if test="tag136 != null">
  2668. #{tag136,jdbcType=FLOAT},
  2669. </if>
  2670. <if test="tag137 != null">
  2671. #{tag137,jdbcType=FLOAT},
  2672. </if>
  2673. <if test="tag138 != null">
  2674. #{tag138,jdbcType=FLOAT},
  2675. </if>
  2676. <if test="tag139 != null">
  2677. #{tag139,jdbcType=FLOAT},
  2678. </if>
  2679. <if test="tag140 != null">
  2680. #{tag140,jdbcType=FLOAT},
  2681. </if>
  2682. <if test="tag141 != null">
  2683. #{tag141,jdbcType=FLOAT},
  2684. </if>
  2685. <if test="tag142 != null">
  2686. #{tag142,jdbcType=FLOAT},
  2687. </if>
  2688. <if test="tag143 != null">
  2689. #{tag143,jdbcType=FLOAT},
  2690. </if>
  2691. <if test="tag144 != null">
  2692. #{tag144,jdbcType=FLOAT},
  2693. </if>
  2694. <if test="tag145 != null">
  2695. #{tag145,jdbcType=FLOAT},
  2696. </if>
  2697. <if test="tag146 != null">
  2698. #{tag146,jdbcType=FLOAT},
  2699. </if>
  2700. <if test="tag147 != null">
  2701. #{tag147,jdbcType=FLOAT},
  2702. </if>
  2703. <if test="tag148 != null">
  2704. #{tag148,jdbcType=FLOAT},
  2705. </if>
  2706. <if test="tag149 != null">
  2707. #{tag149,jdbcType=FLOAT},
  2708. </if>
  2709. <if test="tag150 != null">
  2710. #{tag150,jdbcType=FLOAT},
  2711. </if>
  2712. <if test="tag151 != null">
  2713. #{tag151,jdbcType=FLOAT},
  2714. </if>
  2715. <if test="tag152 != null">
  2716. #{tag152,jdbcType=FLOAT},
  2717. </if>
  2718. <if test="tag153 != null">
  2719. #{tag153,jdbcType=FLOAT},
  2720. </if>
  2721. <if test="tag154 != null">
  2722. #{tag154,jdbcType=FLOAT},
  2723. </if>
  2724. <if test="tag155 != null">
  2725. #{tag155,jdbcType=FLOAT},
  2726. </if>
  2727. <if test="tag156 != null">
  2728. #{tag156,jdbcType=FLOAT},
  2729. </if>
  2730. <if test="tag157 != null">
  2731. #{tag157,jdbcType=FLOAT},
  2732. </if>
  2733. <if test="tag158 != null">
  2734. #{tag158,jdbcType=FLOAT},
  2735. </if>
  2736. <if test="tag159 != null">
  2737. #{tag159,jdbcType=FLOAT},
  2738. </if>
  2739. <if test="tag160 != null">
  2740. #{tag160,jdbcType=FLOAT},
  2741. </if>
  2742. </trim>
  2743. </insert>
  2744. <update id="updateByPrimaryKey" parameterType="com.steerinfo.ems.emswaihoursumtab1.model.EmsWAiHourSumTab1">
  2745. update EMS_W_AI_HOUR_SUM_TAB1
  2746. set INSERT_TIME = #{insertTime,jdbcType=TIMESTAMP},
  2747. TAG1 = #{tag1,jdbcType=FLOAT},
  2748. TAG2 = #{tag2,jdbcType=FLOAT},
  2749. TAG3 = #{tag3,jdbcType=FLOAT},
  2750. TAG4 = #{tag4,jdbcType=FLOAT},
  2751. TAG5 = #{tag5,jdbcType=FLOAT},
  2752. TAG6 = #{tag6,jdbcType=FLOAT},
  2753. TAG7 = #{tag7,jdbcType=FLOAT},
  2754. TAG8 = #{tag8,jdbcType=FLOAT},
  2755. TAG9 = #{tag9,jdbcType=FLOAT},
  2756. TAG10 = #{tag10,jdbcType=FLOAT},
  2757. TAG11 = #{tag11,jdbcType=FLOAT},
  2758. TAG12 = #{tag12,jdbcType=FLOAT},
  2759. TAG13 = #{tag13,jdbcType=FLOAT},
  2760. TAG14 = #{tag14,jdbcType=FLOAT},
  2761. TAG15 = #{tag15,jdbcType=FLOAT},
  2762. TAG16 = #{tag16,jdbcType=FLOAT},
  2763. TAG17 = #{tag17,jdbcType=FLOAT},
  2764. TAG18 = #{tag18,jdbcType=FLOAT},
  2765. TAG19 = #{tag19,jdbcType=FLOAT},
  2766. TAG20 = #{tag20,jdbcType=FLOAT},
  2767. TAG21 = #{tag21,jdbcType=FLOAT},
  2768. TAG22 = #{tag22,jdbcType=FLOAT},
  2769. TAG23 = #{tag23,jdbcType=FLOAT},
  2770. TAG24 = #{tag24,jdbcType=FLOAT},
  2771. TAG25 = #{tag25,jdbcType=FLOAT},
  2772. TAG26 = #{tag26,jdbcType=FLOAT},
  2773. TAG27 = #{tag27,jdbcType=FLOAT},
  2774. TAG28 = #{tag28,jdbcType=FLOAT},
  2775. TAG29 = #{tag29,jdbcType=FLOAT},
  2776. TAG30 = #{tag30,jdbcType=FLOAT},
  2777. TAG31 = #{tag31,jdbcType=FLOAT},
  2778. TAG32 = #{tag32,jdbcType=FLOAT},
  2779. TAG33 = #{tag33,jdbcType=FLOAT},
  2780. TAG34 = #{tag34,jdbcType=FLOAT},
  2781. TAG35 = #{tag35,jdbcType=FLOAT},
  2782. TAG36 = #{tag36,jdbcType=FLOAT},
  2783. TAG37 = #{tag37,jdbcType=FLOAT},
  2784. TAG38 = #{tag38,jdbcType=FLOAT},
  2785. TAG39 = #{tag39,jdbcType=FLOAT},
  2786. TAG40 = #{tag40,jdbcType=FLOAT},
  2787. TAG41 = #{tag41,jdbcType=FLOAT},
  2788. TAG42 = #{tag42,jdbcType=FLOAT},
  2789. TAG43 = #{tag43,jdbcType=FLOAT},
  2790. TAG44 = #{tag44,jdbcType=FLOAT},
  2791. TAG46 = #{tag46,jdbcType=FLOAT},
  2792. TAG47 = #{tag47,jdbcType=FLOAT},
  2793. TAG48 = #{tag48,jdbcType=FLOAT},
  2794. TAG49 = #{tag49,jdbcType=FLOAT},
  2795. TAG50 = #{tag50,jdbcType=FLOAT},
  2796. TAG51 = #{tag51,jdbcType=FLOAT},
  2797. TAG52 = #{tag52,jdbcType=FLOAT},
  2798. TAG53 = #{tag53,jdbcType=FLOAT},
  2799. TAG54 = #{tag54,jdbcType=FLOAT},
  2800. TAG55 = #{tag55,jdbcType=FLOAT},
  2801. TAG56 = #{tag56,jdbcType=FLOAT},
  2802. TAG57 = #{tag57,jdbcType=FLOAT},
  2803. TAG58 = #{tag58,jdbcType=FLOAT},
  2804. TAG59 = #{tag59,jdbcType=FLOAT},
  2805. TAG60 = #{tag60,jdbcType=FLOAT},
  2806. TAG61 = #{tag61,jdbcType=FLOAT},
  2807. TAG62 = #{tag62,jdbcType=FLOAT},
  2808. TAG63 = #{tag63,jdbcType=FLOAT},
  2809. TAG64 = #{tag64,jdbcType=FLOAT},
  2810. TAG65 = #{tag65,jdbcType=FLOAT},
  2811. TAG66 = #{tag66,jdbcType=FLOAT},
  2812. TAG67 = #{tag67,jdbcType=FLOAT},
  2813. TAG68 = #{tag68,jdbcType=FLOAT},
  2814. TAG69 = #{tag69,jdbcType=FLOAT},
  2815. TAG70 = #{tag70,jdbcType=FLOAT},
  2816. TAG71 = #{tag71,jdbcType=FLOAT},
  2817. TAG72 = #{tag72,jdbcType=FLOAT},
  2818. TAG73 = #{tag73,jdbcType=FLOAT},
  2819. TAG74 = #{tag74,jdbcType=FLOAT},
  2820. TAG75 = #{tag75,jdbcType=FLOAT},
  2821. TAG76 = #{tag76,jdbcType=FLOAT},
  2822. TAG77 = #{tag77,jdbcType=FLOAT},
  2823. TAG78 = #{tag78,jdbcType=FLOAT},
  2824. TAG79 = #{tag79,jdbcType=FLOAT},
  2825. TAG80 = #{tag80,jdbcType=FLOAT},
  2826. TAG81 = #{tag81,jdbcType=FLOAT},
  2827. TAG82 = #{tag82,jdbcType=FLOAT},
  2828. TAG83 = #{tag83,jdbcType=FLOAT},
  2829. TAG84 = #{tag84,jdbcType=FLOAT},
  2830. TAG85 = #{tag85,jdbcType=FLOAT},
  2831. TAG86 = #{tag86,jdbcType=FLOAT},
  2832. TAG87 = #{tag87,jdbcType=FLOAT},
  2833. TAG88 = #{tag88,jdbcType=FLOAT},
  2834. TAG89 = #{tag89,jdbcType=FLOAT},
  2835. TAG90 = #{tag90,jdbcType=FLOAT},
  2836. TAG91 = #{tag91,jdbcType=FLOAT},
  2837. TAG92 = #{tag92,jdbcType=FLOAT},
  2838. TAG93 = #{tag93,jdbcType=FLOAT},
  2839. TAG94 = #{tag94,jdbcType=FLOAT},
  2840. TAG95 = #{tag95,jdbcType=FLOAT},
  2841. TAG96 = #{tag96,jdbcType=FLOAT},
  2842. TAG97 = #{tag97,jdbcType=FLOAT},
  2843. TAG98 = #{tag98,jdbcType=FLOAT},
  2844. TAG99 = #{tag99,jdbcType=FLOAT},
  2845. TAG100 = #{tag100,jdbcType=FLOAT},
  2846. TAG101 = #{tag101,jdbcType=FLOAT},
  2847. TAG45 = #{tag45,jdbcType=FLOAT},
  2848. TAG102 = #{tag102,jdbcType=FLOAT},
  2849. TAG103 = #{tag103,jdbcType=FLOAT},
  2850. TAG104 = #{tag104,jdbcType=FLOAT},
  2851. TAG105 = #{tag105,jdbcType=FLOAT},
  2852. TAG106 = #{tag106,jdbcType=FLOAT},
  2853. TAG107 = #{tag107,jdbcType=FLOAT},
  2854. TAG108 = #{tag108,jdbcType=FLOAT},
  2855. TAG109 = #{tag109,jdbcType=FLOAT},
  2856. TAG110 = #{tag110,jdbcType=FLOAT},
  2857. TAG111 = #{tag111,jdbcType=FLOAT},
  2858. TAG112 = #{tag112,jdbcType=FLOAT},
  2859. TAG113 = #{tag113,jdbcType=FLOAT},
  2860. TAG114 = #{tag114,jdbcType=FLOAT},
  2861. TAG115 = #{tag115,jdbcType=FLOAT},
  2862. TAG116 = #{tag116,jdbcType=FLOAT},
  2863. TAG117 = #{tag117,jdbcType=FLOAT},
  2864. TAG118 = #{tag118,jdbcType=FLOAT},
  2865. TAG119 = #{tag119,jdbcType=FLOAT},
  2866. TAG120 = #{tag120,jdbcType=FLOAT},
  2867. TAG121 = #{tag121,jdbcType=FLOAT},
  2868. TAG122 = #{tag122,jdbcType=FLOAT},
  2869. TAG123 = #{tag123,jdbcType=FLOAT},
  2870. TAG124 = #{tag124,jdbcType=FLOAT},
  2871. TAG125 = #{tag125,jdbcType=FLOAT},
  2872. TAG126 = #{tag126,jdbcType=FLOAT},
  2873. TAG127 = #{tag127,jdbcType=FLOAT},
  2874. TAG128 = #{tag128,jdbcType=FLOAT},
  2875. TAG129 = #{tag129,jdbcType=FLOAT},
  2876. TAG130 = #{tag130,jdbcType=FLOAT},
  2877. TAG131 = #{tag131,jdbcType=FLOAT},
  2878. TAG132 = #{tag132,jdbcType=FLOAT},
  2879. TAG133 = #{tag133,jdbcType=FLOAT},
  2880. TAG134 = #{tag134,jdbcType=FLOAT},
  2881. TAG135 = #{tag135,jdbcType=FLOAT},
  2882. TAG136 = #{tag136,jdbcType=FLOAT},
  2883. TAG137 = #{tag137,jdbcType=FLOAT},
  2884. TAG138 = #{tag138,jdbcType=FLOAT},
  2885. TAG139 = #{tag139,jdbcType=FLOAT},
  2886. TAG140 = #{tag140,jdbcType=FLOAT},
  2887. TAG141 = #{tag141,jdbcType=FLOAT},
  2888. TAG142 = #{tag142,jdbcType=FLOAT},
  2889. TAG143 = #{tag143,jdbcType=FLOAT},
  2890. TAG144 = #{tag144,jdbcType=FLOAT},
  2891. TAG145 = #{tag145,jdbcType=FLOAT},
  2892. TAG146 = #{tag146,jdbcType=FLOAT},
  2893. TAG147 = #{tag147,jdbcType=FLOAT},
  2894. TAG148 = #{tag148,jdbcType=FLOAT},
  2895. TAG149 = #{tag149,jdbcType=FLOAT},
  2896. TAG150 = #{tag150,jdbcType=FLOAT},
  2897. TAG151 = #{tag151,jdbcType=FLOAT},
  2898. TAG152 = #{tag152,jdbcType=FLOAT},
  2899. TAG153 = #{tag153,jdbcType=FLOAT},
  2900. TAG154 = #{tag154,jdbcType=FLOAT},
  2901. TAG155 = #{tag155,jdbcType=FLOAT},
  2902. TAG156 = #{tag156,jdbcType=FLOAT},
  2903. TAG157 = #{tag157,jdbcType=FLOAT},
  2904. TAG158 = #{tag158,jdbcType=FLOAT},
  2905. TAG159 = #{tag159,jdbcType=FLOAT},
  2906. TAG160 = #{tag160,jdbcType=FLOAT}
  2907. where CLOCK = #{clock,jdbcType=VARCHAR}
  2908. </update>
  2909. <update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.ems.emswaihoursumtab1.model.EmsWAiHourSumTab1">
  2910. update EMS_W_AI_HOUR_SUM_TAB1
  2911. <set>
  2912. <if test="insertTime != null">
  2913. INSERT_TIME = #{insertTime,jdbcType=TIMESTAMP},
  2914. </if>
  2915. <if test="tag1 != null">
  2916. TAG1 = #{tag1,jdbcType=FLOAT},
  2917. </if>
  2918. <if test="tag2 != null">
  2919. TAG2 = #{tag2,jdbcType=FLOAT},
  2920. </if>
  2921. <if test="tag3 != null">
  2922. TAG3 = #{tag3,jdbcType=FLOAT},
  2923. </if>
  2924. <if test="tag4 != null">
  2925. TAG4 = #{tag4,jdbcType=FLOAT},
  2926. </if>
  2927. <if test="tag5 != null">
  2928. TAG5 = #{tag5,jdbcType=FLOAT},
  2929. </if>
  2930. <if test="tag6 != null">
  2931. TAG6 = #{tag6,jdbcType=FLOAT},
  2932. </if>
  2933. <if test="tag7 != null">
  2934. TAG7 = #{tag7,jdbcType=FLOAT},
  2935. </if>
  2936. <if test="tag8 != null">
  2937. TAG8 = #{tag8,jdbcType=FLOAT},
  2938. </if>
  2939. <if test="tag9 != null">
  2940. TAG9 = #{tag9,jdbcType=FLOAT},
  2941. </if>
  2942. <if test="tag10 != null">
  2943. TAG10 = #{tag10,jdbcType=FLOAT},
  2944. </if>
  2945. <if test="tag11 != null">
  2946. TAG11 = #{tag11,jdbcType=FLOAT},
  2947. </if>
  2948. <if test="tag12 != null">
  2949. TAG12 = #{tag12,jdbcType=FLOAT},
  2950. </if>
  2951. <if test="tag13 != null">
  2952. TAG13 = #{tag13,jdbcType=FLOAT},
  2953. </if>
  2954. <if test="tag14 != null">
  2955. TAG14 = #{tag14,jdbcType=FLOAT},
  2956. </if>
  2957. <if test="tag15 != null">
  2958. TAG15 = #{tag15,jdbcType=FLOAT},
  2959. </if>
  2960. <if test="tag16 != null">
  2961. TAG16 = #{tag16,jdbcType=FLOAT},
  2962. </if>
  2963. <if test="tag17 != null">
  2964. TAG17 = #{tag17,jdbcType=FLOAT},
  2965. </if>
  2966. <if test="tag18 != null">
  2967. TAG18 = #{tag18,jdbcType=FLOAT},
  2968. </if>
  2969. <if test="tag19 != null">
  2970. TAG19 = #{tag19,jdbcType=FLOAT},
  2971. </if>
  2972. <if test="tag20 != null">
  2973. TAG20 = #{tag20,jdbcType=FLOAT},
  2974. </if>
  2975. <if test="tag21 != null">
  2976. TAG21 = #{tag21,jdbcType=FLOAT},
  2977. </if>
  2978. <if test="tag22 != null">
  2979. TAG22 = #{tag22,jdbcType=FLOAT},
  2980. </if>
  2981. <if test="tag23 != null">
  2982. TAG23 = #{tag23,jdbcType=FLOAT},
  2983. </if>
  2984. <if test="tag24 != null">
  2985. TAG24 = #{tag24,jdbcType=FLOAT},
  2986. </if>
  2987. <if test="tag25 != null">
  2988. TAG25 = #{tag25,jdbcType=FLOAT},
  2989. </if>
  2990. <if test="tag26 != null">
  2991. TAG26 = #{tag26,jdbcType=FLOAT},
  2992. </if>
  2993. <if test="tag27 != null">
  2994. TAG27 = #{tag27,jdbcType=FLOAT},
  2995. </if>
  2996. <if test="tag28 != null">
  2997. TAG28 = #{tag28,jdbcType=FLOAT},
  2998. </if>
  2999. <if test="tag29 != null">
  3000. TAG29 = #{tag29,jdbcType=FLOAT},
  3001. </if>
  3002. <if test="tag30 != null">
  3003. TAG30 = #{tag30,jdbcType=FLOAT},
  3004. </if>
  3005. <if test="tag31 != null">
  3006. TAG31 = #{tag31,jdbcType=FLOAT},
  3007. </if>
  3008. <if test="tag32 != null">
  3009. TAG32 = #{tag32,jdbcType=FLOAT},
  3010. </if>
  3011. <if test="tag33 != null">
  3012. TAG33 = #{tag33,jdbcType=FLOAT},
  3013. </if>
  3014. <if test="tag34 != null">
  3015. TAG34 = #{tag34,jdbcType=FLOAT},
  3016. </if>
  3017. <if test="tag35 != null">
  3018. TAG35 = #{tag35,jdbcType=FLOAT},
  3019. </if>
  3020. <if test="tag36 != null">
  3021. TAG36 = #{tag36,jdbcType=FLOAT},
  3022. </if>
  3023. <if test="tag37 != null">
  3024. TAG37 = #{tag37,jdbcType=FLOAT},
  3025. </if>
  3026. <if test="tag38 != null">
  3027. TAG38 = #{tag38,jdbcType=FLOAT},
  3028. </if>
  3029. <if test="tag39 != null">
  3030. TAG39 = #{tag39,jdbcType=FLOAT},
  3031. </if>
  3032. <if test="tag40 != null">
  3033. TAG40 = #{tag40,jdbcType=FLOAT},
  3034. </if>
  3035. <if test="tag41 != null">
  3036. TAG41 = #{tag41,jdbcType=FLOAT},
  3037. </if>
  3038. <if test="tag42 != null">
  3039. TAG42 = #{tag42,jdbcType=FLOAT},
  3040. </if>
  3041. <if test="tag43 != null">
  3042. TAG43 = #{tag43,jdbcType=FLOAT},
  3043. </if>
  3044. <if test="tag44 != null">
  3045. TAG44 = #{tag44,jdbcType=FLOAT},
  3046. </if>
  3047. <if test="tag46 != null">
  3048. TAG46 = #{tag46,jdbcType=FLOAT},
  3049. </if>
  3050. <if test="tag47 != null">
  3051. TAG47 = #{tag47,jdbcType=FLOAT},
  3052. </if>
  3053. <if test="tag48 != null">
  3054. TAG48 = #{tag48,jdbcType=FLOAT},
  3055. </if>
  3056. <if test="tag49 != null">
  3057. TAG49 = #{tag49,jdbcType=FLOAT},
  3058. </if>
  3059. <if test="tag50 != null">
  3060. TAG50 = #{tag50,jdbcType=FLOAT},
  3061. </if>
  3062. <if test="tag51 != null">
  3063. TAG51 = #{tag51,jdbcType=FLOAT},
  3064. </if>
  3065. <if test="tag52 != null">
  3066. TAG52 = #{tag52,jdbcType=FLOAT},
  3067. </if>
  3068. <if test="tag53 != null">
  3069. TAG53 = #{tag53,jdbcType=FLOAT},
  3070. </if>
  3071. <if test="tag54 != null">
  3072. TAG54 = #{tag54,jdbcType=FLOAT},
  3073. </if>
  3074. <if test="tag55 != null">
  3075. TAG55 = #{tag55,jdbcType=FLOAT},
  3076. </if>
  3077. <if test="tag56 != null">
  3078. TAG56 = #{tag56,jdbcType=FLOAT},
  3079. </if>
  3080. <if test="tag57 != null">
  3081. TAG57 = #{tag57,jdbcType=FLOAT},
  3082. </if>
  3083. <if test="tag58 != null">
  3084. TAG58 = #{tag58,jdbcType=FLOAT},
  3085. </if>
  3086. <if test="tag59 != null">
  3087. TAG59 = #{tag59,jdbcType=FLOAT},
  3088. </if>
  3089. <if test="tag60 != null">
  3090. TAG60 = #{tag60,jdbcType=FLOAT},
  3091. </if>
  3092. <if test="tag61 != null">
  3093. TAG61 = #{tag61,jdbcType=FLOAT},
  3094. </if>
  3095. <if test="tag62 != null">
  3096. TAG62 = #{tag62,jdbcType=FLOAT},
  3097. </if>
  3098. <if test="tag63 != null">
  3099. TAG63 = #{tag63,jdbcType=FLOAT},
  3100. </if>
  3101. <if test="tag64 != null">
  3102. TAG64 = #{tag64,jdbcType=FLOAT},
  3103. </if>
  3104. <if test="tag65 != null">
  3105. TAG65 = #{tag65,jdbcType=FLOAT},
  3106. </if>
  3107. <if test="tag66 != null">
  3108. TAG66 = #{tag66,jdbcType=FLOAT},
  3109. </if>
  3110. <if test="tag67 != null">
  3111. TAG67 = #{tag67,jdbcType=FLOAT},
  3112. </if>
  3113. <if test="tag68 != null">
  3114. TAG68 = #{tag68,jdbcType=FLOAT},
  3115. </if>
  3116. <if test="tag69 != null">
  3117. TAG69 = #{tag69,jdbcType=FLOAT},
  3118. </if>
  3119. <if test="tag70 != null">
  3120. TAG70 = #{tag70,jdbcType=FLOAT},
  3121. </if>
  3122. <if test="tag71 != null">
  3123. TAG71 = #{tag71,jdbcType=FLOAT},
  3124. </if>
  3125. <if test="tag72 != null">
  3126. TAG72 = #{tag72,jdbcType=FLOAT},
  3127. </if>
  3128. <if test="tag73 != null">
  3129. TAG73 = #{tag73,jdbcType=FLOAT},
  3130. </if>
  3131. <if test="tag74 != null">
  3132. TAG74 = #{tag74,jdbcType=FLOAT},
  3133. </if>
  3134. <if test="tag75 != null">
  3135. TAG75 = #{tag75,jdbcType=FLOAT},
  3136. </if>
  3137. <if test="tag76 != null">
  3138. TAG76 = #{tag76,jdbcType=FLOAT},
  3139. </if>
  3140. <if test="tag77 != null">
  3141. TAG77 = #{tag77,jdbcType=FLOAT},
  3142. </if>
  3143. <if test="tag78 != null">
  3144. TAG78 = #{tag78,jdbcType=FLOAT},
  3145. </if>
  3146. <if test="tag79 != null">
  3147. TAG79 = #{tag79,jdbcType=FLOAT},
  3148. </if>
  3149. <if test="tag80 != null">
  3150. TAG80 = #{tag80,jdbcType=FLOAT},
  3151. </if>
  3152. <if test="tag81 != null">
  3153. TAG81 = #{tag81,jdbcType=FLOAT},
  3154. </if>
  3155. <if test="tag82 != null">
  3156. TAG82 = #{tag82,jdbcType=FLOAT},
  3157. </if>
  3158. <if test="tag83 != null">
  3159. TAG83 = #{tag83,jdbcType=FLOAT},
  3160. </if>
  3161. <if test="tag84 != null">
  3162. TAG84 = #{tag84,jdbcType=FLOAT},
  3163. </if>
  3164. <if test="tag85 != null">
  3165. TAG85 = #{tag85,jdbcType=FLOAT},
  3166. </if>
  3167. <if test="tag86 != null">
  3168. TAG86 = #{tag86,jdbcType=FLOAT},
  3169. </if>
  3170. <if test="tag87 != null">
  3171. TAG87 = #{tag87,jdbcType=FLOAT},
  3172. </if>
  3173. <if test="tag88 != null">
  3174. TAG88 = #{tag88,jdbcType=FLOAT},
  3175. </if>
  3176. <if test="tag89 != null">
  3177. TAG89 = #{tag89,jdbcType=FLOAT},
  3178. </if>
  3179. <if test="tag90 != null">
  3180. TAG90 = #{tag90,jdbcType=FLOAT},
  3181. </if>
  3182. <if test="tag91 != null">
  3183. TAG91 = #{tag91,jdbcType=FLOAT},
  3184. </if>
  3185. <if test="tag92 != null">
  3186. TAG92 = #{tag92,jdbcType=FLOAT},
  3187. </if>
  3188. <if test="tag93 != null">
  3189. TAG93 = #{tag93,jdbcType=FLOAT},
  3190. </if>
  3191. <if test="tag94 != null">
  3192. TAG94 = #{tag94,jdbcType=FLOAT},
  3193. </if>
  3194. <if test="tag95 != null">
  3195. TAG95 = #{tag95,jdbcType=FLOAT},
  3196. </if>
  3197. <if test="tag96 != null">
  3198. TAG96 = #{tag96,jdbcType=FLOAT},
  3199. </if>
  3200. <if test="tag97 != null">
  3201. TAG97 = #{tag97,jdbcType=FLOAT},
  3202. </if>
  3203. <if test="tag98 != null">
  3204. TAG98 = #{tag98,jdbcType=FLOAT},
  3205. </if>
  3206. <if test="tag99 != null">
  3207. TAG99 = #{tag99,jdbcType=FLOAT},
  3208. </if>
  3209. <if test="tag100 != null">
  3210. TAG100 = #{tag100,jdbcType=FLOAT},
  3211. </if>
  3212. <if test="tag101 != null">
  3213. TAG101 = #{tag101,jdbcType=FLOAT},
  3214. </if>
  3215. <if test="tag45 != null">
  3216. TAG45 = #{tag45,jdbcType=FLOAT},
  3217. </if>
  3218. <if test="tag102 != null">
  3219. TAG102 = #{tag102,jdbcType=FLOAT},
  3220. </if>
  3221. <if test="tag103 != null">
  3222. TAG103 = #{tag103,jdbcType=FLOAT},
  3223. </if>
  3224. <if test="tag104 != null">
  3225. TAG104 = #{tag104,jdbcType=FLOAT},
  3226. </if>
  3227. <if test="tag105 != null">
  3228. TAG105 = #{tag105,jdbcType=FLOAT},
  3229. </if>
  3230. <if test="tag106 != null">
  3231. TAG106 = #{tag106,jdbcType=FLOAT},
  3232. </if>
  3233. <if test="tag107 != null">
  3234. TAG107 = #{tag107,jdbcType=FLOAT},
  3235. </if>
  3236. <if test="tag108 != null">
  3237. TAG108 = #{tag108,jdbcType=FLOAT},
  3238. </if>
  3239. <if test="tag109 != null">
  3240. TAG109 = #{tag109,jdbcType=FLOAT},
  3241. </if>
  3242. <if test="tag110 != null">
  3243. TAG110 = #{tag110,jdbcType=FLOAT},
  3244. </if>
  3245. <if test="tag111 != null">
  3246. TAG111 = #{tag111,jdbcType=FLOAT},
  3247. </if>
  3248. <if test="tag112 != null">
  3249. TAG112 = #{tag112,jdbcType=FLOAT},
  3250. </if>
  3251. <if test="tag113 != null">
  3252. TAG113 = #{tag113,jdbcType=FLOAT},
  3253. </if>
  3254. <if test="tag114 != null">
  3255. TAG114 = #{tag114,jdbcType=FLOAT},
  3256. </if>
  3257. <if test="tag115 != null">
  3258. TAG115 = #{tag115,jdbcType=FLOAT},
  3259. </if>
  3260. <if test="tag116 != null">
  3261. TAG116 = #{tag116,jdbcType=FLOAT},
  3262. </if>
  3263. <if test="tag117 != null">
  3264. TAG117 = #{tag117,jdbcType=FLOAT},
  3265. </if>
  3266. <if test="tag118 != null">
  3267. TAG118 = #{tag118,jdbcType=FLOAT},
  3268. </if>
  3269. <if test="tag119 != null">
  3270. TAG119 = #{tag119,jdbcType=FLOAT},
  3271. </if>
  3272. <if test="tag120 != null">
  3273. TAG120 = #{tag120,jdbcType=FLOAT},
  3274. </if>
  3275. <if test="tag121 != null">
  3276. TAG121 = #{tag121,jdbcType=FLOAT},
  3277. </if>
  3278. <if test="tag122 != null">
  3279. TAG122 = #{tag122,jdbcType=FLOAT},
  3280. </if>
  3281. <if test="tag123 != null">
  3282. TAG123 = #{tag123,jdbcType=FLOAT},
  3283. </if>
  3284. <if test="tag124 != null">
  3285. TAG124 = #{tag124,jdbcType=FLOAT},
  3286. </if>
  3287. <if test="tag125 != null">
  3288. TAG125 = #{tag125,jdbcType=FLOAT},
  3289. </if>
  3290. <if test="tag126 != null">
  3291. TAG126 = #{tag126,jdbcType=FLOAT},
  3292. </if>
  3293. <if test="tag127 != null">
  3294. TAG127 = #{tag127,jdbcType=FLOAT},
  3295. </if>
  3296. <if test="tag128 != null">
  3297. TAG128 = #{tag128,jdbcType=FLOAT},
  3298. </if>
  3299. <if test="tag129 != null">
  3300. TAG129 = #{tag129,jdbcType=FLOAT},
  3301. </if>
  3302. <if test="tag130 != null">
  3303. TAG130 = #{tag130,jdbcType=FLOAT},
  3304. </if>
  3305. <if test="tag131 != null">
  3306. TAG131 = #{tag131,jdbcType=FLOAT},
  3307. </if>
  3308. <if test="tag132 != null">
  3309. TAG132 = #{tag132,jdbcType=FLOAT},
  3310. </if>
  3311. <if test="tag133 != null">
  3312. TAG133 = #{tag133,jdbcType=FLOAT},
  3313. </if>
  3314. <if test="tag134 != null">
  3315. TAG134 = #{tag134,jdbcType=FLOAT},
  3316. </if>
  3317. <if test="tag135 != null">
  3318. TAG135 = #{tag135,jdbcType=FLOAT},
  3319. </if>
  3320. <if test="tag136 != null">
  3321. TAG136 = #{tag136,jdbcType=FLOAT},
  3322. </if>
  3323. <if test="tag137 != null">
  3324. TAG137 = #{tag137,jdbcType=FLOAT},
  3325. </if>
  3326. <if test="tag138 != null">
  3327. TAG138 = #{tag138,jdbcType=FLOAT},
  3328. </if>
  3329. <if test="tag139 != null">
  3330. TAG139 = #{tag139,jdbcType=FLOAT},
  3331. </if>
  3332. <if test="tag140 != null">
  3333. TAG140 = #{tag140,jdbcType=FLOAT},
  3334. </if>
  3335. <if test="tag141 != null">
  3336. TAG141 = #{tag141,jdbcType=FLOAT},
  3337. </if>
  3338. <if test="tag142 != null">
  3339. TAG142 = #{tag142,jdbcType=FLOAT},
  3340. </if>
  3341. <if test="tag143 != null">
  3342. TAG143 = #{tag143,jdbcType=FLOAT},
  3343. </if>
  3344. <if test="tag144 != null">
  3345. TAG144 = #{tag144,jdbcType=FLOAT},
  3346. </if>
  3347. <if test="tag145 != null">
  3348. TAG145 = #{tag145,jdbcType=FLOAT},
  3349. </if>
  3350. <if test="tag146 != null">
  3351. TAG146 = #{tag146,jdbcType=FLOAT},
  3352. </if>
  3353. <if test="tag147 != null">
  3354. TAG147 = #{tag147,jdbcType=FLOAT},
  3355. </if>
  3356. <if test="tag148 != null">
  3357. TAG148 = #{tag148,jdbcType=FLOAT},
  3358. </if>
  3359. <if test="tag149 != null">
  3360. TAG149 = #{tag149,jdbcType=FLOAT},
  3361. </if>
  3362. <if test="tag150 != null">
  3363. TAG150 = #{tag150,jdbcType=FLOAT},
  3364. </if>
  3365. <if test="tag151 != null">
  3366. TAG151 = #{tag151,jdbcType=FLOAT},
  3367. </if>
  3368. <if test="tag152 != null">
  3369. TAG152 = #{tag152,jdbcType=FLOAT},
  3370. </if>
  3371. <if test="tag153 != null">
  3372. TAG153 = #{tag153,jdbcType=FLOAT},
  3373. </if>
  3374. <if test="tag154 != null">
  3375. TAG154 = #{tag154,jdbcType=FLOAT},
  3376. </if>
  3377. <if test="tag155 != null">
  3378. TAG155 = #{tag155,jdbcType=FLOAT},
  3379. </if>
  3380. <if test="tag156 != null">
  3381. TAG156 = #{tag156,jdbcType=FLOAT},
  3382. </if>
  3383. <if test="tag157 != null">
  3384. TAG157 = #{tag157,jdbcType=FLOAT},
  3385. </if>
  3386. <if test="tag158 != null">
  3387. TAG158 = #{tag158,jdbcType=FLOAT},
  3388. </if>
  3389. <if test="tag159 != null">
  3390. TAG159 = #{tag159,jdbcType=FLOAT},
  3391. </if>
  3392. <if test="tag160 != null">
  3393. TAG160 = #{tag160,jdbcType=FLOAT},
  3394. </if>
  3395. </set>
  3396. where CLOCK = #{clock,jdbcType=VARCHAR}
  3397. </update>
  3398. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  3399. <include refid="select"/>
  3400. where CLOCK = #{clock,jdbcType=VARCHAR}
  3401. </select>
  3402. <select id="selectByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
  3403. <include refid="select"/>
  3404. <include refid="where"/>
  3405. </select>
  3406. <select id="selectLikeByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
  3407. <include refid="select"/>
  3408. <include refid="whereLike"/>
  3409. </select>
  3410. <insert id="batchInsert" parameterType="java.util.List">
  3411. insert into EMS_W_AI_HOUR_SUM_TAB1
  3412. (CLOCK,
  3413. INSERT_TIME, TAG1, TAG2,
  3414. TAG3, TAG4, TAG5,
  3415. TAG6, TAG7, TAG8,
  3416. TAG9, TAG10, TAG11,
  3417. TAG12, TAG13, TAG14,
  3418. TAG15, TAG16, TAG17,
  3419. TAG18, TAG19, TAG20,
  3420. TAG21, TAG22, TAG23,
  3421. TAG24, TAG25, TAG26,
  3422. TAG27, TAG28, TAG29,
  3423. TAG30, TAG31, TAG32,
  3424. TAG33, TAG34, TAG35,
  3425. TAG36, TAG37, TAG38,
  3426. TAG39, TAG40, TAG41,
  3427. TAG42, TAG43, TAG44,
  3428. TAG46, TAG47, TAG48,
  3429. TAG49, TAG50, TAG51,
  3430. TAG52, TAG53, TAG54,
  3431. TAG55, TAG56, TAG57,
  3432. TAG58, TAG59, TAG60,
  3433. TAG61, TAG62, TAG63,
  3434. TAG64, TAG65, TAG66,
  3435. TAG67, TAG68, TAG69,
  3436. TAG70, TAG71, TAG72,
  3437. TAG73, TAG74, TAG75,
  3438. TAG76, TAG77, TAG78,
  3439. TAG79, TAG80, TAG81,
  3440. TAG82, TAG83, TAG84,
  3441. TAG85, TAG86, TAG87,
  3442. TAG88, TAG89, TAG90,
  3443. TAG91, TAG92, TAG93,
  3444. TAG94, TAG95, TAG96,
  3445. TAG97, TAG98, TAG99,
  3446. TAG100, TAG101, TAG45,
  3447. TAG102, TAG103, TAG104,
  3448. TAG105, TAG106, TAG107,
  3449. TAG108, TAG109, TAG110,
  3450. TAG111, TAG112, TAG113,
  3451. TAG114, TAG115, TAG116,
  3452. TAG117, TAG118, TAG119,
  3453. TAG120, TAG121, TAG122,
  3454. TAG123, TAG124, TAG125,
  3455. TAG126, TAG127, TAG128,
  3456. TAG129, TAG130, TAG131,
  3457. TAG132, TAG133, TAG134,
  3458. TAG135, TAG136, TAG137,
  3459. TAG138, TAG139, TAG140,
  3460. TAG141, TAG142, TAG143,
  3461. TAG144, TAG145, TAG146,
  3462. TAG147, TAG148, TAG149,
  3463. TAG150, TAG151, TAG152,
  3464. TAG153, TAG154, TAG155,
  3465. TAG156, TAG157, TAG158,
  3466. TAG159, TAG160)
  3467. ( <foreach collection="list" item="item" separator="union all">
  3468. select
  3469. #{item.clock,jdbcType=VARCHAR},
  3470. #{item.insertTime,jdbcType=TIMESTAMP}, #{item.tag1,jdbcType=FLOAT}, #{item.tag2,jdbcType=FLOAT},
  3471. #{item.tag3,jdbcType=FLOAT}, #{item.tag4,jdbcType=FLOAT}, #{item.tag5,jdbcType=FLOAT},
  3472. #{item.tag6,jdbcType=FLOAT}, #{item.tag7,jdbcType=FLOAT}, #{item.tag8,jdbcType=FLOAT},
  3473. #{item.tag9,jdbcType=FLOAT}, #{item.tag10,jdbcType=FLOAT}, #{item.tag11,jdbcType=FLOAT},
  3474. #{item.tag12,jdbcType=FLOAT}, #{item.tag13,jdbcType=FLOAT}, #{item.tag14,jdbcType=FLOAT},
  3475. #{item.tag15,jdbcType=FLOAT}, #{item.tag16,jdbcType=FLOAT}, #{item.tag17,jdbcType=FLOAT},
  3476. #{item.tag18,jdbcType=FLOAT}, #{item.tag19,jdbcType=FLOAT}, #{item.tag20,jdbcType=FLOAT},
  3477. #{item.tag21,jdbcType=FLOAT}, #{item.tag22,jdbcType=FLOAT}, #{item.tag23,jdbcType=FLOAT},
  3478. #{item.tag24,jdbcType=FLOAT}, #{item.tag25,jdbcType=FLOAT}, #{item.tag26,jdbcType=FLOAT},
  3479. #{item.tag27,jdbcType=FLOAT}, #{item.tag28,jdbcType=FLOAT}, #{item.tag29,jdbcType=FLOAT},
  3480. #{item.tag30,jdbcType=FLOAT}, #{item.tag31,jdbcType=FLOAT}, #{item.tag32,jdbcType=FLOAT},
  3481. #{item.tag33,jdbcType=FLOAT}, #{item.tag34,jdbcType=FLOAT}, #{item.tag35,jdbcType=FLOAT},
  3482. #{item.tag36,jdbcType=FLOAT}, #{item.tag37,jdbcType=FLOAT}, #{item.tag38,jdbcType=FLOAT},
  3483. #{item.tag39,jdbcType=FLOAT}, #{item.tag40,jdbcType=FLOAT}, #{item.tag41,jdbcType=FLOAT},
  3484. #{item.tag42,jdbcType=FLOAT}, #{item.tag43,jdbcType=FLOAT}, #{item.tag44,jdbcType=FLOAT},
  3485. #{item.tag46,jdbcType=FLOAT}, #{item.tag47,jdbcType=FLOAT}, #{item.tag48,jdbcType=FLOAT},
  3486. #{item.tag49,jdbcType=FLOAT}, #{item.tag50,jdbcType=FLOAT}, #{item.tag51,jdbcType=FLOAT},
  3487. #{item.tag52,jdbcType=FLOAT}, #{item.tag53,jdbcType=FLOAT}, #{item.tag54,jdbcType=FLOAT},
  3488. #{item.tag55,jdbcType=FLOAT}, #{item.tag56,jdbcType=FLOAT}, #{item.tag57,jdbcType=FLOAT},
  3489. #{item.tag58,jdbcType=FLOAT}, #{item.tag59,jdbcType=FLOAT}, #{item.tag60,jdbcType=FLOAT},
  3490. #{item.tag61,jdbcType=FLOAT}, #{item.tag62,jdbcType=FLOAT}, #{item.tag63,jdbcType=FLOAT},
  3491. #{item.tag64,jdbcType=FLOAT}, #{item.tag65,jdbcType=FLOAT}, #{item.tag66,jdbcType=FLOAT},
  3492. #{item.tag67,jdbcType=FLOAT}, #{item.tag68,jdbcType=FLOAT}, #{item.tag69,jdbcType=FLOAT},
  3493. #{item.tag70,jdbcType=FLOAT}, #{item.tag71,jdbcType=FLOAT}, #{item.tag72,jdbcType=FLOAT},
  3494. #{item.tag73,jdbcType=FLOAT}, #{item.tag74,jdbcType=FLOAT}, #{item.tag75,jdbcType=FLOAT},
  3495. #{item.tag76,jdbcType=FLOAT}, #{item.tag77,jdbcType=FLOAT}, #{item.tag78,jdbcType=FLOAT},
  3496. #{item.tag79,jdbcType=FLOAT}, #{item.tag80,jdbcType=FLOAT}, #{item.tag81,jdbcType=FLOAT},
  3497. #{item.tag82,jdbcType=FLOAT}, #{item.tag83,jdbcType=FLOAT}, #{item.tag84,jdbcType=FLOAT},
  3498. #{item.tag85,jdbcType=FLOAT}, #{item.tag86,jdbcType=FLOAT}, #{item.tag87,jdbcType=FLOAT},
  3499. #{item.tag88,jdbcType=FLOAT}, #{item.tag89,jdbcType=FLOAT}, #{item.tag90,jdbcType=FLOAT},
  3500. #{item.tag91,jdbcType=FLOAT}, #{item.tag92,jdbcType=FLOAT}, #{item.tag93,jdbcType=FLOAT},
  3501. #{item.tag94,jdbcType=FLOAT}, #{item.tag95,jdbcType=FLOAT}, #{item.tag96,jdbcType=FLOAT},
  3502. #{item.tag97,jdbcType=FLOAT}, #{item.tag98,jdbcType=FLOAT}, #{item.tag99,jdbcType=FLOAT},
  3503. #{item.tag100,jdbcType=FLOAT}, #{item.tag101,jdbcType=FLOAT}, #{item.tag45,jdbcType=FLOAT},
  3504. #{item.tag102,jdbcType=FLOAT}, #{item.tag103,jdbcType=FLOAT}, #{item.tag104,jdbcType=FLOAT},
  3505. #{item.tag105,jdbcType=FLOAT}, #{item.tag106,jdbcType=FLOAT}, #{item.tag107,jdbcType=FLOAT},
  3506. #{item.tag108,jdbcType=FLOAT}, #{item.tag109,jdbcType=FLOAT}, #{item.tag110,jdbcType=FLOAT},
  3507. #{item.tag111,jdbcType=FLOAT}, #{item.tag112,jdbcType=FLOAT}, #{item.tag113,jdbcType=FLOAT},
  3508. #{item.tag114,jdbcType=FLOAT}, #{item.tag115,jdbcType=FLOAT}, #{item.tag116,jdbcType=FLOAT},
  3509. #{item.tag117,jdbcType=FLOAT}, #{item.tag118,jdbcType=FLOAT}, #{item.tag119,jdbcType=FLOAT},
  3510. #{item.tag120,jdbcType=FLOAT}, #{item.tag121,jdbcType=FLOAT}, #{item.tag122,jdbcType=FLOAT},
  3511. #{item.tag123,jdbcType=FLOAT}, #{item.tag124,jdbcType=FLOAT}, #{item.tag125,jdbcType=FLOAT},
  3512. #{item.tag126,jdbcType=FLOAT}, #{item.tag127,jdbcType=FLOAT}, #{item.tag128,jdbcType=FLOAT},
  3513. #{item.tag129,jdbcType=FLOAT}, #{item.tag130,jdbcType=FLOAT}, #{item.tag131,jdbcType=FLOAT},
  3514. #{item.tag132,jdbcType=FLOAT}, #{item.tag133,jdbcType=FLOAT}, #{item.tag134,jdbcType=FLOAT},
  3515. #{item.tag135,jdbcType=FLOAT}, #{item.tag136,jdbcType=FLOAT}, #{item.tag137,jdbcType=FLOAT},
  3516. #{item.tag138,jdbcType=FLOAT}, #{item.tag139,jdbcType=FLOAT}, #{item.tag140,jdbcType=FLOAT},
  3517. #{item.tag141,jdbcType=FLOAT}, #{item.tag142,jdbcType=FLOAT}, #{item.tag143,jdbcType=FLOAT},
  3518. #{item.tag144,jdbcType=FLOAT}, #{item.tag145,jdbcType=FLOAT}, #{item.tag146,jdbcType=FLOAT},
  3519. #{item.tag147,jdbcType=FLOAT}, #{item.tag148,jdbcType=FLOAT}, #{item.tag149,jdbcType=FLOAT},
  3520. #{item.tag150,jdbcType=FLOAT}, #{item.tag151,jdbcType=FLOAT}, #{item.tag152,jdbcType=FLOAT},
  3521. #{item.tag153,jdbcType=FLOAT}, #{item.tag154,jdbcType=FLOAT}, #{item.tag155,jdbcType=FLOAT},
  3522. #{item.tag156,jdbcType=FLOAT}, #{item.tag157,jdbcType=FLOAT}, #{item.tag158,jdbcType=FLOAT},
  3523. #{item.tag159,jdbcType=FLOAT}, #{item.tag160,jdbcType=FLOAT} from dual
  3524. </foreach> )
  3525. </insert>
  3526. <update id="batchUpdate" parameterType="java.util.List">
  3527. update EMS_W_AI_HOUR_SUM_TAB1
  3528. set
  3529. CLOCK=
  3530. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3531. when #{item.clock,jdbcType=VARCHAR} then #{item.clock,jdbcType=VARCHAR}
  3532. </foreach>
  3533. ,INSERT_TIME=
  3534. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3535. when #{item.clock,jdbcType=VARCHAR} then #{item.insertTime,jdbcType=TIMESTAMP}
  3536. </foreach>
  3537. ,TAG1=
  3538. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3539. when #{item.clock,jdbcType=VARCHAR} then #{item.tag1,jdbcType=FLOAT}
  3540. </foreach>
  3541. ,TAG2=
  3542. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3543. when #{item.clock,jdbcType=VARCHAR} then #{item.tag2,jdbcType=FLOAT}
  3544. </foreach>
  3545. ,TAG3=
  3546. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3547. when #{item.clock,jdbcType=VARCHAR} then #{item.tag3,jdbcType=FLOAT}
  3548. </foreach>
  3549. ,TAG4=
  3550. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3551. when #{item.clock,jdbcType=VARCHAR} then #{item.tag4,jdbcType=FLOAT}
  3552. </foreach>
  3553. ,TAG5=
  3554. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3555. when #{item.clock,jdbcType=VARCHAR} then #{item.tag5,jdbcType=FLOAT}
  3556. </foreach>
  3557. ,TAG6=
  3558. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3559. when #{item.clock,jdbcType=VARCHAR} then #{item.tag6,jdbcType=FLOAT}
  3560. </foreach>
  3561. ,TAG7=
  3562. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3563. when #{item.clock,jdbcType=VARCHAR} then #{item.tag7,jdbcType=FLOAT}
  3564. </foreach>
  3565. ,TAG8=
  3566. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3567. when #{item.clock,jdbcType=VARCHAR} then #{item.tag8,jdbcType=FLOAT}
  3568. </foreach>
  3569. ,TAG9=
  3570. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3571. when #{item.clock,jdbcType=VARCHAR} then #{item.tag9,jdbcType=FLOAT}
  3572. </foreach>
  3573. ,TAG10=
  3574. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3575. when #{item.clock,jdbcType=VARCHAR} then #{item.tag10,jdbcType=FLOAT}
  3576. </foreach>
  3577. ,TAG11=
  3578. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3579. when #{item.clock,jdbcType=VARCHAR} then #{item.tag11,jdbcType=FLOAT}
  3580. </foreach>
  3581. ,TAG12=
  3582. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3583. when #{item.clock,jdbcType=VARCHAR} then #{item.tag12,jdbcType=FLOAT}
  3584. </foreach>
  3585. ,TAG13=
  3586. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3587. when #{item.clock,jdbcType=VARCHAR} then #{item.tag13,jdbcType=FLOAT}
  3588. </foreach>
  3589. ,TAG14=
  3590. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3591. when #{item.clock,jdbcType=VARCHAR} then #{item.tag14,jdbcType=FLOAT}
  3592. </foreach>
  3593. ,TAG15=
  3594. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3595. when #{item.clock,jdbcType=VARCHAR} then #{item.tag15,jdbcType=FLOAT}
  3596. </foreach>
  3597. ,TAG16=
  3598. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3599. when #{item.clock,jdbcType=VARCHAR} then #{item.tag16,jdbcType=FLOAT}
  3600. </foreach>
  3601. ,TAG17=
  3602. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3603. when #{item.clock,jdbcType=VARCHAR} then #{item.tag17,jdbcType=FLOAT}
  3604. </foreach>
  3605. ,TAG18=
  3606. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3607. when #{item.clock,jdbcType=VARCHAR} then #{item.tag18,jdbcType=FLOAT}
  3608. </foreach>
  3609. ,TAG19=
  3610. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3611. when #{item.clock,jdbcType=VARCHAR} then #{item.tag19,jdbcType=FLOAT}
  3612. </foreach>
  3613. ,TAG20=
  3614. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3615. when #{item.clock,jdbcType=VARCHAR} then #{item.tag20,jdbcType=FLOAT}
  3616. </foreach>
  3617. ,TAG21=
  3618. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3619. when #{item.clock,jdbcType=VARCHAR} then #{item.tag21,jdbcType=FLOAT}
  3620. </foreach>
  3621. ,TAG22=
  3622. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3623. when #{item.clock,jdbcType=VARCHAR} then #{item.tag22,jdbcType=FLOAT}
  3624. </foreach>
  3625. ,TAG23=
  3626. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3627. when #{item.clock,jdbcType=VARCHAR} then #{item.tag23,jdbcType=FLOAT}
  3628. </foreach>
  3629. ,TAG24=
  3630. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3631. when #{item.clock,jdbcType=VARCHAR} then #{item.tag24,jdbcType=FLOAT}
  3632. </foreach>
  3633. ,TAG25=
  3634. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3635. when #{item.clock,jdbcType=VARCHAR} then #{item.tag25,jdbcType=FLOAT}
  3636. </foreach>
  3637. ,TAG26=
  3638. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3639. when #{item.clock,jdbcType=VARCHAR} then #{item.tag26,jdbcType=FLOAT}
  3640. </foreach>
  3641. ,TAG27=
  3642. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3643. when #{item.clock,jdbcType=VARCHAR} then #{item.tag27,jdbcType=FLOAT}
  3644. </foreach>
  3645. ,TAG28=
  3646. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3647. when #{item.clock,jdbcType=VARCHAR} then #{item.tag28,jdbcType=FLOAT}
  3648. </foreach>
  3649. ,TAG29=
  3650. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3651. when #{item.clock,jdbcType=VARCHAR} then #{item.tag29,jdbcType=FLOAT}
  3652. </foreach>
  3653. ,TAG30=
  3654. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3655. when #{item.clock,jdbcType=VARCHAR} then #{item.tag30,jdbcType=FLOAT}
  3656. </foreach>
  3657. ,TAG31=
  3658. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3659. when #{item.clock,jdbcType=VARCHAR} then #{item.tag31,jdbcType=FLOAT}
  3660. </foreach>
  3661. ,TAG32=
  3662. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3663. when #{item.clock,jdbcType=VARCHAR} then #{item.tag32,jdbcType=FLOAT}
  3664. </foreach>
  3665. ,TAG33=
  3666. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3667. when #{item.clock,jdbcType=VARCHAR} then #{item.tag33,jdbcType=FLOAT}
  3668. </foreach>
  3669. ,TAG34=
  3670. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3671. when #{item.clock,jdbcType=VARCHAR} then #{item.tag34,jdbcType=FLOAT}
  3672. </foreach>
  3673. ,TAG35=
  3674. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3675. when #{item.clock,jdbcType=VARCHAR} then #{item.tag35,jdbcType=FLOAT}
  3676. </foreach>
  3677. ,TAG36=
  3678. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3679. when #{item.clock,jdbcType=VARCHAR} then #{item.tag36,jdbcType=FLOAT}
  3680. </foreach>
  3681. ,TAG37=
  3682. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3683. when #{item.clock,jdbcType=VARCHAR} then #{item.tag37,jdbcType=FLOAT}
  3684. </foreach>
  3685. ,TAG38=
  3686. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3687. when #{item.clock,jdbcType=VARCHAR} then #{item.tag38,jdbcType=FLOAT}
  3688. </foreach>
  3689. ,TAG39=
  3690. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3691. when #{item.clock,jdbcType=VARCHAR} then #{item.tag39,jdbcType=FLOAT}
  3692. </foreach>
  3693. ,TAG40=
  3694. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3695. when #{item.clock,jdbcType=VARCHAR} then #{item.tag40,jdbcType=FLOAT}
  3696. </foreach>
  3697. ,TAG41=
  3698. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3699. when #{item.clock,jdbcType=VARCHAR} then #{item.tag41,jdbcType=FLOAT}
  3700. </foreach>
  3701. ,TAG42=
  3702. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3703. when #{item.clock,jdbcType=VARCHAR} then #{item.tag42,jdbcType=FLOAT}
  3704. </foreach>
  3705. ,TAG43=
  3706. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3707. when #{item.clock,jdbcType=VARCHAR} then #{item.tag43,jdbcType=FLOAT}
  3708. </foreach>
  3709. ,TAG44=
  3710. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3711. when #{item.clock,jdbcType=VARCHAR} then #{item.tag44,jdbcType=FLOAT}
  3712. </foreach>
  3713. ,TAG46=
  3714. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3715. when #{item.clock,jdbcType=VARCHAR} then #{item.tag46,jdbcType=FLOAT}
  3716. </foreach>
  3717. ,TAG47=
  3718. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3719. when #{item.clock,jdbcType=VARCHAR} then #{item.tag47,jdbcType=FLOAT}
  3720. </foreach>
  3721. ,TAG48=
  3722. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3723. when #{item.clock,jdbcType=VARCHAR} then #{item.tag48,jdbcType=FLOAT}
  3724. </foreach>
  3725. ,TAG49=
  3726. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3727. when #{item.clock,jdbcType=VARCHAR} then #{item.tag49,jdbcType=FLOAT}
  3728. </foreach>
  3729. ,TAG50=
  3730. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3731. when #{item.clock,jdbcType=VARCHAR} then #{item.tag50,jdbcType=FLOAT}
  3732. </foreach>
  3733. ,TAG51=
  3734. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3735. when #{item.clock,jdbcType=VARCHAR} then #{item.tag51,jdbcType=FLOAT}
  3736. </foreach>
  3737. ,TAG52=
  3738. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3739. when #{item.clock,jdbcType=VARCHAR} then #{item.tag52,jdbcType=FLOAT}
  3740. </foreach>
  3741. ,TAG53=
  3742. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3743. when #{item.clock,jdbcType=VARCHAR} then #{item.tag53,jdbcType=FLOAT}
  3744. </foreach>
  3745. ,TAG54=
  3746. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3747. when #{item.clock,jdbcType=VARCHAR} then #{item.tag54,jdbcType=FLOAT}
  3748. </foreach>
  3749. ,TAG55=
  3750. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3751. when #{item.clock,jdbcType=VARCHAR} then #{item.tag55,jdbcType=FLOAT}
  3752. </foreach>
  3753. ,TAG56=
  3754. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3755. when #{item.clock,jdbcType=VARCHAR} then #{item.tag56,jdbcType=FLOAT}
  3756. </foreach>
  3757. ,TAG57=
  3758. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3759. when #{item.clock,jdbcType=VARCHAR} then #{item.tag57,jdbcType=FLOAT}
  3760. </foreach>
  3761. ,TAG58=
  3762. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3763. when #{item.clock,jdbcType=VARCHAR} then #{item.tag58,jdbcType=FLOAT}
  3764. </foreach>
  3765. ,TAG59=
  3766. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3767. when #{item.clock,jdbcType=VARCHAR} then #{item.tag59,jdbcType=FLOAT}
  3768. </foreach>
  3769. ,TAG60=
  3770. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3771. when #{item.clock,jdbcType=VARCHAR} then #{item.tag60,jdbcType=FLOAT}
  3772. </foreach>
  3773. ,TAG61=
  3774. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3775. when #{item.clock,jdbcType=VARCHAR} then #{item.tag61,jdbcType=FLOAT}
  3776. </foreach>
  3777. ,TAG62=
  3778. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3779. when #{item.clock,jdbcType=VARCHAR} then #{item.tag62,jdbcType=FLOAT}
  3780. </foreach>
  3781. ,TAG63=
  3782. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3783. when #{item.clock,jdbcType=VARCHAR} then #{item.tag63,jdbcType=FLOAT}
  3784. </foreach>
  3785. ,TAG64=
  3786. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3787. when #{item.clock,jdbcType=VARCHAR} then #{item.tag64,jdbcType=FLOAT}
  3788. </foreach>
  3789. ,TAG65=
  3790. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3791. when #{item.clock,jdbcType=VARCHAR} then #{item.tag65,jdbcType=FLOAT}
  3792. </foreach>
  3793. ,TAG66=
  3794. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3795. when #{item.clock,jdbcType=VARCHAR} then #{item.tag66,jdbcType=FLOAT}
  3796. </foreach>
  3797. ,TAG67=
  3798. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3799. when #{item.clock,jdbcType=VARCHAR} then #{item.tag67,jdbcType=FLOAT}
  3800. </foreach>
  3801. ,TAG68=
  3802. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3803. when #{item.clock,jdbcType=VARCHAR} then #{item.tag68,jdbcType=FLOAT}
  3804. </foreach>
  3805. ,TAG69=
  3806. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3807. when #{item.clock,jdbcType=VARCHAR} then #{item.tag69,jdbcType=FLOAT}
  3808. </foreach>
  3809. ,TAG70=
  3810. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3811. when #{item.clock,jdbcType=VARCHAR} then #{item.tag70,jdbcType=FLOAT}
  3812. </foreach>
  3813. ,TAG71=
  3814. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3815. when #{item.clock,jdbcType=VARCHAR} then #{item.tag71,jdbcType=FLOAT}
  3816. </foreach>
  3817. ,TAG72=
  3818. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3819. when #{item.clock,jdbcType=VARCHAR} then #{item.tag72,jdbcType=FLOAT}
  3820. </foreach>
  3821. ,TAG73=
  3822. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3823. when #{item.clock,jdbcType=VARCHAR} then #{item.tag73,jdbcType=FLOAT}
  3824. </foreach>
  3825. ,TAG74=
  3826. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3827. when #{item.clock,jdbcType=VARCHAR} then #{item.tag74,jdbcType=FLOAT}
  3828. </foreach>
  3829. ,TAG75=
  3830. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3831. when #{item.clock,jdbcType=VARCHAR} then #{item.tag75,jdbcType=FLOAT}
  3832. </foreach>
  3833. ,TAG76=
  3834. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3835. when #{item.clock,jdbcType=VARCHAR} then #{item.tag76,jdbcType=FLOAT}
  3836. </foreach>
  3837. ,TAG77=
  3838. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3839. when #{item.clock,jdbcType=VARCHAR} then #{item.tag77,jdbcType=FLOAT}
  3840. </foreach>
  3841. ,TAG78=
  3842. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3843. when #{item.clock,jdbcType=VARCHAR} then #{item.tag78,jdbcType=FLOAT}
  3844. </foreach>
  3845. ,TAG79=
  3846. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3847. when #{item.clock,jdbcType=VARCHAR} then #{item.tag79,jdbcType=FLOAT}
  3848. </foreach>
  3849. ,TAG80=
  3850. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3851. when #{item.clock,jdbcType=VARCHAR} then #{item.tag80,jdbcType=FLOAT}
  3852. </foreach>
  3853. ,TAG81=
  3854. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3855. when #{item.clock,jdbcType=VARCHAR} then #{item.tag81,jdbcType=FLOAT}
  3856. </foreach>
  3857. ,TAG82=
  3858. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3859. when #{item.clock,jdbcType=VARCHAR} then #{item.tag82,jdbcType=FLOAT}
  3860. </foreach>
  3861. ,TAG83=
  3862. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3863. when #{item.clock,jdbcType=VARCHAR} then #{item.tag83,jdbcType=FLOAT}
  3864. </foreach>
  3865. ,TAG84=
  3866. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3867. when #{item.clock,jdbcType=VARCHAR} then #{item.tag84,jdbcType=FLOAT}
  3868. </foreach>
  3869. ,TAG85=
  3870. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3871. when #{item.clock,jdbcType=VARCHAR} then #{item.tag85,jdbcType=FLOAT}
  3872. </foreach>
  3873. ,TAG86=
  3874. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3875. when #{item.clock,jdbcType=VARCHAR} then #{item.tag86,jdbcType=FLOAT}
  3876. </foreach>
  3877. ,TAG87=
  3878. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3879. when #{item.clock,jdbcType=VARCHAR} then #{item.tag87,jdbcType=FLOAT}
  3880. </foreach>
  3881. ,TAG88=
  3882. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3883. when #{item.clock,jdbcType=VARCHAR} then #{item.tag88,jdbcType=FLOAT}
  3884. </foreach>
  3885. ,TAG89=
  3886. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3887. when #{item.clock,jdbcType=VARCHAR} then #{item.tag89,jdbcType=FLOAT}
  3888. </foreach>
  3889. ,TAG90=
  3890. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3891. when #{item.clock,jdbcType=VARCHAR} then #{item.tag90,jdbcType=FLOAT}
  3892. </foreach>
  3893. ,TAG91=
  3894. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3895. when #{item.clock,jdbcType=VARCHAR} then #{item.tag91,jdbcType=FLOAT}
  3896. </foreach>
  3897. ,TAG92=
  3898. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3899. when #{item.clock,jdbcType=VARCHAR} then #{item.tag92,jdbcType=FLOAT}
  3900. </foreach>
  3901. ,TAG93=
  3902. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3903. when #{item.clock,jdbcType=VARCHAR} then #{item.tag93,jdbcType=FLOAT}
  3904. </foreach>
  3905. ,TAG94=
  3906. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3907. when #{item.clock,jdbcType=VARCHAR} then #{item.tag94,jdbcType=FLOAT}
  3908. </foreach>
  3909. ,TAG95=
  3910. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3911. when #{item.clock,jdbcType=VARCHAR} then #{item.tag95,jdbcType=FLOAT}
  3912. </foreach>
  3913. ,TAG96=
  3914. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3915. when #{item.clock,jdbcType=VARCHAR} then #{item.tag96,jdbcType=FLOAT}
  3916. </foreach>
  3917. ,TAG97=
  3918. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3919. when #{item.clock,jdbcType=VARCHAR} then #{item.tag97,jdbcType=FLOAT}
  3920. </foreach>
  3921. ,TAG98=
  3922. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3923. when #{item.clock,jdbcType=VARCHAR} then #{item.tag98,jdbcType=FLOAT}
  3924. </foreach>
  3925. ,TAG99=
  3926. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3927. when #{item.clock,jdbcType=VARCHAR} then #{item.tag99,jdbcType=FLOAT}
  3928. </foreach>
  3929. ,TAG100=
  3930. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3931. when #{item.clock,jdbcType=VARCHAR} then #{item.tag100,jdbcType=FLOAT}
  3932. </foreach>
  3933. ,TAG101=
  3934. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3935. when #{item.clock,jdbcType=VARCHAR} then #{item.tag101,jdbcType=FLOAT}
  3936. </foreach>
  3937. ,TAG45=
  3938. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3939. when #{item.clock,jdbcType=VARCHAR} then #{item.tag45,jdbcType=FLOAT}
  3940. </foreach>
  3941. ,TAG102=
  3942. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3943. when #{item.clock,jdbcType=VARCHAR} then #{item.tag102,jdbcType=FLOAT}
  3944. </foreach>
  3945. ,TAG103=
  3946. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3947. when #{item.clock,jdbcType=VARCHAR} then #{item.tag103,jdbcType=FLOAT}
  3948. </foreach>
  3949. ,TAG104=
  3950. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3951. when #{item.clock,jdbcType=VARCHAR} then #{item.tag104,jdbcType=FLOAT}
  3952. </foreach>
  3953. ,TAG105=
  3954. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3955. when #{item.clock,jdbcType=VARCHAR} then #{item.tag105,jdbcType=FLOAT}
  3956. </foreach>
  3957. ,TAG106=
  3958. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3959. when #{item.clock,jdbcType=VARCHAR} then #{item.tag106,jdbcType=FLOAT}
  3960. </foreach>
  3961. ,TAG107=
  3962. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3963. when #{item.clock,jdbcType=VARCHAR} then #{item.tag107,jdbcType=FLOAT}
  3964. </foreach>
  3965. ,TAG108=
  3966. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3967. when #{item.clock,jdbcType=VARCHAR} then #{item.tag108,jdbcType=FLOAT}
  3968. </foreach>
  3969. ,TAG109=
  3970. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3971. when #{item.clock,jdbcType=VARCHAR} then #{item.tag109,jdbcType=FLOAT}
  3972. </foreach>
  3973. ,TAG110=
  3974. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3975. when #{item.clock,jdbcType=VARCHAR} then #{item.tag110,jdbcType=FLOAT}
  3976. </foreach>
  3977. ,TAG111=
  3978. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3979. when #{item.clock,jdbcType=VARCHAR} then #{item.tag111,jdbcType=FLOAT}
  3980. </foreach>
  3981. ,TAG112=
  3982. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3983. when #{item.clock,jdbcType=VARCHAR} then #{item.tag112,jdbcType=FLOAT}
  3984. </foreach>
  3985. ,TAG113=
  3986. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3987. when #{item.clock,jdbcType=VARCHAR} then #{item.tag113,jdbcType=FLOAT}
  3988. </foreach>
  3989. ,TAG114=
  3990. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3991. when #{item.clock,jdbcType=VARCHAR} then #{item.tag114,jdbcType=FLOAT}
  3992. </foreach>
  3993. ,TAG115=
  3994. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3995. when #{item.clock,jdbcType=VARCHAR} then #{item.tag115,jdbcType=FLOAT}
  3996. </foreach>
  3997. ,TAG116=
  3998. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  3999. when #{item.clock,jdbcType=VARCHAR} then #{item.tag116,jdbcType=FLOAT}
  4000. </foreach>
  4001. ,TAG117=
  4002. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4003. when #{item.clock,jdbcType=VARCHAR} then #{item.tag117,jdbcType=FLOAT}
  4004. </foreach>
  4005. ,TAG118=
  4006. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4007. when #{item.clock,jdbcType=VARCHAR} then #{item.tag118,jdbcType=FLOAT}
  4008. </foreach>
  4009. ,TAG119=
  4010. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4011. when #{item.clock,jdbcType=VARCHAR} then #{item.tag119,jdbcType=FLOAT}
  4012. </foreach>
  4013. ,TAG120=
  4014. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4015. when #{item.clock,jdbcType=VARCHAR} then #{item.tag120,jdbcType=FLOAT}
  4016. </foreach>
  4017. ,TAG121=
  4018. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4019. when #{item.clock,jdbcType=VARCHAR} then #{item.tag121,jdbcType=FLOAT}
  4020. </foreach>
  4021. ,TAG122=
  4022. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4023. when #{item.clock,jdbcType=VARCHAR} then #{item.tag122,jdbcType=FLOAT}
  4024. </foreach>
  4025. ,TAG123=
  4026. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4027. when #{item.clock,jdbcType=VARCHAR} then #{item.tag123,jdbcType=FLOAT}
  4028. </foreach>
  4029. ,TAG124=
  4030. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4031. when #{item.clock,jdbcType=VARCHAR} then #{item.tag124,jdbcType=FLOAT}
  4032. </foreach>
  4033. ,TAG125=
  4034. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4035. when #{item.clock,jdbcType=VARCHAR} then #{item.tag125,jdbcType=FLOAT}
  4036. </foreach>
  4037. ,TAG126=
  4038. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4039. when #{item.clock,jdbcType=VARCHAR} then #{item.tag126,jdbcType=FLOAT}
  4040. </foreach>
  4041. ,TAG127=
  4042. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4043. when #{item.clock,jdbcType=VARCHAR} then #{item.tag127,jdbcType=FLOAT}
  4044. </foreach>
  4045. ,TAG128=
  4046. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4047. when #{item.clock,jdbcType=VARCHAR} then #{item.tag128,jdbcType=FLOAT}
  4048. </foreach>
  4049. ,TAG129=
  4050. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4051. when #{item.clock,jdbcType=VARCHAR} then #{item.tag129,jdbcType=FLOAT}
  4052. </foreach>
  4053. ,TAG130=
  4054. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4055. when #{item.clock,jdbcType=VARCHAR} then #{item.tag130,jdbcType=FLOAT}
  4056. </foreach>
  4057. ,TAG131=
  4058. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4059. when #{item.clock,jdbcType=VARCHAR} then #{item.tag131,jdbcType=FLOAT}
  4060. </foreach>
  4061. ,TAG132=
  4062. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4063. when #{item.clock,jdbcType=VARCHAR} then #{item.tag132,jdbcType=FLOAT}
  4064. </foreach>
  4065. ,TAG133=
  4066. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4067. when #{item.clock,jdbcType=VARCHAR} then #{item.tag133,jdbcType=FLOAT}
  4068. </foreach>
  4069. ,TAG134=
  4070. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4071. when #{item.clock,jdbcType=VARCHAR} then #{item.tag134,jdbcType=FLOAT}
  4072. </foreach>
  4073. ,TAG135=
  4074. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4075. when #{item.clock,jdbcType=VARCHAR} then #{item.tag135,jdbcType=FLOAT}
  4076. </foreach>
  4077. ,TAG136=
  4078. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4079. when #{item.clock,jdbcType=VARCHAR} then #{item.tag136,jdbcType=FLOAT}
  4080. </foreach>
  4081. ,TAG137=
  4082. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4083. when #{item.clock,jdbcType=VARCHAR} then #{item.tag137,jdbcType=FLOAT}
  4084. </foreach>
  4085. ,TAG138=
  4086. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4087. when #{item.clock,jdbcType=VARCHAR} then #{item.tag138,jdbcType=FLOAT}
  4088. </foreach>
  4089. ,TAG139=
  4090. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4091. when #{item.clock,jdbcType=VARCHAR} then #{item.tag139,jdbcType=FLOAT}
  4092. </foreach>
  4093. ,TAG140=
  4094. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4095. when #{item.clock,jdbcType=VARCHAR} then #{item.tag140,jdbcType=FLOAT}
  4096. </foreach>
  4097. ,TAG141=
  4098. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4099. when #{item.clock,jdbcType=VARCHAR} then #{item.tag141,jdbcType=FLOAT}
  4100. </foreach>
  4101. ,TAG142=
  4102. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4103. when #{item.clock,jdbcType=VARCHAR} then #{item.tag142,jdbcType=FLOAT}
  4104. </foreach>
  4105. ,TAG143=
  4106. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4107. when #{item.clock,jdbcType=VARCHAR} then #{item.tag143,jdbcType=FLOAT}
  4108. </foreach>
  4109. ,TAG144=
  4110. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4111. when #{item.clock,jdbcType=VARCHAR} then #{item.tag144,jdbcType=FLOAT}
  4112. </foreach>
  4113. ,TAG145=
  4114. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4115. when #{item.clock,jdbcType=VARCHAR} then #{item.tag145,jdbcType=FLOAT}
  4116. </foreach>
  4117. ,TAG146=
  4118. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4119. when #{item.clock,jdbcType=VARCHAR} then #{item.tag146,jdbcType=FLOAT}
  4120. </foreach>
  4121. ,TAG147=
  4122. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4123. when #{item.clock,jdbcType=VARCHAR} then #{item.tag147,jdbcType=FLOAT}
  4124. </foreach>
  4125. ,TAG148=
  4126. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4127. when #{item.clock,jdbcType=VARCHAR} then #{item.tag148,jdbcType=FLOAT}
  4128. </foreach>
  4129. ,TAG149=
  4130. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4131. when #{item.clock,jdbcType=VARCHAR} then #{item.tag149,jdbcType=FLOAT}
  4132. </foreach>
  4133. ,TAG150=
  4134. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4135. when #{item.clock,jdbcType=VARCHAR} then #{item.tag150,jdbcType=FLOAT}
  4136. </foreach>
  4137. ,TAG151=
  4138. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4139. when #{item.clock,jdbcType=VARCHAR} then #{item.tag151,jdbcType=FLOAT}
  4140. </foreach>
  4141. ,TAG152=
  4142. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4143. when #{item.clock,jdbcType=VARCHAR} then #{item.tag152,jdbcType=FLOAT}
  4144. </foreach>
  4145. ,TAG153=
  4146. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4147. when #{item.clock,jdbcType=VARCHAR} then #{item.tag153,jdbcType=FLOAT}
  4148. </foreach>
  4149. ,TAG154=
  4150. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4151. when #{item.clock,jdbcType=VARCHAR} then #{item.tag154,jdbcType=FLOAT}
  4152. </foreach>
  4153. ,TAG155=
  4154. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4155. when #{item.clock,jdbcType=VARCHAR} then #{item.tag155,jdbcType=FLOAT}
  4156. </foreach>
  4157. ,TAG156=
  4158. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4159. when #{item.clock,jdbcType=VARCHAR} then #{item.tag156,jdbcType=FLOAT}
  4160. </foreach>
  4161. ,TAG157=
  4162. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4163. when #{item.clock,jdbcType=VARCHAR} then #{item.tag157,jdbcType=FLOAT}
  4164. </foreach>
  4165. ,TAG158=
  4166. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4167. when #{item.clock,jdbcType=VARCHAR} then #{item.tag158,jdbcType=FLOAT}
  4168. </foreach>
  4169. ,TAG159=
  4170. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4171. when #{item.clock,jdbcType=VARCHAR} then #{item.tag159,jdbcType=FLOAT}
  4172. </foreach>
  4173. ,TAG160=
  4174. <foreach collection="list" item="item" index="index" separator=" " open="case CLOCK" close="end">
  4175. when #{item.clock,jdbcType=VARCHAR} then #{item.tag160,jdbcType=FLOAT}
  4176. </foreach>
  4177. where CLOCK in
  4178. <foreach collection="list" index="index" item="item" separator="," open="(" close=")">
  4179. #{item.clock,jdbcType=VARCHAR}
  4180. </foreach>
  4181. </update>
  4182. <delete id="batchDelete" parameterType="java.util.List">
  4183. delete from EMS_W_AI_HOUR_SUM_TAB1
  4184. where CLOCK in
  4185. <foreach collection="list" item="id" open="(" close=")" separator=",">
  4186. #{id}
  4187. </foreach>
  4188. </delete>
  4189. <!-- 友情提示!!!-->
  4190. <!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
  4191. <select id="getHistoryData" parameterType="java.util.Map" resultMap="BaseResultMap">
  4192. SELECT * FROM (SELECT distinct CONVERT(varchar(13), CreateTime, 120) as CLOCK,FlowVal,case AddressCode ${whens} END as TAG FROM ARM_HistoryData with (NOLOCK) where CONVERT(varchar(13), CreateTime, 120) between #{clock4} and #{clock} and AddressCode in(${codes})) as VAL PIVOT (SUM(FlowVal) FOR TAG IN (${tags})) AS EMS_W_AI_HOUR_SUM_TAB1 order by CLOCK
  4193. </select>
  4194. </mapper>