info.2023-06-13.log 269 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809
  1. 11:00:49.542 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2. 11:00:49.612 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 7520 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  3. 11:00:49.613 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  4. 11:00:49.680 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5. 11:00:49.681 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6. 11:00:51.790 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7. 11:00:51.795 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8. 11:00:51.884 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 0 Redis repository interfaces.
  9. 11:00:52.060 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10. 11:00:52.086 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  11. 11:00:52.974 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 11:00:52.974 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3293 ms
  13. 11:00:55.530 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  14. 11:00:55.542 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  15. 11:00:55.543 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  16. 11:00:55.543 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  17. 11:00:55.544 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  18. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  19. NOT STARTED.
  20. Currently in standby mode.
  21. Number of jobs executed: 0
  22. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  23. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  24. 11:00:55.544 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  25. 11:00:55.544 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  26. 11:00:55.544 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6f9f550a
  27. 11:00:57.474 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  28. 11:00:57.637 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  29. 11:00:57.671 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  30. 11:00:57.672 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  31. 11:00:57.672 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  32. 11:00:57.701 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  33. 11:00:57.715 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  34. 11:00:57.728 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  35. 11:00:57.766 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  36. 11:00:57.824 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  37. 11:00:57.981 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  38. 11:00:57.981 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 152 ms
  39. 11:00:57.990 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  40. 11:00:58.026 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  41. 11:00:58.043 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  42. 11:00:58.047 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  43. 11:00:58.047 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  44. 11:00:58.072 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.194 seconds (process running for 10.675)
  45. 11:00:58.074 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  46. 11:00:58.083 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  47. 11:00:58.527 [restartedMain] INFO p6spy - 2023-06-13 11:00:58 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  48. 11:00:58.533 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@733694e7
  49. 11:00:58.536 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  50. 11:00:58.614 [restartedMain] INFO p6spy - 2023-06-13 11:00:58 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  51. A.job_id,
  52. A.job_title,
  53. A.job_desc,
  54. A.status,
  55. A.job_type,
  56. A.job_code,
  57. A.job_cron,
  58. A.job_class_id,
  59. B.job_class,
  60. A.cycle_title,
  61. A.cycle_period,
  62. A.cycle_unit
  63. FROM job AS A
  64. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  65. WHERE A.deleted_flag = 0
  66. AND A.status = 1
  67. ORDER BY A.job_id ASC
  68. 11:00:58.642 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  69. 11:00:58.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  70. 11:00:58.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  71. 11:00:58.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  72. 11:00:58.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  73. 11:00:58.646 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  74. 11:00:58.646 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  75. 11:00:58.646 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  76. 11:00:58.979 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  77. 11:00:58.979 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  78. 11:00:58.982 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  79. 11:00:58.994 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-06-13 11:00:58 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  80. 11:02:42.321 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  81. 11:02:42.357 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  82. 11:02:42.358 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  83. 11:02:42.359 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  84. 11:02:42.360 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  85. 11:02:42.360 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  86. 11:02:42.360 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  87. 11:02:42.370 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  88. 11:02:42.371 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  89. 11:02:42.371 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  90. 11:02:42.372 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  91. 11:02:42.372 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  92. 11:02:42.384 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  93. 11:02:42.388 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  94. 11:02:48.287 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  95. 11:02:48.344 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4904 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  96. 11:02:48.345 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  97. 11:02:48.404 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  98. 11:02:48.405 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  99. 11:02:50.299 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  100. 11:02:50.303 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  101. 11:02:50.393 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  102. 11:02:50.566 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  103. 11:02:50.585 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  104. 11:02:51.418 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  105. 11:02:51.418 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3013 ms
  106. 11:02:53.850 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  107. 11:02:53.862 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  108. 11:02:53.862 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  109. 11:02:53.862 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  110. 11:02:53.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  111. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  112. NOT STARTED.
  113. Currently in standby mode.
  114. Number of jobs executed: 0
  115. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  116. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  117. 11:02:53.863 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  118. 11:02:53.863 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  119. 11:02:53.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@638e413
  120. 11:02:55.723 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  121. 11:02:55.860 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  122. 11:02:55.891 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  123. 11:02:55.891 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  124. 11:02:55.892 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  125. 11:02:55.913 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  126. 11:02:55.923 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  127. 11:02:55.935 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  128. 11:02:55.970 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  129. 11:02:56.029 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  130. 11:02:56.176 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  131. 11:02:56.176 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 141 ms
  132. 11:02:56.185 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  133. 11:02:56.222 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  134. 11:02:56.239 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  135. 11:02:56.243 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  136. 11:02:56.243 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  137. 11:02:56.265 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.508 seconds (process running for 9.443)
  138. 11:02:56.267 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  139. 11:02:56.275 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  140. 11:02:56.627 [restartedMain] INFO p6spy - 2023-06-13 11:02:56 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  141. 11:02:56.631 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@765aa534
  142. 11:02:56.642 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  143. 11:02:56.712 [restartedMain] INFO p6spy - 2023-06-13 11:02:56 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  144. A.job_id,
  145. A.job_title,
  146. A.job_desc,
  147. A.status,
  148. A.job_type,
  149. A.job_code,
  150. A.job_cron,
  151. A.job_class_id,
  152. B.job_class,
  153. A.cycle_title,
  154. A.cycle_period,
  155. A.cycle_unit
  156. FROM job AS A
  157. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  158. WHERE A.deleted_flag = 0
  159. AND A.status = 1
  160. ORDER BY A.job_id ASC
  161. 11:02:56.738 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  162. 11:02:56.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  163. 11:02:56.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  164. 11:02:56.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  165. 11:02:56.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  166. 11:02:56.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  167. 11:02:56.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  168. 11:02:56.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  169. 11:02:57.234 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  170. 11:02:57.234 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  171. 11:02:57.237 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  172. 11:02:57.244 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-06-13 11:02:57 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  173. 11:10:00.351 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:00 | Time Consuming: 5023 ms | Connection: statement-0 | SQL: SELECT 1
  174. 11:10:05.358 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:05 | Time Consuming: 5005 ms | Connection: statement-1 | SQL: SELECT 1
  175. 11:10:10.364 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:10 | Time Consuming: 5004 ms | Connection: statement-2 | SQL: SELECT 1
  176. 11:10:15.377 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:15 | Time Consuming: 5012 ms | Connection: statement-3 | SQL: SELECT 1
  177. 11:10:20.391 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 5013 ms | Connection: statement-4 | SQL: SELECT 1
  178. 11:10:20.395 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  179. 11:10:20.407 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  180. client_id,
  181. client_title,
  182. client_app_id,
  183. client_app_key,
  184. client_app_secret,
  185. client_desc,
  186. status,
  187. is_fixed
  188. FROM client
  189. WHERE deleted_flag = 0
  190. AND client_app_id = '10001'
  191. AND client_app_key = '82a8bf439373e305'
  192. 11:10:20.422 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  193. A.client_id,
  194. A.role_id,
  195. A.permit_id,
  196. A.permit_title,
  197. A.permit_code,
  198. A.permit_entry,
  199. A.permit_desc,
  200. A.permit_type,
  201. A.parent_id,
  202. A.root_id,
  203. A.sort_no,
  204. A.is_home
  205. FROM s_role_permit AS A
  206. WHERE 1 = 1
  207. AND A.client_id = 2
  208. AND A.role_id = 6
  209. ORDER BY A.parent_id ASC ,A.sort_no ASC
  210. 11:10:20.790 [XNIO-1 task-2] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  211. 11:10:20.790 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  212. 11:10:20.791 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  213. 11:10:20.801 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT *
  214. FROM goaf_baseinfo
  215. WHERE oc_id = 406283
  216. 11:10:20.801 [XNIO-1 task-2] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT
  217. A.oc_id,
  218. A.group_id,
  219. A.group_name,
  220. A.group_code,
  221. A.group_cat_id,
  222. C.group_cat_title,
  223. A.node_left,
  224. A.node_right,
  225. A.parent_id,
  226. A.root_id,
  227. B.group_name as parent_name,
  228. A.node_level,
  229. A.is_leaf,
  230. A.is_fixed,
  231. A.group_desc
  232. FROM s_group AS A
  233. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  234. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  235. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  236. 11:10:20.809 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 2 ms | Connection: statement-9 | SQL: SELECT 1
  237. 11:10:20.842 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 27 ms | Connection: statement-9 | SQL: SELECT count(*)
  238. FROM msg AS M
  239. WHERE M.oc_id = 406283
  240. AND (
  241. EXISTS (
  242. SELECT 1 FROM msg_to TT
  243. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  244. ) OR
  245. EXISTS (
  246. SELECT 1 FROM msg_cc CC
  247. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  248. )
  249. )
  250. 11:10:20.911 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  251. 11:10:20.911 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  252. 11:10:20.918 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  253. DISTINCT(A.account_id),
  254. A.gm_id,
  255. A.oc_id,
  256. A.group_id,
  257. B.account_name,
  258. B.account_real_name,
  259. B.account_phone,
  260. B.account_staff_no,
  261. B.account_avatar,
  262. B.status,
  263. B.is_fixed,
  264. C.group_name,
  265. C.node_left,
  266. C.node_right,
  267. D.gmp_id,
  268. D.position_id,
  269. D.position_name,
  270. E.gmpg_id,
  271. E.grant_group_id,
  272. F.group_name as grant_group_name
  273. FROM
  274. s_group_member AS A
  275. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  276. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  277. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  278. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  279. LEFT JOIN (
  280. SELECT
  281. M.oc_id,
  282. M.account_id,
  283. M.gmp_id,
  284. M.group_id,
  285. M.position_id,
  286. P.position_name,
  287. N.gmpg_id,
  288. N.grant_group_id,
  289. GP.group_name as grant_group_name
  290. FROM
  291. s_group_member_position AS M
  292. LEFT JOIN s_group_member_position_grant AS N ON (
  293. M.oc_id = N.oc_id
  294. AND M.account_id = N.account_id
  295. AND M.group_id = N.group_id
  296. AND M.position_id = N.position_id )
  297. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  298. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  299. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  300. WHERE B.deleted_flag = 0
  301. AND A.oc_id = 406283
  302. ORDER BY A.account_id, A.group_id
  303. LIMIT 999999
  304. 11:10:20.920 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:20 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT
  305. A.hdanger_id,
  306. A.oc_id,
  307. A.goaf_id,
  308. A.hdanger_title,
  309. A.hdanger_level,
  310. A.hdanger_type,
  311. A.checklist_id,
  312. A.hdanger_desc,
  313. A.submit_group_id,
  314. A.submit_group_name,
  315. A.submit_position_id,
  316. A.submit_position_name,
  317. A.submit_account_id,
  318. A.submit_account_name,
  319. A.submit_time,
  320. A.review_group_id,
  321. A.review_group_name,
  322. A.review_position_id,
  323. A.review_position_name,
  324. A.review_account_id,
  325. A.review_account_name,
  326. A.danger_deadline,
  327. A.review_time,
  328. A.review_remark,
  329. A.rectify_group_id,
  330. A.rectify_group_name,
  331. A.rectify_position_id,
  332. A.rectify_position_name,
  333. A.rectify_account_id,
  334. A.rectify_account_name,
  335. A.rectify_time,
  336. A.danger_reason,
  337. A.rectify_measure,
  338. A.rectify_remark,
  339. A.accept_group_id,
  340. A.accept_group_name,
  341. A.accept_position_id,
  342. A.accept_position_name,
  343. A.accept_account_id,
  344. A.accept_account_name,
  345. A.accept_time,
  346. A.accept_remark,
  347. A.finish_time,
  348. A.status,
  349. B.wf_def_id,
  350. B.wf_ins_id,
  351. B.wf_ins_title,
  352. B.cur_group_id,
  353. B.cur_group_name,
  354. B.cur_position_id,
  355. B.cur_position_name,
  356. B.cur_account_id,
  357. B.cur_account_name,
  358. B.cur_activity_ins_id,
  359. B.cur_activity_code,
  360. B.cur_activity_title,
  361. B.cur_form_code,
  362. B.cur_activity_begin_time
  363. FROM goaf_hdanger AS A
  364. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  365. WHERE A.oc_id = 406283
  366. AND A.status = '1'
  367. ORDER BY A.submit_time DESC
  368. LIMIT 10
  369. 11:10:34.758 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:34 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  370. 11:10:36.356 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  371. 11:10:36.367 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  372. client_id,
  373. client_title,
  374. client_app_id,
  375. client_app_key,
  376. client_app_secret,
  377. client_desc,
  378. status,
  379. is_fixed
  380. FROM client
  381. WHERE deleted_flag = 0
  382. AND client_app_id = '10001'
  383. AND client_app_key = '82a8bf439373e305'
  384. 11:10:36.385 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  385. A.oc_id,
  386. B.oc_type_id,
  387. B.oc_name,
  388. A.account_id,
  389. A.account_name,
  390. A.account_real_name,
  391. A.password,
  392. A.account_type,
  393. A.account_staff_no,
  394. A.account_phone,
  395. A.account_last_ip,
  396. A.account_loc,
  397. A.status,
  398. A.account_avatar,
  399. A.account_photo,
  400. A.account_real_name,
  401. A.account_intro,
  402. A.wx_id,
  403. A.is_fixed
  404. FROM account AS A
  405. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  406. WHERE A.deleted_flag = 0
  407. AND (A.account_name = 'sxky'
  408. OR A.account_phone = 'sxky'
  409. OR A.account_mail = 'sxky'
  410. OR A.account_staff_no = 'sxky')
  411. 11:10:36.394 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT
  412. A.oc_id,
  413. A.oc_name,
  414. A.oc_type_id,
  415. A.root_id,
  416. A.parent_id,
  417. A.admin_id,
  418. B.account_name AS admin_name,
  419. A.group_id,
  420. A.node_left,
  421. A.node_right,
  422. A.node_level,
  423. A.is_leaf,
  424. A.status,
  425. A.if_lic
  426. FROM oc AS A
  427. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  428. WHERE A.oc_id = 406283
  429. 11:10:36.399 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT
  430. A.rm_id,
  431. A.role_id,
  432. B.role_type_id,
  433. B.role_code,
  434. B.role_name,
  435. A.account_id
  436. FROM s_role_member AS A
  437. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  438. WHERE account_id = 406283
  439. LIMIT 1
  440. 11:10:36.405 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT
  441. A.gm_id,
  442. A.oc_id,
  443. A.group_id,
  444. B.group_name,
  445. B.node_left ,
  446. B.node_right,
  447. A.account_id
  448. FROM s_group_member AS A
  449. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  450. WHERE B.deleted_flag = 0
  451. AND A.oc_id = 406283
  452. AND A.account_id = 406283
  453. LIMIT 1
  454. 11:10:36.411 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT
  455. A.gmp_id,
  456. A.oc_id,
  457. A.group_id,
  458. B.group_name,
  459. A.account_id,
  460. D.account_name,
  461. D.account_real_name,
  462. A.position_id,
  463. C.position_name
  464. FROM s_group_member_position A
  465. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  466. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  467. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  468. WHERE A.deleted_flag = 0
  469. AND A.oc_id = 406283
  470. AND A.group_id = 406283
  471. AND A.account_id = 406283
  472. LIMIT 1
  473. 11:10:36.417 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT
  474. A.gmpg_id,
  475. A.oc_id,
  476. A.group_id,
  477. A.account_id,
  478. A.position_id,
  479. A.grant_group_id,
  480. B.group_name AS grant_group_name
  481. FROM s_group_member_position_grant A
  482. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  483. WHERE A.deleted_flag = 0
  484. AND A.oc_id = 406283
  485. AND A.group_id = 406283
  486. AND A.account_id = 406283
  487. AND A.position_id = 406283
  488. LIMIT 1
  489. 11:10:36.480 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT
  490. client_id,
  491. client_title,
  492. client_app_id,
  493. client_app_key,
  494. client_app_secret,
  495. client_desc,
  496. status,
  497. is_fixed
  498. FROM client
  499. WHERE deleted_flag = 0
  500. AND client_app_id = '10001'
  501. AND client_app_key = '82a8bf439373e305'
  502. 11:10:36.501 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  503. A.client_id,
  504. A.role_id,
  505. A.permit_id,
  506. A.permit_title,
  507. A.permit_code,
  508. A.permit_entry,
  509. A.permit_desc,
  510. A.permit_type,
  511. A.parent_id,
  512. A.root_id,
  513. A.sort_no,
  514. A.is_home
  515. FROM s_role_permit AS A
  516. WHERE 1 = 1
  517. AND A.client_id = 2
  518. AND A.role_id = 6
  519. ORDER BY A.parent_id ASC ,A.sort_no ASC
  520. 11:10:36.734 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  521. 11:10:36.734 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  522. 11:10:36.736 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  523. 11:10:36.736 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  524. FROM goaf_baseinfo
  525. WHERE oc_id = 406283
  526. 11:10:36.743 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 2 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_baseinfo WHERE oc_id = 406283
  527. 11:10:36.743 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT checklist_id,
  528. oc_id,
  529. checklist_title,
  530. checklist_desc
  531. FROM goaf_checklist
  532. WHERE oc_id = 406283
  533. 11:10:36.748 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  534. FROM goaf_baseinfo
  535. WHERE oc_id = 406283
  536. LIMIT 10
  537. 11:10:36.768 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:36 | Time Consuming: 29 ms | Connection: statement-8 | SQL: SELECT count(*)
  538. FROM msg AS M
  539. WHERE M.oc_id = 406283
  540. AND (
  541. EXISTS (
  542. SELECT 1 FROM msg_to TT
  543. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  544. ) OR
  545. EXISTS (
  546. SELECT 1 FROM msg_cc CC
  547. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  548. )
  549. )
  550. 11:10:39.817 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  551. 11:10:39.817 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  552. 11:10:39.817 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  553. 11:10:39.818 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  554. 11:10:39.826 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT *
  555. FROM goaf_baseinfo
  556. WHERE oc_id = 406283
  557. 11:10:39.826 [XNIO-1 task-3] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  558. A.oc_id,
  559. A.group_id,
  560. A.group_name,
  561. A.group_code,
  562. A.group_cat_id,
  563. C.group_cat_title,
  564. A.node_left,
  565. A.node_right,
  566. A.parent_id,
  567. A.root_id,
  568. B.group_name as parent_name,
  569. A.node_level,
  570. A.is_leaf,
  571. A.is_fixed,
  572. A.group_desc
  573. FROM s_group AS A
  574. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  575. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  576. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  577. 11:10:39.869 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  578. 11:10:39.869 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  579. 11:10:39.876 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT
  580. A.hdanger_id,
  581. A.oc_id,
  582. A.goaf_id,
  583. A.hdanger_title,
  584. A.hdanger_level,
  585. A.hdanger_type,
  586. A.checklist_id,
  587. A.hdanger_desc,
  588. A.submit_group_id,
  589. A.submit_group_name,
  590. A.submit_position_id,
  591. A.submit_position_name,
  592. A.submit_account_id,
  593. A.submit_account_name,
  594. A.submit_time,
  595. A.review_group_id,
  596. A.review_group_name,
  597. A.review_position_id,
  598. A.review_position_name,
  599. A.review_account_id,
  600. A.review_account_name,
  601. A.danger_deadline,
  602. A.review_time,
  603. A.review_remark,
  604. A.rectify_group_id,
  605. A.rectify_group_name,
  606. A.rectify_position_id,
  607. A.rectify_position_name,
  608. A.rectify_account_id,
  609. A.rectify_account_name,
  610. A.rectify_time,
  611. A.danger_reason,
  612. A.rectify_measure,
  613. A.rectify_remark,
  614. A.accept_group_id,
  615. A.accept_group_name,
  616. A.accept_position_id,
  617. A.accept_position_name,
  618. A.accept_account_id,
  619. A.accept_account_name,
  620. A.accept_time,
  621. A.accept_remark,
  622. A.finish_time,
  623. A.status,
  624. B.wf_def_id,
  625. B.wf_ins_id,
  626. B.wf_ins_title,
  627. B.cur_group_id,
  628. B.cur_group_name,
  629. B.cur_position_id,
  630. B.cur_position_name,
  631. B.cur_account_id,
  632. B.cur_account_name,
  633. B.cur_activity_ins_id,
  634. B.cur_activity_code,
  635. B.cur_activity_title,
  636. B.cur_form_code,
  637. B.cur_activity_begin_time
  638. FROM goaf_hdanger AS A
  639. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  640. WHERE A.oc_id = 406283
  641. AND A.status = '1'
  642. ORDER BY A.submit_time DESC
  643. LIMIT 10
  644. 11:10:39.876 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:39 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  645. DISTINCT(A.account_id),
  646. A.gm_id,
  647. A.oc_id,
  648. A.group_id,
  649. B.account_name,
  650. B.account_real_name,
  651. B.account_phone,
  652. B.account_staff_no,
  653. B.account_avatar,
  654. B.status,
  655. B.is_fixed,
  656. C.group_name,
  657. C.node_left,
  658. C.node_right,
  659. D.gmp_id,
  660. D.position_id,
  661. D.position_name,
  662. E.gmpg_id,
  663. E.grant_group_id,
  664. F.group_name as grant_group_name
  665. FROM
  666. s_group_member AS A
  667. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  668. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  669. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  670. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  671. LEFT JOIN (
  672. SELECT
  673. M.oc_id,
  674. M.account_id,
  675. M.gmp_id,
  676. M.group_id,
  677. M.position_id,
  678. P.position_name,
  679. N.gmpg_id,
  680. N.grant_group_id,
  681. GP.group_name as grant_group_name
  682. FROM
  683. s_group_member_position AS M
  684. LEFT JOIN s_group_member_position_grant AS N ON (
  685. M.oc_id = N.oc_id
  686. AND M.account_id = N.account_id
  687. AND M.group_id = N.group_id
  688. AND M.position_id = N.position_id )
  689. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  690. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  691. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  692. WHERE B.deleted_flag = 0
  693. AND A.oc_id = 406283
  694. ORDER BY A.account_id, A.group_id
  695. LIMIT 999999
  696. 11:10:43.380 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  697. 11:10:43.380 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  698. 11:10:43.390 [XNIO-1 task-5] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT
  699. A.oc_id,
  700. A.group_id,
  701. A.group_name,
  702. A.group_code,
  703. A.group_cat_id,
  704. C.group_cat_title,
  705. A.node_left,
  706. A.node_right,
  707. A.parent_id,
  708. A.root_id,
  709. B.group_name as parent_name,
  710. A.node_level,
  711. A.is_leaf,
  712. A.is_fixed,
  713. A.group_desc
  714. FROM s_group AS A
  715. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  716. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  717. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  718. 11:10:43.408 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  719. 11:10:43.419 [XNIO-1 task-4] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  720. A.hdanger_id,
  721. A.oc_id,
  722. A.goaf_id,
  723. A.hdanger_title,
  724. A.hdanger_level,
  725. A.hdanger_type,
  726. A.checklist_id,
  727. A.hdanger_desc,
  728. A.submit_group_id,
  729. A.submit_group_name,
  730. A.submit_position_id,
  731. A.submit_position_name,
  732. A.submit_account_id,
  733. A.submit_account_name,
  734. A.submit_time,
  735. A.review_group_id,
  736. A.review_group_name,
  737. A.review_position_id,
  738. A.review_position_name,
  739. A.review_account_id,
  740. A.review_account_name,
  741. A.danger_deadline,
  742. A.review_time,
  743. A.review_remark,
  744. A.rectify_group_id,
  745. A.rectify_group_name,
  746. A.rectify_position_id,
  747. A.rectify_position_name,
  748. A.rectify_account_id,
  749. A.rectify_account_name,
  750. A.rectify_time,
  751. A.danger_reason,
  752. A.rectify_measure,
  753. A.rectify_remark,
  754. A.accept_group_id,
  755. A.accept_group_name,
  756. A.accept_position_id,
  757. A.accept_position_name,
  758. A.accept_account_id,
  759. A.accept_account_name,
  760. A.accept_time,
  761. A.accept_remark,
  762. A.finish_time,
  763. A.status,
  764. B.wf_def_id,
  765. B.wf_ins_id,
  766. B.wf_ins_title,
  767. B.cur_group_id,
  768. B.cur_group_name,
  769. B.cur_position_id,
  770. B.cur_position_name,
  771. B.cur_account_id,
  772. B.cur_account_name,
  773. B.cur_activity_ins_id,
  774. B.cur_activity_code,
  775. B.cur_activity_title,
  776. B.cur_form_code,
  777. B.cur_activity_begin_time
  778. FROM goaf_hdanger AS A
  779. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  780. WHERE A.hdanger_id = 441050
  781. 11:10:43.421 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  782. 11:10:43.426 [XNIO-1 task-6] INFO p6spy - 2023-06-13 11:10:43 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT
  783. DISTINCT(A.account_id),
  784. A.gm_id,
  785. A.oc_id,
  786. A.group_id,
  787. B.account_name,
  788. B.account_real_name,
  789. B.account_phone,
  790. B.account_staff_no,
  791. B.account_avatar,
  792. B.status,
  793. B.is_fixed,
  794. C.group_name,
  795. C.node_left,
  796. C.node_right,
  797. D.gmp_id,
  798. D.position_id,
  799. D.position_name,
  800. E.gmpg_id,
  801. E.grant_group_id,
  802. F.group_name as grant_group_name
  803. FROM
  804. s_group_member AS A
  805. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  806. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  807. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  808. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  809. LEFT JOIN (
  810. SELECT
  811. M.oc_id,
  812. M.account_id,
  813. M.gmp_id,
  814. M.group_id,
  815. M.position_id,
  816. P.position_name,
  817. N.gmpg_id,
  818. N.grant_group_id,
  819. GP.group_name as grant_group_name
  820. FROM
  821. s_group_member_position AS M
  822. LEFT JOIN s_group_member_position_grant AS N ON (
  823. M.oc_id = N.oc_id
  824. AND M.account_id = N.account_id
  825. AND M.group_id = N.group_id
  826. AND M.position_id = N.position_id )
  827. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  828. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  829. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  830. WHERE B.deleted_flag = 0
  831. AND A.oc_id = 406283
  832. ORDER BY A.account_id, A.group_id
  833. LIMIT 999999
  834. 13:07:21.942 [XNIO-1 task-6] INFO p6spy - 2023-06-13 13:07:21 | Time Consuming: 6 ms | Connection: statement-11 | SQL: replace into uid_sequence(stub) values('a')
  835. 13:07:21.947 [XNIO-1 task-6] INFO p6spy - 2023-06-13 13:07:21 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT LAST_INSERT_ID() AS uid
  836. 13:07:21.961 [XNIO-1 task-6] INFO p6spy - 2023-06-13 13:07:21 | Time Consuming: 9 ms | Connection: statement-11 | SQL: INSERT INTO doc_file
  837. ( oc_id,
  838. file_id,
  839. file_title,
  840. dir_id,
  841. file_url,
  842. file_icon,
  843. file_ext,
  844. file_size,
  845. file_desc,
  846. uploaded_by,
  847. uploaded_at,
  848. created_by,
  849. created_at )
  850. values ( 406283,
  851. 441442,
  852. '智慧创新营业执照.jpg',
  853. 10000,
  854. 'http://113.141.93.143:9000/file/202361313721156431.jpg',
  855. 'http://113.141.93.143:9000/icon/2023613137219079350.jpg',
  856. 'jpg',
  857. 1119549,
  858. '智慧创新营业执照.jpg',
  859. 406283,
  860. '2023-06-13T13:07:21.947914300',
  861. 406283,
  862. '2023-06-13T13:07:21.947914300' )
  863. 13:07:39.785 [XNIO-1 task-8] INFO p6spy - 2023-06-13 13:07:39 | Time Consuming: 6 ms | Connection: statement-11 | SQL: SELECT 1
  864. 13:07:39.840 [XNIO-1 task-8] INFO p6spy - 2023-06-13 13:07:39 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT
  865. client_id,
  866. client_title,
  867. client_app_id,
  868. client_app_key,
  869. client_app_secret,
  870. client_desc,
  871. status,
  872. is_fixed
  873. FROM client
  874. WHERE deleted_flag = 0
  875. AND client_app_id = '10001'
  876. AND client_app_key = '82a8bf439373e305'
  877. 13:07:39.972 [XNIO-1 task-8] INFO p6spy - 2023-06-13 13:07:39 | Time Consuming: 57 ms | Connection: statement-11 | SQL: SELECT
  878. A.client_id,
  879. A.role_id,
  880. A.permit_id,
  881. A.permit_title,
  882. A.permit_code,
  883. A.permit_entry,
  884. A.permit_desc,
  885. A.permit_type,
  886. A.parent_id,
  887. A.root_id,
  888. A.sort_no,
  889. A.is_home
  890. FROM s_role_permit AS A
  891. WHERE 1 = 1
  892. AND A.client_id = 2
  893. AND A.role_id = 6
  894. ORDER BY A.parent_id ASC ,A.sort_no ASC
  895. 13:07:40.311 [XNIO-1 task-7] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 164 ms | Connection: statement-12 | SQL: SELECT 1
  896. 13:07:40.311 [XNIO-1 task-5] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 164 ms | Connection: statement-14 | SQL: SELECT 1
  897. 13:07:40.311 [XNIO-1 task-8] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 164 ms | Connection: statement-13 | SQL: SELECT 1
  898. 13:07:40.311 [XNIO-1 task-6] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 164 ms | Connection: statement-15 | SQL: SELECT 1
  899. 13:07:40.355 [XNIO-1 task-5] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 36 ms | Connection: statement-14 | SQL: SELECT *
  900. FROM goaf_baseinfo
  901. WHERE oc_id = 406283
  902. 13:07:40.355 [XNIO-1 task-6] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 36 ms | Connection: statement-15 | SQL: SELECT count(*)
  903. FROM msg AS M
  904. WHERE M.oc_id = 406283
  905. AND (
  906. EXISTS (
  907. SELECT 1 FROM msg_to TT
  908. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  909. ) OR
  910. EXISTS (
  911. SELECT 1 FROM msg_cc CC
  912. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  913. )
  914. )
  915. 13:07:40.355 [XNIO-1 task-8] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 36 ms | Connection: statement-13 | SQL: SELECT
  916. A.oc_id,
  917. A.group_id,
  918. A.group_name,
  919. A.group_code,
  920. A.group_cat_id,
  921. C.group_cat_title,
  922. A.node_left,
  923. A.node_right,
  924. A.parent_id,
  925. A.root_id,
  926. B.group_name as parent_name,
  927. A.node_level,
  928. A.is_leaf,
  929. A.is_fixed,
  930. A.group_desc
  931. FROM s_group AS A
  932. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  933. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  934. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  935. 13:07:40.376 [XNIO-1 task-2] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 8 ms | Connection: statement-11 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  936. 13:07:40.406 [XNIO-1 task-7] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 32 ms | Connection: statement-12 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  937. 13:07:40.414 [XNIO-1 task-2] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 35 ms | Connection: statement-11 | SQL: SELECT
  938. DISTINCT(A.account_id),
  939. A.gm_id,
  940. A.oc_id,
  941. A.group_id,
  942. B.account_name,
  943. B.account_real_name,
  944. B.account_phone,
  945. B.account_staff_no,
  946. B.account_avatar,
  947. B.status,
  948. B.is_fixed,
  949. C.group_name,
  950. C.node_left,
  951. C.node_right,
  952. D.gmp_id,
  953. D.position_id,
  954. D.position_name,
  955. E.gmpg_id,
  956. E.grant_group_id,
  957. F.group_name as grant_group_name
  958. FROM
  959. s_group_member AS A
  960. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  961. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  962. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  963. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  964. LEFT JOIN (
  965. SELECT
  966. M.oc_id,
  967. M.account_id,
  968. M.gmp_id,
  969. M.group_id,
  970. M.position_id,
  971. P.position_name,
  972. N.gmpg_id,
  973. N.grant_group_id,
  974. GP.group_name as grant_group_name
  975. FROM
  976. s_group_member_position AS M
  977. LEFT JOIN s_group_member_position_grant AS N ON (
  978. M.oc_id = N.oc_id
  979. AND M.account_id = N.account_id
  980. AND M.group_id = N.group_id
  981. AND M.position_id = N.position_id )
  982. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  983. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  984. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  985. WHERE B.deleted_flag = 0
  986. AND A.oc_id = 406283
  987. ORDER BY A.account_id, A.group_id
  988. LIMIT 999999
  989. 13:07:40.419 [XNIO-1 task-7] INFO p6spy - 2023-06-13 13:07:40 | Time Consuming: 11 ms | Connection: statement-12 | SQL: SELECT
  990. A.hdanger_id,
  991. A.oc_id,
  992. A.goaf_id,
  993. A.hdanger_title,
  994. A.hdanger_level,
  995. A.hdanger_type,
  996. A.checklist_id,
  997. A.hdanger_desc,
  998. A.submit_group_id,
  999. A.submit_group_name,
  1000. A.submit_position_id,
  1001. A.submit_position_name,
  1002. A.submit_account_id,
  1003. A.submit_account_name,
  1004. A.submit_time,
  1005. A.review_group_id,
  1006. A.review_group_name,
  1007. A.review_position_id,
  1008. A.review_position_name,
  1009. A.review_account_id,
  1010. A.review_account_name,
  1011. A.danger_deadline,
  1012. A.review_time,
  1013. A.review_remark,
  1014. A.rectify_group_id,
  1015. A.rectify_group_name,
  1016. A.rectify_position_id,
  1017. A.rectify_position_name,
  1018. A.rectify_account_id,
  1019. A.rectify_account_name,
  1020. A.rectify_time,
  1021. A.danger_reason,
  1022. A.rectify_measure,
  1023. A.rectify_remark,
  1024. A.accept_group_id,
  1025. A.accept_group_name,
  1026. A.accept_position_id,
  1027. A.accept_position_name,
  1028. A.accept_account_id,
  1029. A.accept_account_name,
  1030. A.accept_time,
  1031. A.accept_remark,
  1032. A.finish_time,
  1033. A.status,
  1034. B.wf_def_id,
  1035. B.wf_ins_id,
  1036. B.wf_ins_title,
  1037. B.cur_group_id,
  1038. B.cur_group_name,
  1039. B.cur_position_id,
  1040. B.cur_position_name,
  1041. B.cur_account_id,
  1042. B.cur_account_name,
  1043. B.cur_activity_ins_id,
  1044. B.cur_activity_code,
  1045. B.cur_activity_title,
  1046. B.cur_form_code,
  1047. B.cur_activity_begin_time
  1048. FROM goaf_hdanger AS A
  1049. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  1050. WHERE A.oc_id = 406283
  1051. AND A.status = '1'
  1052. ORDER BY A.submit_time DESC
  1053. LIMIT 10
  1054. 15:08:05.066 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:05 | Time Consuming: 5002 ms | Connection: statement-82 | SQL: SELECT 1
  1055. 15:08:10.069 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:10 | Time Consuming: 5001 ms | Connection: statement-83 | SQL: SELECT 1
  1056. 15:08:11.658 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1057. 15:08:11.667 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1058. 15:08:11.668 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1059. 15:08:11.671 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1060. 15:08:11.672 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1061. 15:08:11.673 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1062. 15:08:11.673 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1063. 15:08:11.684 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1064. 15:08:11.686 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1065. 15:08:11.686 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1066. 15:08:11.686 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1067. 15:08:11.686 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1068. 15:08:11.698 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1069. 15:08:11.702 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1070. 15:08:11.703 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:11 | Time Consuming: 1633 ms | Connection: statement-84 | SQL: SELECT 1
  1071. 15:08:15.329 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1072. 15:08:15.387 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17596 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  1073. 15:08:15.388 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  1074. 15:08:15.450 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1075. 15:08:15.450 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1076. 15:08:17.393 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1077. 15:08:17.397 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1078. 15:08:17.490 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  1079. 15:08:17.659 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1080. 15:08:17.678 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1081. 15:08:18.529 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1082. 15:08:18.529 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3078 ms
  1083. 15:08:21.056 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1084. 15:08:21.069 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1085. 15:08:21.069 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1086. 15:08:21.070 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1087. 15:08:21.070 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1088. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1089. NOT STARTED.
  1090. Currently in standby mode.
  1091. Number of jobs executed: 0
  1092. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1093. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1094. 15:08:21.070 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1095. 15:08:21.070 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1096. 15:08:21.070 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6305a252
  1097. 15:08:22.993 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1098. 15:08:23.134 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1099. 15:08:23.167 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1100. 15:08:23.167 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1101. 15:08:23.167 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1102. 15:08:23.190 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1103. 15:08:23.202 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1104. 15:08:23.214 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1105. 15:08:23.251 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1106. 15:08:23.306 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1107. 15:08:23.455 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1108. 15:08:23.455 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 142 ms
  1109. 15:08:23.464 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1110. 15:08:23.498 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1111. 15:08:23.515 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  1112. 15:08:23.518 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1113. 15:08:23.518 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1114. 15:08:23.540 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.756 seconds (process running for 9.776)
  1115. 15:08:23.543 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1116. 15:08:23.551 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1117. 15:08:23.906 [restartedMain] INFO p6spy - 2023-06-13 15:08:23 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1118. 15:08:23.910 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@979da19
  1119. 15:08:23.913 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1120. 15:08:23.987 [restartedMain] INFO p6spy - 2023-06-13 15:08:23 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT
  1121. A.job_id,
  1122. A.job_title,
  1123. A.job_desc,
  1124. A.status,
  1125. A.job_type,
  1126. A.job_code,
  1127. A.job_cron,
  1128. A.job_class_id,
  1129. B.job_class,
  1130. A.cycle_title,
  1131. A.cycle_period,
  1132. A.cycle_unit
  1133. FROM job AS A
  1134. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1135. WHERE A.deleted_flag = 0
  1136. AND A.status = 1
  1137. ORDER BY A.job_id ASC
  1138. 15:08:24.013 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1139. 15:08:24.015 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1140. 15:08:24.015 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1141. 15:08:24.016 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1142. 15:08:24.016 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1143. 15:08:24.016 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1144. 15:08:24.016 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1145. 15:08:24.017 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1146. 15:08:24.276 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1147. 15:08:24.276 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1148. 15:08:24.280 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  1149. 15:08:24.299 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-06-13 15:08:24 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1150. 15:08:35.294 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1151. 15:08:35.307 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1152. client_id,
  1153. client_title,
  1154. client_app_id,
  1155. client_app_key,
  1156. client_app_secret,
  1157. client_desc,
  1158. status,
  1159. is_fixed
  1160. FROM client
  1161. WHERE deleted_flag = 0
  1162. AND client_app_id = '10001'
  1163. AND client_app_key = '82a8bf439373e305'
  1164. 15:08:35.329 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  1165. A.oc_id,
  1166. B.oc_type_id,
  1167. B.oc_name,
  1168. A.account_id,
  1169. A.account_name,
  1170. A.account_real_name,
  1171. A.password,
  1172. A.account_type,
  1173. A.account_staff_no,
  1174. A.account_phone,
  1175. A.account_last_ip,
  1176. A.account_loc,
  1177. A.status,
  1178. A.account_avatar,
  1179. A.account_photo,
  1180. A.account_real_name,
  1181. A.account_intro,
  1182. A.wx_id,
  1183. A.is_fixed
  1184. FROM account AS A
  1185. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1186. WHERE A.deleted_flag = 0
  1187. AND (A.account_name = 'sxky'
  1188. OR A.account_phone = 'sxky'
  1189. OR A.account_mail = 'sxky'
  1190. OR A.account_staff_no = 'sxky')
  1191. 15:08:35.342 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1192. A.oc_id,
  1193. A.oc_name,
  1194. A.oc_type_id,
  1195. A.root_id,
  1196. A.parent_id,
  1197. A.admin_id,
  1198. B.account_name AS admin_name,
  1199. A.group_id,
  1200. A.node_left,
  1201. A.node_right,
  1202. A.node_level,
  1203. A.is_leaf,
  1204. A.status,
  1205. A.if_lic
  1206. FROM oc AS A
  1207. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1208. WHERE A.oc_id = 406283
  1209. 15:08:35.349 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1210. A.rm_id,
  1211. A.role_id,
  1212. B.role_type_id,
  1213. B.role_code,
  1214. B.role_name,
  1215. A.account_id
  1216. FROM s_role_member AS A
  1217. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1218. WHERE account_id = 406283
  1219. LIMIT 1
  1220. 15:08:35.357 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1221. A.gm_id,
  1222. A.oc_id,
  1223. A.group_id,
  1224. B.group_name,
  1225. B.node_left ,
  1226. B.node_right,
  1227. A.account_id
  1228. FROM s_group_member AS A
  1229. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1230. WHERE B.deleted_flag = 0
  1231. AND A.oc_id = 406283
  1232. AND A.account_id = 406283
  1233. LIMIT 1
  1234. 15:08:35.366 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1235. A.gmp_id,
  1236. A.oc_id,
  1237. A.group_id,
  1238. B.group_name,
  1239. A.account_id,
  1240. D.account_name,
  1241. D.account_real_name,
  1242. A.position_id,
  1243. C.position_name
  1244. FROM s_group_member_position A
  1245. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1246. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1247. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1248. WHERE A.deleted_flag = 0
  1249. AND A.oc_id = 406283
  1250. AND A.group_id = 406283
  1251. AND A.account_id = 406283
  1252. LIMIT 1
  1253. 15:08:35.373 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1254. A.gmpg_id,
  1255. A.oc_id,
  1256. A.group_id,
  1257. A.account_id,
  1258. A.position_id,
  1259. A.grant_group_id,
  1260. B.group_name AS grant_group_name
  1261. FROM s_group_member_position_grant A
  1262. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1263. WHERE A.deleted_flag = 0
  1264. AND A.oc_id = 406283
  1265. AND A.group_id = 406283
  1266. AND A.account_id = 406283
  1267. AND A.position_id = 406283
  1268. LIMIT 1
  1269. 15:08:35.916 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1270. client_id,
  1271. client_title,
  1272. client_app_id,
  1273. client_app_key,
  1274. client_app_secret,
  1275. client_desc,
  1276. status,
  1277. is_fixed
  1278. FROM client
  1279. WHERE deleted_flag = 0
  1280. AND client_app_id = '10001'
  1281. AND client_app_key = '82a8bf439373e305'
  1282. 15:08:35.937 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:35 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1283. A.client_id,
  1284. A.role_id,
  1285. A.permit_id,
  1286. A.permit_title,
  1287. A.permit_code,
  1288. A.permit_entry,
  1289. A.permit_desc,
  1290. A.permit_type,
  1291. A.parent_id,
  1292. A.root_id,
  1293. A.sort_no,
  1294. A.is_home
  1295. FROM s_role_permit AS A
  1296. WHERE 1 = 1
  1297. AND A.client_id = 2
  1298. AND A.role_id = 6
  1299. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1300. 15:08:36.232 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  1301. 15:08:36.232 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  1302. 15:08:36.233 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT 1
  1303. 15:08:36.245 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT checklist_id,
  1304. oc_id,
  1305. checklist_title,
  1306. checklist_desc
  1307. FROM goaf_checklist
  1308. WHERE oc_id = 406283
  1309. 15:08:36.246 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 7 ms | Connection: statement-3 | SQL: SELECT *
  1310. FROM goaf_baseinfo
  1311. WHERE oc_id = 406283
  1312. 15:08:36.258 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 28 ms | Connection: statement-0 | SQL: SELECT count(*)
  1313. FROM msg AS M
  1314. WHERE M.oc_id = 406283
  1315. AND (
  1316. EXISTS (
  1317. SELECT 1 FROM msg_to TT
  1318. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1319. ) OR
  1320. EXISTS (
  1321. SELECT 1 FROM msg_cc CC
  1322. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1323. )
  1324. )
  1325. 15:08:36.327 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_baseinfo WHERE oc_id = 406283
  1326. 15:08:36.337 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:36 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  1327. FROM goaf_baseinfo
  1328. WHERE oc_id = 406283
  1329. LIMIT 10
  1330. 15:08:44.718 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:44 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  1331. 15:08:45.912 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT 1
  1332. 15:08:45.925 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT
  1333. client_id,
  1334. client_title,
  1335. client_app_id,
  1336. client_app_key,
  1337. client_app_secret,
  1338. client_desc,
  1339. status,
  1340. is_fixed
  1341. FROM client
  1342. WHERE deleted_flag = 0
  1343. AND client_app_id = '10001'
  1344. AND client_app_key = '82a8bf439373e305'
  1345. 15:08:45.943 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1346. A.oc_id,
  1347. B.oc_type_id,
  1348. B.oc_name,
  1349. A.account_id,
  1350. A.account_name,
  1351. A.account_real_name,
  1352. A.password,
  1353. A.account_type,
  1354. A.account_staff_no,
  1355. A.account_phone,
  1356. A.account_last_ip,
  1357. A.account_loc,
  1358. A.status,
  1359. A.account_avatar,
  1360. A.account_photo,
  1361. A.account_real_name,
  1362. A.account_intro,
  1363. A.wx_id,
  1364. A.is_fixed
  1365. FROM account AS A
  1366. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1367. WHERE A.deleted_flag = 0
  1368. AND (A.account_name = 'sxky'
  1369. OR A.account_phone = 'sxky'
  1370. OR A.account_mail = 'sxky'
  1371. OR A.account_staff_no = 'sxky')
  1372. 15:08:45.948 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1373. A.oc_id,
  1374. A.oc_name,
  1375. A.oc_type_id,
  1376. A.root_id,
  1377. A.parent_id,
  1378. A.admin_id,
  1379. B.account_name AS admin_name,
  1380. A.group_id,
  1381. A.node_left,
  1382. A.node_right,
  1383. A.node_level,
  1384. A.is_leaf,
  1385. A.status,
  1386. A.if_lic
  1387. FROM oc AS A
  1388. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1389. WHERE A.oc_id = 406283
  1390. 15:08:45.953 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT
  1391. A.rm_id,
  1392. A.role_id,
  1393. B.role_type_id,
  1394. B.role_code,
  1395. B.role_name,
  1396. A.account_id
  1397. FROM s_role_member AS A
  1398. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1399. WHERE account_id = 406283
  1400. LIMIT 1
  1401. 15:08:45.958 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1402. A.gm_id,
  1403. A.oc_id,
  1404. A.group_id,
  1405. B.group_name,
  1406. B.node_left ,
  1407. B.node_right,
  1408. A.account_id
  1409. FROM s_group_member AS A
  1410. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1411. WHERE B.deleted_flag = 0
  1412. AND A.oc_id = 406283
  1413. AND A.account_id = 406283
  1414. LIMIT 1
  1415. 15:08:45.965 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT
  1416. A.gmp_id,
  1417. A.oc_id,
  1418. A.group_id,
  1419. B.group_name,
  1420. A.account_id,
  1421. D.account_name,
  1422. D.account_real_name,
  1423. A.position_id,
  1424. C.position_name
  1425. FROM s_group_member_position A
  1426. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1427. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1428. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1429. WHERE A.deleted_flag = 0
  1430. AND A.oc_id = 406283
  1431. AND A.group_id = 406283
  1432. AND A.account_id = 406283
  1433. LIMIT 1
  1434. 15:08:45.971 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:45 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1435. A.gmpg_id,
  1436. A.oc_id,
  1437. A.group_id,
  1438. A.account_id,
  1439. A.position_id,
  1440. A.grant_group_id,
  1441. B.group_name AS grant_group_name
  1442. FROM s_group_member_position_grant A
  1443. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1444. WHERE A.deleted_flag = 0
  1445. AND A.oc_id = 406283
  1446. AND A.group_id = 406283
  1447. AND A.account_id = 406283
  1448. AND A.position_id = 406283
  1449. LIMIT 1
  1450. 15:08:46.006 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT
  1451. client_id,
  1452. client_title,
  1453. client_app_id,
  1454. client_app_key,
  1455. client_app_secret,
  1456. client_desc,
  1457. status,
  1458. is_fixed
  1459. FROM client
  1460. WHERE deleted_flag = 0
  1461. AND client_app_id = '10001'
  1462. AND client_app_key = '82a8bf439373e305'
  1463. 15:08:46.023 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1464. A.client_id,
  1465. A.role_id,
  1466. A.permit_id,
  1467. A.permit_title,
  1468. A.permit_code,
  1469. A.permit_entry,
  1470. A.permit_desc,
  1471. A.permit_type,
  1472. A.parent_id,
  1473. A.root_id,
  1474. A.sort_no,
  1475. A.is_home
  1476. FROM s_role_permit AS A
  1477. WHERE 1 = 1
  1478. AND A.client_id = 2
  1479. AND A.role_id = 6
  1480. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1481. 15:08:46.138 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-3 | SQL: SELECT 1
  1482. 15:08:46.141 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1483. 15:08:46.141 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1484. 15:08:46.142 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  1485. FROM goaf_baseinfo
  1486. WHERE oc_id = 406283
  1487. 15:08:46.150 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT checklist_id,
  1488. oc_id,
  1489. checklist_title,
  1490. checklist_desc
  1491. FROM goaf_checklist
  1492. WHERE oc_id = 406283
  1493. 15:08:46.151 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 4 ms | Connection: statement-3 | SQL: SELECT count(0) FROM goaf_baseinfo WHERE oc_id = 406283
  1494. 15:08:46.158 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT *
  1495. FROM goaf_baseinfo
  1496. WHERE oc_id = 406283
  1497. LIMIT 10
  1498. 15:08:46.176 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:08:46 | Time Consuming: 29 ms | Connection: statement-1 | SQL: SELECT count(*)
  1499. FROM msg AS M
  1500. WHERE M.oc_id = 406283
  1501. AND (
  1502. EXISTS (
  1503. SELECT 1 FROM msg_to TT
  1504. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1505. ) OR
  1506. EXISTS (
  1507. SELECT 1 FROM msg_cc CC
  1508. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1509. )
  1510. )
  1511. 15:09:25.884 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:09:25 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1512. 15:09:25.918 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:09:25 | Time Consuming: 29 ms | Connection: statement-1 | SQL: SELECT count(*)
  1513. FROM msg AS M
  1514. WHERE M.oc_id = 406283
  1515. AND (
  1516. EXISTS (
  1517. SELECT 1 FROM msg_to TT
  1518. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1519. ) OR
  1520. EXISTS (
  1521. SELECT 1 FROM msg_cc CC
  1522. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1523. )
  1524. )
  1525. 15:10:05.363 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1526. 15:10:05.376 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT
  1527. client_id,
  1528. client_title,
  1529. client_app_id,
  1530. client_app_key,
  1531. client_app_secret,
  1532. client_desc,
  1533. status,
  1534. is_fixed
  1535. FROM client
  1536. WHERE deleted_flag = 0
  1537. AND client_app_id = '10001'
  1538. AND client_app_key = '82a8bf439373e305'
  1539. 15:10:05.402 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  1540. A.oc_id,
  1541. B.oc_type_id,
  1542. B.oc_name,
  1543. A.account_id,
  1544. A.account_name,
  1545. A.account_real_name,
  1546. A.password,
  1547. A.account_type,
  1548. A.account_staff_no,
  1549. A.account_phone,
  1550. A.account_last_ip,
  1551. A.account_loc,
  1552. A.status,
  1553. A.account_avatar,
  1554. A.account_photo,
  1555. A.account_real_name,
  1556. A.account_intro,
  1557. A.wx_id,
  1558. A.is_fixed
  1559. FROM account AS A
  1560. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1561. WHERE A.deleted_flag = 0
  1562. AND (A.account_name = 'sxky'
  1563. OR A.account_phone = 'sxky'
  1564. OR A.account_mail = 'sxky'
  1565. OR A.account_staff_no = 'sxky')
  1566. 15:10:05.407 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1567. A.oc_id,
  1568. A.oc_name,
  1569. A.oc_type_id,
  1570. A.root_id,
  1571. A.parent_id,
  1572. A.admin_id,
  1573. B.account_name AS admin_name,
  1574. A.group_id,
  1575. A.node_left,
  1576. A.node_right,
  1577. A.node_level,
  1578. A.is_leaf,
  1579. A.status,
  1580. A.if_lic
  1581. FROM oc AS A
  1582. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1583. WHERE A.oc_id = 406283
  1584. 15:10:05.411 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1585. A.rm_id,
  1586. A.role_id,
  1587. B.role_type_id,
  1588. B.role_code,
  1589. B.role_name,
  1590. A.account_id
  1591. FROM s_role_member AS A
  1592. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1593. WHERE account_id = 406283
  1594. LIMIT 1
  1595. 15:10:05.416 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1596. A.gm_id,
  1597. A.oc_id,
  1598. A.group_id,
  1599. B.group_name,
  1600. B.node_left ,
  1601. B.node_right,
  1602. A.account_id
  1603. FROM s_group_member AS A
  1604. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1605. WHERE B.deleted_flag = 0
  1606. AND A.oc_id = 406283
  1607. AND A.account_id = 406283
  1608. LIMIT 1
  1609. 15:10:05.420 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1610. A.gmp_id,
  1611. A.oc_id,
  1612. A.group_id,
  1613. B.group_name,
  1614. A.account_id,
  1615. D.account_name,
  1616. D.account_real_name,
  1617. A.position_id,
  1618. C.position_name
  1619. FROM s_group_member_position A
  1620. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1621. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1622. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1623. WHERE A.deleted_flag = 0
  1624. AND A.oc_id = 406283
  1625. AND A.group_id = 406283
  1626. AND A.account_id = 406283
  1627. LIMIT 1
  1628. 15:10:05.425 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1629. A.gmpg_id,
  1630. A.oc_id,
  1631. A.group_id,
  1632. A.account_id,
  1633. A.position_id,
  1634. A.grant_group_id,
  1635. B.group_name AS grant_group_name
  1636. FROM s_group_member_position_grant A
  1637. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1638. WHERE A.deleted_flag = 0
  1639. AND A.oc_id = 406283
  1640. AND A.group_id = 406283
  1641. AND A.account_id = 406283
  1642. AND A.position_id = 406283
  1643. LIMIT 1
  1644. 15:10:05.466 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  1645. client_id,
  1646. client_title,
  1647. client_app_id,
  1648. client_app_key,
  1649. client_app_secret,
  1650. client_desc,
  1651. status,
  1652. is_fixed
  1653. FROM client
  1654. WHERE deleted_flag = 0
  1655. AND client_app_id = '10001'
  1656. AND client_app_key = '82a8bf439373e305'
  1657. 15:10:05.484 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  1658. A.client_id,
  1659. A.role_id,
  1660. A.permit_id,
  1661. A.permit_title,
  1662. A.permit_code,
  1663. A.permit_entry,
  1664. A.permit_desc,
  1665. A.permit_type,
  1666. A.parent_id,
  1667. A.root_id,
  1668. A.sort_no,
  1669. A.is_home
  1670. FROM s_role_permit AS A
  1671. WHERE 1 = 1
  1672. AND A.client_id = 2
  1673. AND A.role_id = 6
  1674. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1675. 15:10:05.641 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1676. 15:10:05.648 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  1677. 15:10:05.649 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT 1
  1678. 15:10:05.649 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT checklist_id,
  1679. oc_id,
  1680. checklist_title,
  1681. checklist_desc
  1682. FROM goaf_checklist
  1683. WHERE oc_id = 406283
  1684. 15:10:05.651 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_baseinfo WHERE oc_id = 406283
  1685. 15:10:05.657 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  1686. FROM goaf_baseinfo
  1687. WHERE oc_id = 406283
  1688. 15:10:05.657 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1689. FROM goaf_baseinfo
  1690. WHERE oc_id = 406283
  1691. LIMIT 10
  1692. 15:10:05.683 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:10:05 | Time Consuming: 28 ms | Connection: statement-3 | SQL: SELECT count(*)
  1693. FROM msg AS M
  1694. WHERE M.oc_id = 406283
  1695. AND (
  1696. EXISTS (
  1697. SELECT 1 FROM msg_to TT
  1698. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1699. ) OR
  1700. EXISTS (
  1701. SELECT 1 FROM msg_cc CC
  1702. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1703. )
  1704. )
  1705. 15:10:08.403 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT 1
  1706. 15:10:08.403 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1707. 15:10:08.404 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  1708. 15:10:08.409 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT 1
  1709. 15:10:08.411 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-4 | SQL: SELECT 1
  1710. 15:10:08.417 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT
  1711. A.oc_id,
  1712. B.oc_type_id,
  1713. B.oc_name,
  1714. A.account_id,
  1715. A.account_name,
  1716. A.account_real_name,
  1717. A.password,
  1718. A.account_type,
  1719. A.account_staff_no,
  1720. A.account_phone,
  1721. A.account_last_ip,
  1722. A.account_loc,
  1723. A.status,
  1724. A.account_avatar,
  1725. A.account_photo,
  1726. A.account_real_name,
  1727. A.account_intro,
  1728. A.wx_id,
  1729. A.is_fixed
  1730. FROM account AS A
  1731. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1732. WHERE A.deleted_flag = 0
  1733. AND A.oc_id = 406283
  1734. AND A.account_id = 406283
  1735. 15:10:08.422 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1736. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  1737. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  1738. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  1739. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  1740. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  1741. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  1742. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  1743. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  1744. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  1745. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  1746. FROM goaf_hdanger AS A
  1747. WHERE A.oc_id = 406283 AND A.status != -1
  1748. AND A.hdanger_type = '0'
  1749. ORDER BY A.submit_time DESC
  1750. 15:10:08.424 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 6 ms | Connection: statement-4 | SQL: SELECT
  1751. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  1752. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  1753. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  1754. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  1755. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  1756. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  1757. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  1758. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  1759. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  1760. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  1761. FROM goaf_hdanger AS A
  1762. WHERE A.oc_id = 406283 AND A.status != -1
  1763. AND A.hdanger_type = '1'
  1764. ORDER BY A.submit_time DESC
  1765. 15:10:08.425 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT
  1766. A.hdanger_id,
  1767. A.oc_id,
  1768. A.goaf_id,
  1769. A.hdanger_title,
  1770. A.hdanger_level,
  1771. A.hdanger_type,
  1772. A.checklist_id,
  1773. A.hdanger_desc,
  1774. A.submit_group_id,
  1775. A.submit_group_name,
  1776. A.submit_position_id,
  1777. A.submit_position_name,
  1778. A.submit_account_id,
  1779. A.submit_account_name,
  1780. A.submit_time,
  1781. A.review_group_id,
  1782. A.review_group_name,
  1783. A.review_position_id,
  1784. A.review_position_name,
  1785. A.review_account_id,
  1786. A.review_account_name,
  1787. A.danger_deadline,
  1788. A.review_time,
  1789. A.review_remark,
  1790. A.rectify_group_id,
  1791. A.rectify_group_name,
  1792. A.rectify_position_id,
  1793. A.rectify_position_name,
  1794. A.rectify_account_id,
  1795. A.rectify_account_name,
  1796. A.rectify_time,
  1797. A.danger_reason,
  1798. A.rectify_measure,
  1799. A.rectify_remark,
  1800. A.accept_group_id,
  1801. A.accept_group_name,
  1802. A.accept_position_id,
  1803. A.accept_position_name,
  1804. A.accept_account_id,
  1805. A.accept_account_name,
  1806. A.accept_time,
  1807. A.accept_remark,
  1808. A.finish_time,
  1809. A.status,
  1810. B.wf_def_id,
  1811. B.wf_ins_id,
  1812. B.wf_ins_title,
  1813. B.cur_group_id,
  1814. B.cur_group_name,
  1815. B.cur_position_id,
  1816. B.cur_position_name,
  1817. B.cur_account_id,
  1818. B.cur_account_name,
  1819. B.cur_activity_ins_id,
  1820. B.cur_activity_code,
  1821. B.cur_activity_title,
  1822. B.cur_form_code,
  1823. B.cur_activity_begin_time
  1824. FROM goaf_hdanger AS A
  1825. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  1826. WHERE A.oc_id = 406283
  1827. AND A.hdanger_type = '0'
  1828. ORDER BY A.submit_time DESC
  1829. 15:10:08.429 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 10 ms | Connection: statement-3 | SQL: SELECT A.*,
  1830. B.goaf_orebelt,
  1831. B.goaf_orebody,
  1832. B.goaf_oreheight,
  1833. B.goaf_name
  1834. FROM goaf_task AS A
  1835. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  1836. WHERE A.oc_id = 406283
  1837. AND A.expected_end_date >= '2023-06-13 00:00:00'
  1838. AND A.expected_end_date <= '2023-06-14 00:00:00'
  1839. 15:10:08.437 [XNIO-1 task-7] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  1840. oc_id,
  1841. map_id,
  1842. map_title,
  1843. map_desc,
  1844. map_cat_id,
  1845. map_raster_layer,
  1846. map_type_id
  1847. FROM ent_map
  1848. WHERE 1 = 1 AND deleted_flag = 0
  1849. AND oc_id = 406283
  1850. 15:10:08.453 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-4 | SQL: SELECT
  1851. COUNT(*) AS 'goafDevTotalNum',
  1852. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  1853. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  1854. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  1855. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  1856. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  1857. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  1858. FROM goaf_devinfo AS A
  1859. WHERE A.oc_id = 406283
  1860. 15:10:08.454 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  1861. A.hdanger_id,
  1862. A.oc_id,
  1863. A.goaf_id,
  1864. A.hdanger_title,
  1865. A.hdanger_level,
  1866. A.hdanger_type,
  1867. A.checklist_id,
  1868. A.hdanger_desc,
  1869. A.submit_group_id,
  1870. A.submit_group_name,
  1871. A.submit_position_id,
  1872. A.submit_position_name,
  1873. A.submit_account_id,
  1874. A.submit_account_name,
  1875. A.submit_time,
  1876. A.review_group_id,
  1877. A.review_group_name,
  1878. A.review_position_id,
  1879. A.review_position_name,
  1880. A.review_account_id,
  1881. A.review_account_name,
  1882. A.danger_deadline,
  1883. A.review_time,
  1884. A.review_remark,
  1885. A.rectify_group_id,
  1886. A.rectify_group_name,
  1887. A.rectify_position_id,
  1888. A.rectify_position_name,
  1889. A.rectify_account_id,
  1890. A.rectify_account_name,
  1891. A.rectify_time,
  1892. A.danger_reason,
  1893. A.rectify_measure,
  1894. A.rectify_remark,
  1895. A.accept_group_id,
  1896. A.accept_group_name,
  1897. A.accept_position_id,
  1898. A.accept_position_name,
  1899. A.accept_account_id,
  1900. A.accept_account_name,
  1901. A.accept_time,
  1902. A.accept_remark,
  1903. A.finish_time,
  1904. A.status,
  1905. B.wf_def_id,
  1906. B.wf_ins_id,
  1907. B.wf_ins_title,
  1908. B.cur_group_id,
  1909. B.cur_group_name,
  1910. B.cur_position_id,
  1911. B.cur_position_name,
  1912. B.cur_account_id,
  1913. B.cur_account_name,
  1914. B.cur_activity_ins_id,
  1915. B.cur_activity_code,
  1916. B.cur_activity_title,
  1917. B.cur_form_code,
  1918. B.cur_activity_begin_time
  1919. FROM goaf_hdanger AS A
  1920. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  1921. WHERE A.oc_id = 406283
  1922. AND A.hdanger_type = '1'
  1923. ORDER BY A.submit_time DESC
  1924. 15:10:08.478 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 4 ms | Connection: statement-4 | SQL: SELECT
  1925. COUNT(*) AS 'goafDevTotalNum',
  1926. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  1927. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  1928. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  1929. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  1930. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  1931. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  1932. FROM goaf_devinfo AS A
  1933. WHERE A.oc_id = 406283
  1934. 15:10:08.490 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT A.goaflayer_id,
  1935. A.oc_id,
  1936. A.goaf_id,
  1937. A.goaf_name,
  1938. A.map_id,
  1939. A.layer_id,
  1940. B.layer_cat_id,
  1941. B.layer_title,
  1942. B.layer_marker,
  1943. B.layer_vector,
  1944. B.layer_vector_type
  1945. FROM goaf_map_layer AS A
  1946. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  1947. WHERE A.oc_id = 406283
  1948. AND A.map_id = '406283'
  1949. 15:10:08.494 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT A.*,
  1950. B.goaf_orebelt,
  1951. B.goaf_orebody,
  1952. B.goaf_oreheight,
  1953. B.goaf_name
  1954. FROM goaf_check_record AS A
  1955. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  1956. WHERE A.oc_id = 406283
  1957. 15:10:08.503 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:10:08 | Time Consuming: 5 ms | Connection: statement-4 | SQL: SELECT
  1958. COUNT(*) AS 'goafDevTotalNum',
  1959. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  1960. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  1961. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  1962. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  1963. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  1964. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  1965. FROM goaf_devinfo AS A
  1966. WHERE A.oc_id = 406283
  1967. 15:11:29.607 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-3 | SQL: SELECT 1
  1968. 15:11:29.607 [XNIO-1 task-7] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-4 | SQL: SELECT 1
  1969. 15:11:29.607 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT 1
  1970. 15:11:29.607 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  1971. 15:11:29.607 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT 1
  1972. 15:11:29.619 [XNIO-1 task-7] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 6 ms | Connection: statement-4 | SQL: SELECT A.*,
  1973. B.goaf_orebelt,
  1974. B.goaf_orebody,
  1975. B.goaf_oreheight,
  1976. B.goaf_name
  1977. FROM goaf_task AS A
  1978. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  1979. WHERE A.oc_id = 406283
  1980. AND A.expected_end_date >= '2023-06-13 00:00:00'
  1981. AND A.expected_end_date <= '2023-06-14 00:00:00'
  1982. 15:11:29.619 [XNIO-1 task-6] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT
  1983. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  1984. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  1985. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  1986. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  1987. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  1988. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  1989. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  1990. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  1991. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  1992. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  1993. FROM goaf_hdanger AS A
  1994. WHERE A.oc_id = 406283 AND A.status != -1
  1995. AND A.hdanger_type = '0'
  1996. ORDER BY A.submit_time DESC
  1997. 15:11:29.619 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1998. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  1999. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  2000. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  2001. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  2002. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  2003. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  2004. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  2005. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  2006. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  2007. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  2008. FROM goaf_hdanger AS A
  2009. WHERE A.oc_id = 406283 AND A.status != -1
  2010. AND A.hdanger_type = '1'
  2011. ORDER BY A.submit_time DESC
  2012. 15:11:29.619 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  2013. A.oc_id,
  2014. B.oc_type_id,
  2015. B.oc_name,
  2016. A.account_id,
  2017. A.account_name,
  2018. A.account_real_name,
  2019. A.password,
  2020. A.account_type,
  2021. A.account_staff_no,
  2022. A.account_phone,
  2023. A.account_last_ip,
  2024. A.account_loc,
  2025. A.status,
  2026. A.account_avatar,
  2027. A.account_photo,
  2028. A.account_real_name,
  2029. A.account_intro,
  2030. A.wx_id,
  2031. A.is_fixed
  2032. FROM account AS A
  2033. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2034. WHERE A.deleted_flag = 0
  2035. AND A.oc_id = 406283
  2036. AND A.account_id = 406283
  2037. 15:11:29.621 [XNIO-1 task-4] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 8 ms | Connection: statement-3 | SQL: SELECT
  2038. A.hdanger_id,
  2039. A.oc_id,
  2040. A.goaf_id,
  2041. A.hdanger_title,
  2042. A.hdanger_level,
  2043. A.hdanger_type,
  2044. A.checklist_id,
  2045. A.hdanger_desc,
  2046. A.submit_group_id,
  2047. A.submit_group_name,
  2048. A.submit_position_id,
  2049. A.submit_position_name,
  2050. A.submit_account_id,
  2051. A.submit_account_name,
  2052. A.submit_time,
  2053. A.review_group_id,
  2054. A.review_group_name,
  2055. A.review_position_id,
  2056. A.review_position_name,
  2057. A.review_account_id,
  2058. A.review_account_name,
  2059. A.danger_deadline,
  2060. A.review_time,
  2061. A.review_remark,
  2062. A.rectify_group_id,
  2063. A.rectify_group_name,
  2064. A.rectify_position_id,
  2065. A.rectify_position_name,
  2066. A.rectify_account_id,
  2067. A.rectify_account_name,
  2068. A.rectify_time,
  2069. A.danger_reason,
  2070. A.rectify_measure,
  2071. A.rectify_remark,
  2072. A.accept_group_id,
  2073. A.accept_group_name,
  2074. A.accept_position_id,
  2075. A.accept_position_name,
  2076. A.accept_account_id,
  2077. A.accept_account_name,
  2078. A.accept_time,
  2079. A.accept_remark,
  2080. A.finish_time,
  2081. A.status,
  2082. B.wf_def_id,
  2083. B.wf_ins_id,
  2084. B.wf_ins_title,
  2085. B.cur_group_id,
  2086. B.cur_group_name,
  2087. B.cur_position_id,
  2088. B.cur_position_name,
  2089. B.cur_account_id,
  2090. B.cur_account_name,
  2091. B.cur_activity_ins_id,
  2092. B.cur_activity_code,
  2093. B.cur_activity_title,
  2094. B.cur_form_code,
  2095. B.cur_activity_begin_time
  2096. FROM goaf_hdanger AS A
  2097. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  2098. WHERE A.oc_id = 406283
  2099. AND A.hdanger_type = '0'
  2100. ORDER BY A.submit_time DESC
  2101. 15:11:29.649 [XNIO-1 task-7] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-4 | SQL: SELECT
  2102. oc_id,
  2103. map_id,
  2104. map_title,
  2105. map_desc,
  2106. map_cat_id,
  2107. map_raster_layer,
  2108. map_type_id
  2109. FROM ent_map
  2110. WHERE 1 = 1 AND deleted_flag = 0
  2111. AND oc_id = 406283
  2112. 15:11:29.649 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT
  2113. COUNT(*) AS 'goafDevTotalNum',
  2114. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  2115. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  2116. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  2117. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  2118. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  2119. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  2120. FROM goaf_devinfo AS A
  2121. WHERE A.oc_id = 406283
  2122. 15:11:29.649 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT
  2123. A.hdanger_id,
  2124. A.oc_id,
  2125. A.goaf_id,
  2126. A.hdanger_title,
  2127. A.hdanger_level,
  2128. A.hdanger_type,
  2129. A.checklist_id,
  2130. A.hdanger_desc,
  2131. A.submit_group_id,
  2132. A.submit_group_name,
  2133. A.submit_position_id,
  2134. A.submit_position_name,
  2135. A.submit_account_id,
  2136. A.submit_account_name,
  2137. A.submit_time,
  2138. A.review_group_id,
  2139. A.review_group_name,
  2140. A.review_position_id,
  2141. A.review_position_name,
  2142. A.review_account_id,
  2143. A.review_account_name,
  2144. A.danger_deadline,
  2145. A.review_time,
  2146. A.review_remark,
  2147. A.rectify_group_id,
  2148. A.rectify_group_name,
  2149. A.rectify_position_id,
  2150. A.rectify_position_name,
  2151. A.rectify_account_id,
  2152. A.rectify_account_name,
  2153. A.rectify_time,
  2154. A.danger_reason,
  2155. A.rectify_measure,
  2156. A.rectify_remark,
  2157. A.accept_group_id,
  2158. A.accept_group_name,
  2159. A.accept_position_id,
  2160. A.accept_position_name,
  2161. A.accept_account_id,
  2162. A.accept_account_name,
  2163. A.accept_time,
  2164. A.accept_remark,
  2165. A.finish_time,
  2166. A.status,
  2167. B.wf_def_id,
  2168. B.wf_ins_id,
  2169. B.wf_ins_title,
  2170. B.cur_group_id,
  2171. B.cur_group_name,
  2172. B.cur_position_id,
  2173. B.cur_position_name,
  2174. B.cur_account_id,
  2175. B.cur_account_name,
  2176. B.cur_activity_ins_id,
  2177. B.cur_activity_code,
  2178. B.cur_activity_title,
  2179. B.cur_form_code,
  2180. B.cur_activity_begin_time
  2181. FROM goaf_hdanger AS A
  2182. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  2183. WHERE A.oc_id = 406283
  2184. AND A.hdanger_type = '1'
  2185. ORDER BY A.submit_time DESC
  2186. 15:11:29.667 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.*,
  2187. B.goaf_orebelt,
  2188. B.goaf_orebody,
  2189. B.goaf_oreheight,
  2190. B.goaf_name
  2191. FROM goaf_check_record AS A
  2192. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  2193. WHERE A.oc_id = 406283
  2194. 15:11:29.687 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  2195. COUNT(*) AS 'goafDevTotalNum',
  2196. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  2197. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  2198. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  2199. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  2200. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  2201. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  2202. FROM goaf_devinfo AS A
  2203. WHERE A.oc_id = 406283
  2204. 15:11:29.706 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT A.goaflayer_id,
  2205. A.oc_id,
  2206. A.goaf_id,
  2207. A.goaf_name,
  2208. A.map_id,
  2209. A.layer_id,
  2210. B.layer_cat_id,
  2211. B.layer_title,
  2212. B.layer_marker,
  2213. B.layer_vector,
  2214. B.layer_vector_type
  2215. FROM goaf_map_layer AS A
  2216. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  2217. WHERE A.oc_id = 406283
  2218. AND A.map_id = '406283'
  2219. 15:11:29.723 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:11:29 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  2220. COUNT(*) AS 'goafDevTotalNum',
  2221. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  2222. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  2223. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  2224. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  2225. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  2226. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  2227. FROM goaf_devinfo AS A
  2228. WHERE A.oc_id = 406283
  2229. 15:11:31.513 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  2230. 15:11:31.514 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  2231. 15:11:31.514 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 9 ms | Connection: statement-2 | SQL: SELECT 1
  2232. 15:11:31.535 [XNIO-1 task-5] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 10 ms | Connection: statement-2 | SQL: SELECT *
  2233. FROM goaf_baseinfo
  2234. WHERE oc_id = 406283
  2235. 15:11:31.535 [XNIO-1 task-3] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  2236. COUNT(*) AS 'sensorDataTotalNum',
  2237. IFNULL(SUM( CASE WHEN goaf_sensor_data_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureAlarmNum',
  2238. IFNULL(SUM( CASE WHEN goaf_sensor_data_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementAlarmNum',
  2239. IFNULL(SUM( CASE WHEN goaf_sensor_data_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasAlarmNum'
  2240. FROM goaf_sensordata AS A
  2241. WHERE A.oc_id = 406283
  2242. 15:11:31.546 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo AS A LEFT JOIN (SELECT D.goaf_data_id, D.goaf_dev_name AS dev_name, D.goaf_sensor_value, D.goaf_datareport_time, D.goaf_dev_id FROM goaf_sensordata AS D RIGHT JOIN (SELECT goaf_dev_name, MAX(goaf_datareport_time) AS goaf_datareport_time FROM goaf_sensordata GROUP BY goaf_dev_name) AS E ON E.goaf_datareport_time = D.goaf_datareport_time) AS F ON A.goaf_dev_name = F.dev_name LEFT JOIN goaf_hdanger AS C ON F.goaf_data_id = C.goaf_data_id WHERE A.oc_id = 406283
  2243. 15:11:31.556 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:31 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT
  2244. A.*,
  2245. F.goaf_sensor_value,
  2246. F.goaf_datareport_time,
  2247. C.hdanger_level
  2248. FROM goaf_devinfo AS A
  2249. LEFT JOIN (
  2250. SELECT D.goaf_data_id, D.goaf_dev_name AS dev_name, D.goaf_sensor_value, D.goaf_datareport_time, D.goaf_dev_id
  2251. FROM goaf_sensordata AS D
  2252. RIGHT JOIN (
  2253. SELECT goaf_dev_name, MAX(goaf_datareport_time) AS goaf_datareport_time
  2254. FROM goaf_sensordata
  2255. GROUP BY goaf_dev_name) AS E ON E.goaf_datareport_time = D.goaf_datareport_time
  2256. ) AS F ON A.goaf_dev_name = F.dev_name
  2257. LEFT JOIN goaf_hdanger AS C ON F.goaf_data_id = C.goaf_data_id
  2258. WHERE A.oc_id = 406283
  2259. LIMIT 8
  2260. 15:11:33.729 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:33 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  2261. 15:11:33.743 [XNIO-1 task-2] INFO p6spy - 2023-06-13 15:11:33 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT *
  2262. FROM goaf_baseinfo
  2263. WHERE oc_id = 406283
  2264. 16:19:00.293 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5014 ms | Connection: statement-45 | SQL: SELECT 1
  2265. 16:19:00.293 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5014 ms | Connection: statement-43 | SQL: SELECT 1
  2266. 16:19:00.293 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5014 ms | Connection: statement-46 | SQL: SELECT 1
  2267. 16:19:00.293 [XNIO-1 task-2] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5014 ms | Connection: statement-44 | SQL: SELECT 1
  2268. 16:19:00.299 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 4 ms | Connection: statement-48 | SQL: SELECT 1
  2269. 16:19:00.299 [XNIO-1 task-2] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 4 ms | Connection: statement-50 | SQL: SELECT 1
  2270. 16:19:00.299 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 4 ms | Connection: statement-49 | SQL: SELECT 1
  2271. 16:19:00.300 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5 ms | Connection: statement-47 | SQL: SELECT 1
  2272. 16:19:00.309 [XNIO-1 task-2] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5 ms | Connection: statement-50 | SQL: SELECT *
  2273. FROM goaf_baseinfo
  2274. WHERE oc_id = 406283
  2275. 16:19:00.310 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 4 ms | Connection: statement-47 | SQL: SELECT
  2276. A.oc_id,
  2277. A.group_id,
  2278. A.group_name,
  2279. A.group_code,
  2280. A.group_cat_id,
  2281. C.group_cat_title,
  2282. A.node_left,
  2283. A.node_right,
  2284. A.parent_id,
  2285. A.root_id,
  2286. B.group_name as parent_name,
  2287. A.node_level,
  2288. A.is_leaf,
  2289. A.is_fixed,
  2290. A.group_desc
  2291. FROM s_group AS A
  2292. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  2293. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  2294. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  2295. 16:19:00.346 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 5 ms | Connection: statement-48 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  2296. 16:19:00.351 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 9 ms | Connection: statement-49 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  2297. 16:19:00.354 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 7 ms | Connection: statement-48 | SQL: SELECT
  2298. A.hdanger_id,
  2299. A.oc_id,
  2300. A.goaf_id,
  2301. A.hdanger_title,
  2302. A.hdanger_level,
  2303. A.hdanger_type,
  2304. A.checklist_id,
  2305. A.hdanger_desc,
  2306. A.submit_group_id,
  2307. A.submit_group_name,
  2308. A.submit_position_id,
  2309. A.submit_position_name,
  2310. A.submit_account_id,
  2311. A.submit_account_name,
  2312. A.submit_time,
  2313. A.review_group_id,
  2314. A.review_group_name,
  2315. A.review_position_id,
  2316. A.review_position_name,
  2317. A.review_account_id,
  2318. A.review_account_name,
  2319. A.danger_deadline,
  2320. A.review_time,
  2321. A.review_remark,
  2322. A.rectify_group_id,
  2323. A.rectify_group_name,
  2324. A.rectify_position_id,
  2325. A.rectify_position_name,
  2326. A.rectify_account_id,
  2327. A.rectify_account_name,
  2328. A.rectify_time,
  2329. A.danger_reason,
  2330. A.rectify_measure,
  2331. A.rectify_remark,
  2332. A.accept_group_id,
  2333. A.accept_group_name,
  2334. A.accept_position_id,
  2335. A.accept_position_name,
  2336. A.accept_account_id,
  2337. A.accept_account_name,
  2338. A.accept_time,
  2339. A.accept_remark,
  2340. A.finish_time,
  2341. A.status,
  2342. B.wf_def_id,
  2343. B.wf_ins_id,
  2344. B.wf_ins_title,
  2345. B.cur_group_id,
  2346. B.cur_group_name,
  2347. B.cur_position_id,
  2348. B.cur_position_name,
  2349. B.cur_account_id,
  2350. B.cur_account_name,
  2351. B.cur_activity_ins_id,
  2352. B.cur_activity_code,
  2353. B.cur_activity_title,
  2354. B.cur_form_code,
  2355. B.cur_activity_begin_time
  2356. FROM goaf_hdanger AS A
  2357. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  2358. WHERE A.oc_id = 406283
  2359. AND A.status = '1'
  2360. ORDER BY A.submit_time DESC
  2361. LIMIT 10
  2362. 16:19:00.358 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:00 | Time Consuming: 6 ms | Connection: statement-49 | SQL: SELECT
  2363. DISTINCT(A.account_id),
  2364. A.gm_id,
  2365. A.oc_id,
  2366. A.group_id,
  2367. B.account_name,
  2368. B.account_real_name,
  2369. B.account_phone,
  2370. B.account_staff_no,
  2371. B.account_avatar,
  2372. B.status,
  2373. B.is_fixed,
  2374. C.group_name,
  2375. C.node_left,
  2376. C.node_right,
  2377. D.gmp_id,
  2378. D.position_id,
  2379. D.position_name,
  2380. E.gmpg_id,
  2381. E.grant_group_id,
  2382. F.group_name as grant_group_name
  2383. FROM
  2384. s_group_member AS A
  2385. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  2386. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  2387. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  2388. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  2389. LEFT JOIN (
  2390. SELECT
  2391. M.oc_id,
  2392. M.account_id,
  2393. M.gmp_id,
  2394. M.group_id,
  2395. M.position_id,
  2396. P.position_name,
  2397. N.gmpg_id,
  2398. N.grant_group_id,
  2399. GP.group_name as grant_group_name
  2400. FROM
  2401. s_group_member_position AS M
  2402. LEFT JOIN s_group_member_position_grant AS N ON (
  2403. M.oc_id = N.oc_id
  2404. AND M.account_id = N.account_id
  2405. AND M.group_id = N.group_id
  2406. AND M.position_id = N.position_id )
  2407. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  2408. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  2409. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  2410. WHERE B.deleted_flag = 0
  2411. AND A.oc_id = 406283
  2412. ORDER BY A.account_id, A.group_id
  2413. LIMIT 999999
  2414. 16:19:05.566 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 3 ms | Connection: statement-48 | SQL: SELECT 1
  2415. 16:19:05.566 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 3 ms | Connection: statement-47 | SQL: SELECT 1
  2416. 16:19:05.576 [XNIO-1 task-5] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 5 ms | Connection: statement-48 | SQL: SELECT
  2417. A.oc_id,
  2418. A.group_id,
  2419. A.group_name,
  2420. A.group_code,
  2421. A.group_cat_id,
  2422. C.group_cat_title,
  2423. A.node_left,
  2424. A.node_right,
  2425. A.parent_id,
  2426. A.root_id,
  2427. B.group_name as parent_name,
  2428. A.node_level,
  2429. A.is_leaf,
  2430. A.is_fixed,
  2431. A.group_desc
  2432. FROM s_group AS A
  2433. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  2434. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  2435. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  2436. 16:19:05.580 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 4 ms | Connection: statement-49 | SQL: SELECT 1
  2437. 16:19:05.591 [XNIO-1 task-3] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 5 ms | Connection: statement-49 | SQL: SELECT
  2438. A.hdanger_id,
  2439. A.oc_id,
  2440. A.goaf_id,
  2441. A.hdanger_title,
  2442. A.hdanger_level,
  2443. A.hdanger_type,
  2444. A.checklist_id,
  2445. A.hdanger_desc,
  2446. A.submit_group_id,
  2447. A.submit_group_name,
  2448. A.submit_position_id,
  2449. A.submit_position_name,
  2450. A.submit_account_id,
  2451. A.submit_account_name,
  2452. A.submit_time,
  2453. A.review_group_id,
  2454. A.review_group_name,
  2455. A.review_position_id,
  2456. A.review_position_name,
  2457. A.review_account_id,
  2458. A.review_account_name,
  2459. A.danger_deadline,
  2460. A.review_time,
  2461. A.review_remark,
  2462. A.rectify_group_id,
  2463. A.rectify_group_name,
  2464. A.rectify_position_id,
  2465. A.rectify_position_name,
  2466. A.rectify_account_id,
  2467. A.rectify_account_name,
  2468. A.rectify_time,
  2469. A.danger_reason,
  2470. A.rectify_measure,
  2471. A.rectify_remark,
  2472. A.accept_group_id,
  2473. A.accept_group_name,
  2474. A.accept_position_id,
  2475. A.accept_position_name,
  2476. A.accept_account_id,
  2477. A.accept_account_name,
  2478. A.accept_time,
  2479. A.accept_remark,
  2480. A.finish_time,
  2481. A.status,
  2482. B.wf_def_id,
  2483. B.wf_ins_id,
  2484. B.wf_ins_title,
  2485. B.cur_group_id,
  2486. B.cur_group_name,
  2487. B.cur_position_id,
  2488. B.cur_position_name,
  2489. B.cur_account_id,
  2490. B.cur_account_name,
  2491. B.cur_activity_ins_id,
  2492. B.cur_activity_code,
  2493. B.cur_activity_title,
  2494. B.cur_form_code,
  2495. B.cur_activity_begin_time
  2496. FROM goaf_hdanger AS A
  2497. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  2498. WHERE A.hdanger_id = 441050
  2499. 16:19:05.603 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 5 ms | Connection: statement-47 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  2500. 16:19:05.610 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:05 | Time Consuming: 5 ms | Connection: statement-47 | SQL: SELECT
  2501. DISTINCT(A.account_id),
  2502. A.gm_id,
  2503. A.oc_id,
  2504. A.group_id,
  2505. B.account_name,
  2506. B.account_real_name,
  2507. B.account_phone,
  2508. B.account_staff_no,
  2509. B.account_avatar,
  2510. B.status,
  2511. B.is_fixed,
  2512. C.group_name,
  2513. C.node_left,
  2514. C.node_right,
  2515. D.gmp_id,
  2516. D.position_id,
  2517. D.position_name,
  2518. E.gmpg_id,
  2519. E.grant_group_id,
  2520. F.group_name as grant_group_name
  2521. FROM
  2522. s_group_member AS A
  2523. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  2524. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  2525. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  2526. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  2527. LEFT JOIN (
  2528. SELECT
  2529. M.oc_id,
  2530. M.account_id,
  2531. M.gmp_id,
  2532. M.group_id,
  2533. M.position_id,
  2534. P.position_name,
  2535. N.gmpg_id,
  2536. N.grant_group_id,
  2537. GP.group_name as grant_group_name
  2538. FROM
  2539. s_group_member_position AS M
  2540. LEFT JOIN s_group_member_position_grant AS N ON (
  2541. M.oc_id = N.oc_id
  2542. AND M.account_id = N.account_id
  2543. AND M.group_id = N.group_id
  2544. AND M.position_id = N.position_id )
  2545. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  2546. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  2547. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  2548. WHERE B.deleted_flag = 0
  2549. AND A.oc_id = 406283
  2550. ORDER BY A.account_id, A.group_id
  2551. LIMIT 999999
  2552. 16:19:15.430 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:15 | Time Consuming: 4 ms | Connection: statement-47 | SQL: SELECT 1
  2553. 16:19:17.406 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:17 | Time Consuming: 7 ms | Connection: statement-47 | SQL: replace into uid_sequence(stub) values('a')
  2554. 16:19:17.410 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:17 | Time Consuming: 3 ms | Connection: statement-47 | SQL: SELECT LAST_INSERT_ID() AS uid
  2555. 16:19:17.430 [XNIO-1 task-7] INFO p6spy - 2023-06-13 16:19:17 | Time Consuming: 15 ms | Connection: statement-47 | SQL: INSERT INTO doc_file
  2556. ( oc_id,
  2557. file_id,
  2558. file_title,
  2559. dir_id,
  2560. file_url,
  2561. file_icon,
  2562. file_ext,
  2563. file_size,
  2564. file_desc,
  2565. uploaded_by,
  2566. uploaded_at,
  2567. created_by,
  2568. created_at )
  2569. values ( 406283,
  2570. 441444,
  2571. '智慧创新营业执照.jpg',
  2572. 10000,
  2573. 'http://113.141.93.143:9000/file/2023613161916142122.jpg',
  2574. 'http://113.141.93.143:9000/icon/20236131619173676955.jpg',
  2575. 'jpg',
  2576. 1119549,
  2577. '智慧创新营业执照.jpg',
  2578. 406283,
  2579. '2023-06-13T16:19:17.410469200',
  2580. 406283,
  2581. '2023-06-13T16:19:17.410469200' )
  2582. 16:27:00.020 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2583. 16:27:05.023 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:05 | Time Consuming: 5001 ms | Connection: statement-48 | SQL: SELECT 1
  2584. 16:27:10.025 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:10 | Time Consuming: 5001 ms | Connection: statement-49 | SQL: SELECT 1
  2585. 16:27:15.027 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 5002 ms | Connection: statement-54 | SQL: SELECT 1
  2586. 16:27:15.033 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 5 ms | Connection: statement-55 | SQL: SELECT 1
  2587. 16:27:15.055 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 11 ms | Connection: statement-55 | SQL: UPDATE goaf_task
  2588. SET status = 2
  2589. WHERE job_id = 439094
  2590. 16:27:15.062 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: SELECT *
  2591. FROM goaf_check_def
  2592. WHERE 1=1
  2593. AND job_id = 439094
  2594. AND status = 1
  2595. 16:27:15.071 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2596. 16:27:15.074 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2597. 16:27:15.111 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2598. 16:27:15.127 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 13 ms | Connection: statement-55 | SQL: insert into goaf_task
  2599. ( task_id,
  2600. oc_id,
  2601. goaf_id,
  2602. job_id,
  2603. check_def_id,
  2604. checklist_id,
  2605. task_title,
  2606. task_desc,
  2607. expected_start_date,
  2608. expected_end_date,
  2609. handle_account_id,
  2610. handle_account_name,
  2611. handle_position_id,
  2612. handle_position_name,
  2613. handle_group_id,
  2614. handle_group_name )
  2615. values ( 441465,
  2616. 406283,
  2617. 440952,
  2618. 439094,
  2619. 441001,
  2620. 439392,
  2621. '测试',
  2622. '121',
  2623. '2023-06-13',
  2624. '2023-06-14',
  2625. 406283,
  2626. 'sxky',
  2627. 406283,
  2628. '管理员',
  2629. 406283,
  2630. '森鑫矿业' )
  2631. 16:27:15.156 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 27 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2632. 16:27:15.160 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2633. 16:27:15.160 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2634. 16:27:15.175 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 11 ms | Connection: statement-55 | SQL: insert into goaf_task
  2635. ( task_id,
  2636. oc_id,
  2637. goaf_id,
  2638. job_id,
  2639. check_def_id,
  2640. checklist_id,
  2641. task_title,
  2642. task_desc,
  2643. expected_start_date,
  2644. expected_end_date,
  2645. handle_account_id,
  2646. handle_account_name,
  2647. handle_position_id,
  2648. handle_position_name,
  2649. handle_group_id,
  2650. handle_group_name )
  2651. values ( 441466,
  2652. 406283,
  2653. 440952,
  2654. 439094,
  2655. 441001,
  2656. 439392,
  2657. '测试',
  2658. '121',
  2659. '2023-06-13',
  2660. '2023-06-14',
  2661. 406283,
  2662. 'sxky',
  2663. 406283,
  2664. '管理员',
  2665. 406283,
  2666. '森鑫矿业' )
  2667. 16:27:15.186 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 9 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2668. 16:27:15.193 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2669. 16:27:15.194 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2670. 16:27:15.206 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 9 ms | Connection: statement-55 | SQL: insert into goaf_task
  2671. ( task_id,
  2672. oc_id,
  2673. goaf_id,
  2674. job_id,
  2675. check_def_id,
  2676. checklist_id,
  2677. task_title,
  2678. task_desc,
  2679. expected_start_date,
  2680. expected_end_date,
  2681. handle_account_id,
  2682. handle_account_name,
  2683. handle_position_id,
  2684. handle_position_name,
  2685. handle_group_id,
  2686. handle_group_name )
  2687. values ( 441467,
  2688. 406283,
  2689. 440952,
  2690. 439094,
  2691. 441001,
  2692. 439392,
  2693. '测试',
  2694. '121',
  2695. '2023-06-13',
  2696. '2023-06-14',
  2697. 406283,
  2698. 'sxky',
  2699. 406283,
  2700. '管理员',
  2701. 406283,
  2702. '森鑫矿业' )
  2703. 16:27:15.228 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 21 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2704. 16:27:15.234 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 5 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2705. 16:27:15.235 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2706. 16:27:15.252 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 13 ms | Connection: statement-55 | SQL: insert into goaf_task
  2707. ( task_id,
  2708. oc_id,
  2709. goaf_id,
  2710. job_id,
  2711. check_def_id,
  2712. checklist_id,
  2713. task_title,
  2714. task_desc,
  2715. expected_start_date,
  2716. expected_end_date,
  2717. handle_account_id,
  2718. handle_account_name,
  2719. handle_position_id,
  2720. handle_position_name,
  2721. handle_group_id,
  2722. handle_group_name )
  2723. values ( 441468,
  2724. 406283,
  2725. 440952,
  2726. 439094,
  2727. 441001,
  2728. 439392,
  2729. '测试',
  2730. '121',
  2731. '2023-06-13',
  2732. '2023-06-14',
  2733. 406283,
  2734. 'sxky',
  2735. 406283,
  2736. '管理员',
  2737. 406283,
  2738. '森鑫矿业' )
  2739. 16:27:15.265 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 12 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2740. 16:27:15.270 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 4 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2741. 16:27:15.271 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2742. 16:27:15.280 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: insert into goaf_task
  2743. ( task_id,
  2744. oc_id,
  2745. goaf_id,
  2746. job_id,
  2747. check_def_id,
  2748. checklist_id,
  2749. task_title,
  2750. task_desc,
  2751. expected_start_date,
  2752. expected_end_date,
  2753. handle_account_id,
  2754. handle_account_name,
  2755. handle_position_id,
  2756. handle_position_name,
  2757. handle_group_id,
  2758. handle_group_name )
  2759. values ( 441469,
  2760. 406283,
  2761. 440952,
  2762. 439094,
  2763. 441001,
  2764. 439392,
  2765. '测试',
  2766. '121',
  2767. '2023-06-13',
  2768. '2023-06-14',
  2769. 406283,
  2770. 'sxky',
  2771. 406283,
  2772. '管理员',
  2773. 406283,
  2774. '森鑫矿业' )
  2775. 16:27:15.288 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2776. 16:27:15.292 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2777. 16:27:15.293 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2778. 16:27:15.305 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 8 ms | Connection: statement-55 | SQL: insert into goaf_task
  2779. ( task_id,
  2780. oc_id,
  2781. goaf_id,
  2782. job_id,
  2783. check_def_id,
  2784. checklist_id,
  2785. task_title,
  2786. task_desc,
  2787. expected_start_date,
  2788. expected_end_date,
  2789. handle_account_id,
  2790. handle_account_name,
  2791. handle_position_id,
  2792. handle_position_name,
  2793. handle_group_id,
  2794. handle_group_name )
  2795. values ( 441470,
  2796. 406283,
  2797. 440952,
  2798. 439094,
  2799. 441001,
  2800. 439392,
  2801. '测试',
  2802. '121',
  2803. '2023-06-13',
  2804. '2023-06-14',
  2805. 406283,
  2806. 'sxky',
  2807. 406283,
  2808. '管理员',
  2809. 406283,
  2810. '森鑫矿业' )
  2811. 16:27:15.318 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 11 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2812. 16:27:15.328 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 9 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2813. 16:27:15.329 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2814. 16:27:15.352 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 20 ms | Connection: statement-55 | SQL: insert into goaf_task
  2815. ( task_id,
  2816. oc_id,
  2817. goaf_id,
  2818. job_id,
  2819. check_def_id,
  2820. checklist_id,
  2821. task_title,
  2822. task_desc,
  2823. expected_start_date,
  2824. expected_end_date,
  2825. handle_account_id,
  2826. handle_account_name,
  2827. handle_position_id,
  2828. handle_position_name,
  2829. handle_group_id,
  2830. handle_group_name )
  2831. values ( 441471,
  2832. 406283,
  2833. 440952,
  2834. 439094,
  2835. 441001,
  2836. 439392,
  2837. '测试',
  2838. '121',
  2839. '2023-06-13',
  2840. '2023-06-14',
  2841. 406283,
  2842. 'sxky',
  2843. 406283,
  2844. '管理员',
  2845. 406283,
  2846. '森鑫矿业' )
  2847. 16:27:15.361 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 8 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2848. 16:27:15.367 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 4 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2849. 16:27:15.367 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2850. 16:27:15.379 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 10 ms | Connection: statement-55 | SQL: insert into goaf_task
  2851. ( task_id,
  2852. oc_id,
  2853. goaf_id,
  2854. job_id,
  2855. check_def_id,
  2856. checklist_id,
  2857. task_title,
  2858. task_desc,
  2859. expected_start_date,
  2860. expected_end_date,
  2861. handle_account_id,
  2862. handle_account_name,
  2863. handle_position_id,
  2864. handle_position_name,
  2865. handle_group_id,
  2866. handle_group_name )
  2867. values ( 441472,
  2868. 406283,
  2869. 440952,
  2870. 439094,
  2871. 441001,
  2872. 439392,
  2873. '测试',
  2874. '121',
  2875. '2023-06-13',
  2876. '2023-06-14',
  2877. 406283,
  2878. 'sxky',
  2879. 406283,
  2880. '管理员',
  2881. 406283,
  2882. '森鑫矿业' )
  2883. 16:27:15.393 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 12 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2884. 16:27:15.399 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2885. 16:27:15.400 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2886. 16:27:15.410 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 8 ms | Connection: statement-55 | SQL: insert into goaf_task
  2887. ( task_id,
  2888. oc_id,
  2889. goaf_id,
  2890. job_id,
  2891. check_def_id,
  2892. checklist_id,
  2893. task_title,
  2894. task_desc,
  2895. expected_start_date,
  2896. expected_end_date,
  2897. handle_account_id,
  2898. handle_account_name,
  2899. handle_position_id,
  2900. handle_position_name,
  2901. handle_group_id,
  2902. handle_group_name )
  2903. values ( 441473,
  2904. 406283,
  2905. 440952,
  2906. 439094,
  2907. 441001,
  2908. 439392,
  2909. '测试',
  2910. '121',
  2911. '2023-06-13',
  2912. '2023-06-14',
  2913. 406283,
  2914. 'sxky',
  2915. 406283,
  2916. '管理员',
  2917. 406283,
  2918. '森鑫矿业' )
  2919. 16:27:15.424 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 12 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2920. 16:27:15.429 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 4 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2921. 16:27:15.430 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2922. 16:27:15.447 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 17 ms | Connection: statement-55 | SQL: insert into goaf_task
  2923. ( task_id,
  2924. oc_id,
  2925. goaf_id,
  2926. job_id,
  2927. check_def_id,
  2928. checklist_id,
  2929. task_title,
  2930. task_desc,
  2931. expected_start_date,
  2932. expected_end_date,
  2933. handle_account_id,
  2934. handle_account_name,
  2935. handle_position_id,
  2936. handle_position_name,
  2937. handle_group_id,
  2938. handle_group_name )
  2939. values ( 441474,
  2940. 406283,
  2941. 440952,
  2942. 439094,
  2943. 441001,
  2944. 439392,
  2945. '测试',
  2946. '121',
  2947. '2023-06-13',
  2948. '2023-06-14',
  2949. 406283,
  2950. 'sxky',
  2951. 406283,
  2952. '管理员',
  2953. 406283,
  2954. '森鑫矿业' )
  2955. 16:27:15.458 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 9 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2956. 16:27:15.466 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2957. 16:27:15.466 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2958. 16:27:15.477 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 9 ms | Connection: statement-55 | SQL: insert into goaf_task
  2959. ( task_id,
  2960. oc_id,
  2961. goaf_id,
  2962. job_id,
  2963. check_def_id,
  2964. checklist_id,
  2965. task_title,
  2966. task_desc,
  2967. expected_start_date,
  2968. expected_end_date,
  2969. handle_account_id,
  2970. handle_account_name,
  2971. handle_position_id,
  2972. handle_position_name,
  2973. handle_group_id,
  2974. handle_group_name )
  2975. values ( 441475,
  2976. 406283,
  2977. 440952,
  2978. 439094,
  2979. 441001,
  2980. 439392,
  2981. '测试',
  2982. '121',
  2983. '2023-06-13',
  2984. '2023-06-14',
  2985. 406283,
  2986. 'sxky',
  2987. 406283,
  2988. '管理员',
  2989. 406283,
  2990. '森鑫矿业' )
  2991. 16:27:15.484 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  2992. 16:27:15.487 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 2 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  2993. 16:27:15.488 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  2994. 16:27:15.496 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: insert into goaf_task
  2995. ( task_id,
  2996. oc_id,
  2997. goaf_id,
  2998. job_id,
  2999. check_def_id,
  3000. checklist_id,
  3001. task_title,
  3002. task_desc,
  3003. expected_start_date,
  3004. expected_end_date,
  3005. handle_account_id,
  3006. handle_account_name,
  3007. handle_position_id,
  3008. handle_position_name,
  3009. handle_group_id,
  3010. handle_group_name )
  3011. values ( 441476,
  3012. 406283,
  3013. 440952,
  3014. 439094,
  3015. 441001,
  3016. 439392,
  3017. '测试',
  3018. '121',
  3019. '2023-06-13',
  3020. '2023-06-14',
  3021. 406283,
  3022. 'sxky',
  3023. 406283,
  3024. '管理员',
  3025. 406283,
  3026. '森鑫矿业' )
  3027. 16:27:15.504 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3028. 16:27:15.508 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3029. 16:27:15.509 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3030. 16:27:15.519 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 8 ms | Connection: statement-55 | SQL: insert into goaf_task
  3031. ( task_id,
  3032. oc_id,
  3033. goaf_id,
  3034. job_id,
  3035. check_def_id,
  3036. checklist_id,
  3037. task_title,
  3038. task_desc,
  3039. expected_start_date,
  3040. expected_end_date,
  3041. handle_account_id,
  3042. handle_account_name,
  3043. handle_position_id,
  3044. handle_position_name,
  3045. handle_group_id,
  3046. handle_group_name )
  3047. values ( 441477,
  3048. 406283,
  3049. 440952,
  3050. 439094,
  3051. 441001,
  3052. 439392,
  3053. '测试',
  3054. '121',
  3055. '2023-06-13',
  3056. '2023-06-14',
  3057. 406283,
  3058. 'sxky',
  3059. 406283,
  3060. '管理员',
  3061. 406283,
  3062. '森鑫矿业' )
  3063. 16:27:15.526 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3064. 16:27:15.530 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 2 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3065. 16:27:15.530 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3066. 16:27:15.539 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: insert into goaf_task
  3067. ( task_id,
  3068. oc_id,
  3069. goaf_id,
  3070. job_id,
  3071. check_def_id,
  3072. checklist_id,
  3073. task_title,
  3074. task_desc,
  3075. expected_start_date,
  3076. expected_end_date,
  3077. handle_account_id,
  3078. handle_account_name,
  3079. handle_position_id,
  3080. handle_position_name,
  3081. handle_group_id,
  3082. handle_group_name )
  3083. values ( 441478,
  3084. 406283,
  3085. 440952,
  3086. 439094,
  3087. 441001,
  3088. 439392,
  3089. '测试',
  3090. '121',
  3091. '2023-06-13',
  3092. '2023-06-14',
  3093. 406283,
  3094. 'sxky',
  3095. 406283,
  3096. '管理员',
  3097. 406283,
  3098. '森鑫矿业' )
  3099. 16:27:15.548 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3100. 16:27:15.552 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3101. 16:27:15.552 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3102. 16:27:15.562 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: insert into goaf_task
  3103. ( task_id,
  3104. oc_id,
  3105. goaf_id,
  3106. job_id,
  3107. check_def_id,
  3108. checklist_id,
  3109. task_title,
  3110. task_desc,
  3111. expected_start_date,
  3112. expected_end_date,
  3113. handle_account_id,
  3114. handle_account_name,
  3115. handle_position_id,
  3116. handle_position_name,
  3117. handle_group_id,
  3118. handle_group_name )
  3119. values ( 441479,
  3120. 406283,
  3121. 440952,
  3122. 439094,
  3123. 441001,
  3124. 439392,
  3125. '测试',
  3126. '121',
  3127. '2023-06-13',
  3128. '2023-06-14',
  3129. 406283,
  3130. 'sxky',
  3131. 406283,
  3132. '管理员',
  3133. 406283,
  3134. '森鑫矿业' )
  3135. 16:27:15.569 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3136. 16:27:15.573 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 2 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3137. 16:27:15.574 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3138. 16:27:15.584 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: insert into goaf_task
  3139. ( task_id,
  3140. oc_id,
  3141. goaf_id,
  3142. job_id,
  3143. check_def_id,
  3144. checklist_id,
  3145. task_title,
  3146. task_desc,
  3147. expected_start_date,
  3148. expected_end_date,
  3149. handle_account_id,
  3150. handle_account_name,
  3151. handle_position_id,
  3152. handle_position_name,
  3153. handle_group_id,
  3154. handle_group_name )
  3155. values ( 441480,
  3156. 406283,
  3157. 440952,
  3158. 439094,
  3159. 441001,
  3160. 439392,
  3161. '测试',
  3162. '121',
  3163. '2023-06-13',
  3164. '2023-06-14',
  3165. 406283,
  3166. 'sxky',
  3167. 406283,
  3168. '管理员',
  3169. 406283,
  3170. '森鑫矿业' )
  3171. 16:27:15.592 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3172. 16:27:15.596 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3173. 16:27:15.597 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3174. 16:27:15.605 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: insert into goaf_task
  3175. ( task_id,
  3176. oc_id,
  3177. goaf_id,
  3178. job_id,
  3179. check_def_id,
  3180. checklist_id,
  3181. task_title,
  3182. task_desc,
  3183. expected_start_date,
  3184. expected_end_date,
  3185. handle_account_id,
  3186. handle_account_name,
  3187. handle_position_id,
  3188. handle_position_name,
  3189. handle_group_id,
  3190. handle_group_name )
  3191. values ( 441481,
  3192. 406283,
  3193. 440952,
  3194. 439094,
  3195. 441001,
  3196. 439392,
  3197. '测试',
  3198. '121',
  3199. '2023-06-13',
  3200. '2023-06-14',
  3201. 406283,
  3202. 'sxky',
  3203. 406283,
  3204. '管理员',
  3205. 406283,
  3206. '森鑫矿业' )
  3207. 16:27:15.613 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3208. 16:27:15.616 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 2 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3209. 16:27:15.617 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3210. 16:27:15.625 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: insert into goaf_task
  3211. ( task_id,
  3212. oc_id,
  3213. goaf_id,
  3214. job_id,
  3215. check_def_id,
  3216. checklist_id,
  3217. task_title,
  3218. task_desc,
  3219. expected_start_date,
  3220. expected_end_date,
  3221. handle_account_id,
  3222. handle_account_name,
  3223. handle_position_id,
  3224. handle_position_name,
  3225. handle_group_id,
  3226. handle_group_name )
  3227. values ( 441482,
  3228. 406283,
  3229. 440952,
  3230. 439094,
  3231. 441001,
  3232. 439392,
  3233. '测试',
  3234. '121',
  3235. '2023-06-13',
  3236. '2023-06-14',
  3237. 406283,
  3238. 'sxky',
  3239. 406283,
  3240. '管理员',
  3241. 406283,
  3242. '森鑫矿业' )
  3243. 16:27:15.632 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3244. 16:27:15.635 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3245. 16:27:15.636 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3246. 16:27:15.644 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 6 ms | Connection: statement-55 | SQL: insert into goaf_task
  3247. ( task_id,
  3248. oc_id,
  3249. goaf_id,
  3250. job_id,
  3251. check_def_id,
  3252. checklist_id,
  3253. task_title,
  3254. task_desc,
  3255. expected_start_date,
  3256. expected_end_date,
  3257. handle_account_id,
  3258. handle_account_name,
  3259. handle_position_id,
  3260. handle_position_name,
  3261. handle_group_id,
  3262. handle_group_name )
  3263. values ( 441483,
  3264. 406283,
  3265. 440952,
  3266. 439094,
  3267. 441001,
  3268. 439392,
  3269. '测试',
  3270. '121',
  3271. '2023-06-13',
  3272. '2023-06-14',
  3273. 406283,
  3274. 'sxky',
  3275. 406283,
  3276. '管理员',
  3277. 406283,
  3278. '森鑫矿业' )
  3279. 16:27:15.652 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 7 ms | Connection: statement-55 | SQL: replace into uid_sequence(stub) values('a')
  3280. 16:27:15.655 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 3 ms | Connection: statement-55 | SQL: SELECT LAST_INSERT_ID() AS uid
  3281. 16:27:15.656 [quartzScheduler_Worker-1] INFO c.z.x.g.job.GoafCheckTaskJobService - GoafCheckDef(checkDefId=441001, ocId=406283, goafId=440952, checkTitle=测试, checkTypeId=0, groupId=406283, positionId=406283, accountId=406283, accountName=sxky, positionName=管理员, groupName=森鑫矿业, checklistId=439392, checklistTitle=null, defStartDate=2023-06-05, defEndDate=2023-06-22, checkCount=20, checkCycleUnit=1, jobId=439094, checkDesc=121, status=1)
  3282. 16:27:15.665 [quartzScheduler_Worker-1] INFO p6spy - 2023-06-13 16:27:15 | Time Consuming: 8 ms | Connection: statement-55 | SQL: insert into goaf_task
  3283. ( task_id,
  3284. oc_id,
  3285. goaf_id,
  3286. job_id,
  3287. check_def_id,
  3288. checklist_id,
  3289. task_title,
  3290. task_desc,
  3291. expected_start_date,
  3292. expected_end_date,
  3293. handle_account_id,
  3294. handle_account_name,
  3295. handle_position_id,
  3296. handle_position_name,
  3297. handle_group_id,
  3298. handle_group_name )
  3299. values ( 441484,
  3300. 406283,
  3301. 440952,
  3302. 439094,
  3303. 441001,
  3304. 439392,
  3305. '测试',
  3306. '121',
  3307. '2023-06-13',
  3308. '2023-06-14',
  3309. 406283,
  3310. 'sxky',
  3311. 406283,
  3312. '管理员',
  3313. 406283,
  3314. '森鑫矿业' )
  3315. 16:27:15.678 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3316. 17:15:28.555 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3317. 17:15:28.568 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3318. 17:15:28.568 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3319. 17:15:28.571 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3320. 17:15:28.572 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3321. 17:15:28.572 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3322. 17:15:28.572 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3323. 17:15:28.635 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3324. 17:15:28.638 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3325. 17:15:28.638 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3326. 17:15:28.638 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3327. 17:15:28.638 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3328. 17:15:28.652 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3329. 17:15:28.655 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3330. 17:15:35.830 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3331. 17:15:35.899 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16028 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  3332. 17:15:35.900 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  3333. 17:15:35.979 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3334. 17:15:35.979 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3335. 17:15:38.117 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3336. 17:15:38.121 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3337. 17:15:38.217 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  3338. 17:15:38.402 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3339. 17:15:38.422 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3340. 17:15:39.348 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3341. 17:15:39.348 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3368 ms
  3342. 17:15:42.108 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3343. 17:15:42.121 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3344. 17:15:42.121 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3345. 17:15:42.122 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3346. 17:15:42.122 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3347. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3348. NOT STARTED.
  3349. Currently in standby mode.
  3350. Number of jobs executed: 0
  3351. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3352. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3353. 17:15:42.123 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3354. 17:15:42.123 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3355. 17:15:42.123 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4905c7c8
  3356. 17:15:44.606 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3357. 17:15:44.765 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3358. 17:15:44.805 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3359. 17:15:44.805 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3360. 17:15:44.805 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3361. 17:15:44.831 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3362. 17:15:44.843 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3363. 17:15:44.855 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3364. 17:15:44.893 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3365. 17:15:44.952 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  3366. 17:15:45.117 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3367. 17:15:45.117 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 159 ms
  3368. 17:15:45.127 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3369. 17:15:45.169 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3370. 17:15:45.188 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  3371. 17:15:45.191 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3372. 17:15:45.191 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3373. 17:15:45.217 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 10.019 seconds (process running for 11.124)
  3374. 17:15:45.220 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3375. 17:15:45.230 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3376. 17:15:45.608 [restartedMain] INFO p6spy - 2023-06-13 17:15:45 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  3377. 17:15:45.613 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2c4d6cca
  3378. 17:15:45.618 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3379. 17:15:45.697 [restartedMain] INFO p6spy - 2023-06-13 17:15:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3380. A.job_id,
  3381. A.job_title,
  3382. A.job_desc,
  3383. A.status,
  3384. A.job_type,
  3385. A.job_code,
  3386. A.job_cron,
  3387. A.job_class_id,
  3388. B.job_class,
  3389. A.cycle_title,
  3390. A.cycle_period,
  3391. A.cycle_unit
  3392. FROM job AS A
  3393. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3394. WHERE A.deleted_flag = 0
  3395. AND A.status = 1
  3396. ORDER BY A.job_id ASC
  3397. 17:15:45.727 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3398. 17:15:45.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3399. 17:15:45.730 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3400. 17:15:45.730 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3401. 17:15:45.730 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3402. 17:15:45.731 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3403. 17:15:45.731 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3404. 17:15:45.731 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3405. 17:15:46.185 [RMI TCP Connection(10)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3406. 17:15:46.186 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3407. 17:15:46.190 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3408. 17:15:46.200 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-06-13 17:15:46 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3409. 17:20:59.037 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:20:59 | Time Consuming: 5010 ms | Connection: statement-0 | SQL: SELECT 1
  3410. 17:21:04.040 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:04 | Time Consuming: 5001 ms | Connection: statement-1 | SQL: SELECT 1
  3411. 17:21:09.041 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:09 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  3412. 17:21:14.043 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:14 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  3413. 17:21:18.398 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 17 ms | Connection: statement-5 | SQL: SELECT 1
  3414. 17:21:18.412 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  3415. client_id,
  3416. client_title,
  3417. client_app_id,
  3418. client_app_key,
  3419. client_app_secret,
  3420. client_desc,
  3421. status,
  3422. is_fixed
  3423. FROM client
  3424. WHERE deleted_flag = 0
  3425. AND client_app_id = '10001'
  3426. AND client_app_key = '82a8bf439373e305'
  3427. 17:21:18.436 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  3428. A.client_id,
  3429. A.role_id,
  3430. A.permit_id,
  3431. A.permit_title,
  3432. A.permit_code,
  3433. A.permit_entry,
  3434. A.permit_desc,
  3435. A.permit_type,
  3436. A.parent_id,
  3437. A.root_id,
  3438. A.sort_no,
  3439. A.is_home
  3440. FROM s_role_permit AS A
  3441. WHERE 1 = 1
  3442. AND A.client_id = 2
  3443. AND A.role_id = 6
  3444. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3445. 17:21:18.808 [XNIO-1 task-4] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  3446. 17:21:18.808 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  3447. 17:21:18.808 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  3448. 17:21:18.812 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3449. 17:21:18.815 [XNIO-1 task-6] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  3450. A.oc_id,
  3451. A.group_id,
  3452. A.group_name,
  3453. A.group_code,
  3454. A.group_cat_id,
  3455. C.group_cat_title,
  3456. A.node_left,
  3457. A.node_right,
  3458. A.parent_id,
  3459. A.root_id,
  3460. B.group_name as parent_name,
  3461. A.node_level,
  3462. A.is_leaf,
  3463. A.is_fixed,
  3464. A.group_desc
  3465. FROM s_group AS A
  3466. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  3467. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  3468. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  3469. 17:21:18.819 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  3470. FROM goaf_baseinfo
  3471. WHERE oc_id = 406283
  3472. 17:21:18.851 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 34 ms | Connection: statement-9 | SQL: SELECT count(*)
  3473. FROM msg AS M
  3474. WHERE M.oc_id = 406283
  3475. AND (
  3476. EXISTS (
  3477. SELECT 1 FROM msg_to TT
  3478. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3479. ) OR
  3480. EXISTS (
  3481. SELECT 1 FROM msg_cc CC
  3482. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3483. )
  3484. )
  3485. 17:21:18.934 [XNIO-1 task-4] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  3486. 17:21:18.939 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  3487. 17:21:18.945 [XNIO-1 task-4] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT
  3488. A.hdanger_id,
  3489. A.oc_id,
  3490. A.goaf_id,
  3491. A.hdanger_title,
  3492. A.hdanger_level,
  3493. A.hdanger_type,
  3494. A.checklist_id,
  3495. A.hdanger_desc,
  3496. A.submit_group_id,
  3497. A.submit_group_name,
  3498. A.submit_position_id,
  3499. A.submit_position_name,
  3500. A.submit_account_id,
  3501. A.submit_account_name,
  3502. A.submit_time,
  3503. A.review_group_id,
  3504. A.review_group_name,
  3505. A.review_position_id,
  3506. A.review_position_name,
  3507. A.review_account_id,
  3508. A.review_account_name,
  3509. A.danger_deadline,
  3510. A.review_time,
  3511. A.review_remark,
  3512. A.rectify_group_id,
  3513. A.rectify_group_name,
  3514. A.rectify_position_id,
  3515. A.rectify_position_name,
  3516. A.rectify_account_id,
  3517. A.rectify_account_name,
  3518. A.rectify_time,
  3519. A.danger_reason,
  3520. A.rectify_measure,
  3521. A.rectify_remark,
  3522. A.accept_group_id,
  3523. A.accept_group_name,
  3524. A.accept_position_id,
  3525. A.accept_position_name,
  3526. A.accept_account_id,
  3527. A.accept_account_name,
  3528. A.accept_time,
  3529. A.accept_remark,
  3530. A.finish_time,
  3531. A.status,
  3532. B.wf_def_id,
  3533. B.wf_ins_id,
  3534. B.wf_ins_title,
  3535. B.cur_group_id,
  3536. B.cur_group_name,
  3537. B.cur_position_id,
  3538. B.cur_position_name,
  3539. B.cur_account_id,
  3540. B.cur_account_name,
  3541. B.cur_activity_ins_id,
  3542. B.cur_activity_code,
  3543. B.cur_activity_title,
  3544. B.cur_form_code,
  3545. B.cur_activity_begin_time
  3546. FROM goaf_hdanger AS A
  3547. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3548. WHERE A.oc_id = 406283
  3549. AND A.status = '1'
  3550. ORDER BY A.submit_time DESC
  3551. LIMIT 10
  3552. 17:21:18.945 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:18 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT
  3553. DISTINCT(A.account_id),
  3554. A.gm_id,
  3555. A.oc_id,
  3556. A.group_id,
  3557. B.account_name,
  3558. B.account_real_name,
  3559. B.account_phone,
  3560. B.account_staff_no,
  3561. B.account_avatar,
  3562. B.status,
  3563. B.is_fixed,
  3564. C.group_name,
  3565. C.node_left,
  3566. C.node_right,
  3567. D.gmp_id,
  3568. D.position_id,
  3569. D.position_name,
  3570. E.gmpg_id,
  3571. E.grant_group_id,
  3572. F.group_name as grant_group_name
  3573. FROM
  3574. s_group_member AS A
  3575. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  3576. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  3577. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  3578. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  3579. LEFT JOIN (
  3580. SELECT
  3581. M.oc_id,
  3582. M.account_id,
  3583. M.gmp_id,
  3584. M.group_id,
  3585. M.position_id,
  3586. P.position_name,
  3587. N.gmpg_id,
  3588. N.grant_group_id,
  3589. GP.group_name as grant_group_name
  3590. FROM
  3591. s_group_member_position AS M
  3592. LEFT JOIN s_group_member_position_grant AS N ON (
  3593. M.oc_id = N.oc_id
  3594. AND M.account_id = N.account_id
  3595. AND M.group_id = N.group_id
  3596. AND M.position_id = N.position_id )
  3597. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  3598. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  3599. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  3600. WHERE B.deleted_flag = 0
  3601. AND A.oc_id = 406283
  3602. ORDER BY A.account_id, A.group_id
  3603. LIMIT 999999
  3604. 17:21:19.046 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:19 | Time Consuming: 5001 ms | Connection: statement-4 | SQL: SELECT 1
  3605. 17:21:19.057 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:19 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  3606. client_id,
  3607. client_title,
  3608. client_app_id,
  3609. client_app_key,
  3610. client_app_secret,
  3611. client_desc,
  3612. status,
  3613. is_fixed
  3614. FROM client
  3615. WHERE deleted_flag = 0
  3616. AND client_app_id = '10001'
  3617. AND client_app_key = '82a8bf439373e305'
  3618. 17:21:19.077 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:19 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  3619. A.client_id,
  3620. A.role_id,
  3621. A.permit_id,
  3622. A.permit_title,
  3623. A.permit_code,
  3624. A.permit_entry,
  3625. A.permit_desc,
  3626. A.permit_type,
  3627. A.parent_id,
  3628. A.root_id,
  3629. A.sort_no,
  3630. A.is_home
  3631. FROM s_role_permit AS A
  3632. WHERE 1 = 1
  3633. AND A.client_id = 2
  3634. AND A.role_id = 6
  3635. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3636. 17:21:30.906 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:30 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  3637. 17:21:30.915 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:30 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  3638. client_id,
  3639. client_title,
  3640. client_app_id,
  3641. client_app_key,
  3642. client_app_secret,
  3643. client_desc,
  3644. status,
  3645. is_fixed
  3646. FROM client
  3647. WHERE deleted_flag = 0
  3648. AND client_app_id = '10001'
  3649. AND client_app_key = '82a8bf439373e305'
  3650. 17:21:30.934 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:30 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  3651. A.client_id,
  3652. A.role_id,
  3653. A.permit_id,
  3654. A.permit_title,
  3655. A.permit_code,
  3656. A.permit_entry,
  3657. A.permit_desc,
  3658. A.permit_type,
  3659. A.parent_id,
  3660. A.root_id,
  3661. A.sort_no,
  3662. A.is_home
  3663. FROM s_role_permit AS A
  3664. WHERE 1 = 1
  3665. AND A.client_id = 2
  3666. AND A.role_id = 6
  3667. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3668. 17:21:31.106 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3669. 17:21:31.106 [XNIO-1 task-4] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  3670. 17:21:31.106 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3671. 17:21:31.108 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3672. 17:21:31.115 [XNIO-1 task-4] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT *
  3673. FROM goaf_baseinfo
  3674. WHERE oc_id = 406283
  3675. 17:21:31.117 [XNIO-1 task-3] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  3676. A.oc_id,
  3677. A.group_id,
  3678. A.group_name,
  3679. A.group_code,
  3680. A.group_cat_id,
  3681. C.group_cat_title,
  3682. A.node_left,
  3683. A.node_right,
  3684. A.parent_id,
  3685. A.root_id,
  3686. B.group_name as parent_name,
  3687. A.node_level,
  3688. A.is_leaf,
  3689. A.is_fixed,
  3690. A.group_desc
  3691. FROM s_group AS A
  3692. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  3693. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  3694. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  3695. 17:21:31.141 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 29 ms | Connection: statement-7 | SQL: SELECT count(*)
  3696. FROM msg AS M
  3697. WHERE M.oc_id = 406283
  3698. AND (
  3699. EXISTS (
  3700. SELECT 1 FROM msg_to TT
  3701. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3702. ) OR
  3703. EXISTS (
  3704. SELECT 1 FROM msg_cc CC
  3705. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3706. )
  3707. )
  3708. 17:21:31.159 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_hdanger AS A LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id WHERE A.oc_id = 406283 AND A.status = '1'
  3709. 17:21:31.159 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  3710. 17:21:31.166 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT
  3711. DISTINCT(A.account_id),
  3712. A.gm_id,
  3713. A.oc_id,
  3714. A.group_id,
  3715. B.account_name,
  3716. B.account_real_name,
  3717. B.account_phone,
  3718. B.account_staff_no,
  3719. B.account_avatar,
  3720. B.status,
  3721. B.is_fixed,
  3722. C.group_name,
  3723. C.node_left,
  3724. C.node_right,
  3725. D.gmp_id,
  3726. D.position_id,
  3727. D.position_name,
  3728. E.gmpg_id,
  3729. E.grant_group_id,
  3730. F.group_name as grant_group_name
  3731. FROM
  3732. s_group_member AS A
  3733. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  3734. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  3735. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  3736. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  3737. LEFT JOIN (
  3738. SELECT
  3739. M.oc_id,
  3740. M.account_id,
  3741. M.gmp_id,
  3742. M.group_id,
  3743. M.position_id,
  3744. P.position_name,
  3745. N.gmpg_id,
  3746. N.grant_group_id,
  3747. GP.group_name as grant_group_name
  3748. FROM
  3749. s_group_member_position AS M
  3750. LEFT JOIN s_group_member_position_grant AS N ON (
  3751. M.oc_id = N.oc_id
  3752. AND M.account_id = N.account_id
  3753. AND M.group_id = N.group_id
  3754. AND M.position_id = N.position_id )
  3755. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  3756. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  3757. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  3758. WHERE B.deleted_flag = 0
  3759. AND A.oc_id = 406283
  3760. ORDER BY A.account_id, A.group_id
  3761. LIMIT 999999
  3762. 17:21:31.167 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:31 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  3763. A.hdanger_id,
  3764. A.oc_id,
  3765. A.goaf_id,
  3766. A.hdanger_title,
  3767. A.hdanger_level,
  3768. A.hdanger_type,
  3769. A.checklist_id,
  3770. A.hdanger_desc,
  3771. A.submit_group_id,
  3772. A.submit_group_name,
  3773. A.submit_position_id,
  3774. A.submit_position_name,
  3775. A.submit_account_id,
  3776. A.submit_account_name,
  3777. A.submit_time,
  3778. A.review_group_id,
  3779. A.review_group_name,
  3780. A.review_position_id,
  3781. A.review_position_name,
  3782. A.review_account_id,
  3783. A.review_account_name,
  3784. A.danger_deadline,
  3785. A.review_time,
  3786. A.review_remark,
  3787. A.rectify_group_id,
  3788. A.rectify_group_name,
  3789. A.rectify_position_id,
  3790. A.rectify_position_name,
  3791. A.rectify_account_id,
  3792. A.rectify_account_name,
  3793. A.rectify_time,
  3794. A.danger_reason,
  3795. A.rectify_measure,
  3796. A.rectify_remark,
  3797. A.accept_group_id,
  3798. A.accept_group_name,
  3799. A.accept_position_id,
  3800. A.accept_position_name,
  3801. A.accept_account_id,
  3802. A.accept_account_name,
  3803. A.accept_time,
  3804. A.accept_remark,
  3805. A.finish_time,
  3806. A.status,
  3807. B.wf_def_id,
  3808. B.wf_ins_id,
  3809. B.wf_ins_title,
  3810. B.cur_group_id,
  3811. B.cur_group_name,
  3812. B.cur_position_id,
  3813. B.cur_position_name,
  3814. B.cur_account_id,
  3815. B.cur_account_name,
  3816. B.cur_activity_ins_id,
  3817. B.cur_activity_code,
  3818. B.cur_activity_title,
  3819. B.cur_form_code,
  3820. B.cur_activity_begin_time
  3821. FROM goaf_hdanger AS A
  3822. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3823. WHERE A.oc_id = 406283
  3824. AND A.status = '1'
  3825. ORDER BY A.submit_time DESC
  3826. LIMIT 10
  3827. 17:21:37.861 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  3828. 17:21:37.861 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3829. 17:21:37.872 [XNIO-1 task-5] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  3830. A.oc_id,
  3831. A.group_id,
  3832. A.group_name,
  3833. A.group_code,
  3834. A.group_cat_id,
  3835. C.group_cat_title,
  3836. A.node_left,
  3837. A.node_right,
  3838. A.parent_id,
  3839. A.root_id,
  3840. B.group_name as parent_name,
  3841. A.node_level,
  3842. A.is_leaf,
  3843. A.is_fixed,
  3844. A.group_desc
  3845. FROM s_group AS A
  3846. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  3847. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  3848. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  3849. 17:21:37.878 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  3850. 17:21:37.888 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT
  3851. A.hdanger_id,
  3852. A.oc_id,
  3853. A.goaf_id,
  3854. A.hdanger_title,
  3855. A.hdanger_level,
  3856. A.hdanger_type,
  3857. A.checklist_id,
  3858. A.hdanger_desc,
  3859. A.submit_group_id,
  3860. A.submit_group_name,
  3861. A.submit_position_id,
  3862. A.submit_position_name,
  3863. A.submit_account_id,
  3864. A.submit_account_name,
  3865. A.submit_time,
  3866. A.review_group_id,
  3867. A.review_group_name,
  3868. A.review_position_id,
  3869. A.review_position_name,
  3870. A.review_account_id,
  3871. A.review_account_name,
  3872. A.danger_deadline,
  3873. A.review_time,
  3874. A.review_remark,
  3875. A.rectify_group_id,
  3876. A.rectify_group_name,
  3877. A.rectify_position_id,
  3878. A.rectify_position_name,
  3879. A.rectify_account_id,
  3880. A.rectify_account_name,
  3881. A.rectify_time,
  3882. A.danger_reason,
  3883. A.rectify_measure,
  3884. A.rectify_remark,
  3885. A.accept_group_id,
  3886. A.accept_group_name,
  3887. A.accept_position_id,
  3888. A.accept_position_name,
  3889. A.accept_account_id,
  3890. A.accept_account_name,
  3891. A.accept_time,
  3892. A.accept_remark,
  3893. A.finish_time,
  3894. A.status,
  3895. B.wf_def_id,
  3896. B.wf_ins_id,
  3897. B.wf_ins_title,
  3898. B.cur_group_id,
  3899. B.cur_group_name,
  3900. B.cur_position_id,
  3901. B.cur_position_name,
  3902. B.cur_account_id,
  3903. B.cur_account_name,
  3904. B.cur_activity_ins_id,
  3905. B.cur_activity_code,
  3906. B.cur_activity_title,
  3907. B.cur_form_code,
  3908. B.cur_activity_begin_time
  3909. FROM goaf_hdanger AS A
  3910. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3911. WHERE A.hdanger_id = 441050
  3912. 17:21:37.901 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  3913. 17:21:37.909 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:37 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  3914. DISTINCT(A.account_id),
  3915. A.gm_id,
  3916. A.oc_id,
  3917. A.group_id,
  3918. B.account_name,
  3919. B.account_real_name,
  3920. B.account_phone,
  3921. B.account_staff_no,
  3922. B.account_avatar,
  3923. B.status,
  3924. B.is_fixed,
  3925. C.group_name,
  3926. C.node_left,
  3927. C.node_right,
  3928. D.gmp_id,
  3929. D.position_id,
  3930. D.position_name,
  3931. E.gmpg_id,
  3932. E.grant_group_id,
  3933. F.group_name as grant_group_name
  3934. FROM
  3935. s_group_member AS A
  3936. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  3937. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  3938. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  3939. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  3940. LEFT JOIN (
  3941. SELECT
  3942. M.oc_id,
  3943. M.account_id,
  3944. M.gmp_id,
  3945. M.group_id,
  3946. M.position_id,
  3947. P.position_name,
  3948. N.gmpg_id,
  3949. N.grant_group_id,
  3950. GP.group_name as grant_group_name
  3951. FROM
  3952. s_group_member_position AS M
  3953. LEFT JOIN s_group_member_position_grant AS N ON (
  3954. M.oc_id = N.oc_id
  3955. AND M.account_id = N.account_id
  3956. AND M.group_id = N.group_id
  3957. AND M.position_id = N.position_id )
  3958. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  3959. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  3960. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  3961. WHERE B.deleted_flag = 0
  3962. AND A.oc_id = 406283
  3963. ORDER BY A.account_id, A.group_id
  3964. LIMIT 999999
  3965. 17:21:53.425 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:53 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  3966. 17:21:54.813 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:54 | Time Consuming: 8 ms | Connection: statement-5 | SQL: replace into uid_sequence(stub) values('a')
  3967. 17:21:54.820 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:54 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT LAST_INSERT_ID() AS uid
  3968. 17:21:54.842 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:21:54 | Time Consuming: 16 ms | Connection: statement-5 | SQL: INSERT INTO doc_file
  3969. ( oc_id,
  3970. file_id,
  3971. file_title,
  3972. dir_id,
  3973. file_url,
  3974. file_icon,
  3975. file_ext,
  3976. file_size,
  3977. file_desc,
  3978. uploaded_by,
  3979. uploaded_at,
  3980. created_by,
  3981. created_at )
  3982. values ( 406283,
  3983. 441485,
  3984. '智慧创新营业执照.jpg',
  3985. 10000,
  3986. 'http://113.141.93.143:9000/file/20236131721539764265.jpg',
  3987. 'http://113.141.93.143:9000/icon/20236131721547665035.jpg',
  3988. 'jpg',
  3989. 1119549,
  3990. '智慧创新营业执照.jpg',
  3991. 406283,
  3992. '2023-06-13T17:21:54.821795800',
  3993. 406283,
  3994. '2023-06-13T17:21:54.821795800' )
  3995. 17:23:52.705 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:23:52 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3996. 17:23:53.906 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:23:53 | Time Consuming: 8 ms | Connection: statement-9 | SQL: replace into uid_sequence(stub) values('a')
  3997. 17:23:53.911 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:23:53 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT LAST_INSERT_ID() AS uid
  3998. 17:23:53.922 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:23:53 | Time Consuming: 9 ms | Connection: statement-9 | SQL: INSERT INTO doc_file
  3999. ( oc_id,
  4000. file_id,
  4001. file_title,
  4002. dir_id,
  4003. file_url,
  4004. file_icon,
  4005. file_ext,
  4006. file_size,
  4007. file_desc,
  4008. uploaded_by,
  4009. uploaded_at,
  4010. created_by,
  4011. created_at )
  4012. values ( 406283,
  4013. 441486,
  4014. '智慧创新营业执照.jpg',
  4015. 10000,
  4016. 'http://113.141.93.143:9000/file/20236131723531378764.jpg',
  4017. 'http://113.141.93.143:9000/icon/20236131723538695245.jpg',
  4018. 'jpg',
  4019. 1119549,
  4020. '智慧创新营业执照.jpg',
  4021. 406283,
  4022. '2023-06-13T17:23:53.911112500',
  4023. 406283,
  4024. '2023-06-13T17:23:53.911112500' )
  4025. 17:24:52.003 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:24:52 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT 1
  4026. 17:24:53.091 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:24:53 | Time Consuming: 10 ms | Connection: statement-5 | SQL: replace into uid_sequence(stub) values('a')
  4027. 17:24:53.096 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:24:53 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT LAST_INSERT_ID() AS uid
  4028. 17:24:53.105 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:24:53 | Time Consuming: 8 ms | Connection: statement-5 | SQL: INSERT INTO doc_file
  4029. ( oc_id,
  4030. file_id,
  4031. file_title,
  4032. dir_id,
  4033. file_url,
  4034. file_icon,
  4035. file_ext,
  4036. file_size,
  4037. file_desc,
  4038. uploaded_by,
  4039. uploaded_at,
  4040. created_by,
  4041. created_at )
  4042. values ( 406283,
  4043. 441487,
  4044. '智慧创新营业执照.jpg',
  4045. 10000,
  4046. 'http://113.141.93.143:9000/file/20236131724523893079.jpg',
  4047. 'http://113.141.93.143:9000/icon/2023613172453491984.jpg',
  4048. 'jpg',
  4049. 1119549,
  4050. '智慧创新营业执照.jpg',
  4051. 406283,
  4052. '2023-06-13T17:24:53.096739500',
  4053. 406283,
  4054. '2023-06-13T17:24:53.096739500' )
  4055. 17:31:11.643 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:31:11 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT 1
  4056. 17:31:12.442 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:31:12 | Time Consuming: 6 ms | Connection: statement-11 | SQL: replace into uid_sequence(stub) values('a')
  4057. 17:31:12.445 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:31:12 | Time Consuming: 3 ms | Connection: statement-11 | SQL: SELECT LAST_INSERT_ID() AS uid
  4058. 17:31:12.461 [XNIO-1 task-7] INFO p6spy - 2023-06-13 17:31:12 | Time Consuming: 12 ms | Connection: statement-11 | SQL: INSERT INTO doc_file
  4059. ( oc_id,
  4060. file_id,
  4061. file_title,
  4062. dir_id,
  4063. file_url,
  4064. file_icon,
  4065. file_ext,
  4066. file_size,
  4067. file_desc,
  4068. uploaded_by,
  4069. uploaded_at,
  4070. created_by,
  4071. created_at )
  4072. values ( 406283,
  4073. 441488,
  4074. '智慧创新营业执照.jpg',
  4075. 10000,
  4076. 'http://113.141.93.143:9000/file/2023613173112343929.jpg',
  4077. 'http://113.141.93.143:9000/icon/20236131731124064865.jpg',
  4078. 'jpg',
  4079. 1119549,
  4080. '智慧创新营业执照.jpg',
  4081. 406283,
  4082. '2023-06-13T17:31:12.445679700',
  4083. 406283,
  4084. '2023-06-13T17:31:12.445679700' )
  4085. 17:39:41.289 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:39:41 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT 1
  4086. 17:39:42.112 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:39:42 | Time Consuming: 7 ms | Connection: statement-16 | SQL: replace into uid_sequence(stub) values('a')
  4087. 17:39:42.117 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:39:42 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT LAST_INSERT_ID() AS uid
  4088. 17:39:42.126 [XNIO-1 task-2] INFO p6spy - 2023-06-13 17:39:42 | Time Consuming: 7 ms | Connection: statement-16 | SQL: INSERT INTO doc_file
  4089. ( oc_id,
  4090. file_id,
  4091. file_title,
  4092. dir_id,
  4093. file_url,
  4094. file_icon,
  4095. file_ext,
  4096. file_size,
  4097. file_desc,
  4098. uploaded_by,
  4099. uploaded_at,
  4100. created_by,
  4101. created_at )
  4102. values ( 406283,
  4103. 441489,
  4104. '智慧创新营业执照.jpg',
  4105. 10000,
  4106. 'http://113.141.93.143:9000/file/20236131739416749959.jpg',
  4107. 'http://113.141.93.143:9000/icon/2023613173942724998.jpg',
  4108. 'jpg',
  4109. 1119549,
  4110. '智慧创新营业执照.jpg',
  4111. 406283,
  4112. '2023-06-13T17:39:42.117547500',
  4113. 406283,
  4114. '2023-06-13T17:39:42.117547500' )
  4115. 17:56:11.966 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4116. 17:56:11.989 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4117. 17:56:11.989 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4118. 17:56:11.993 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4119. 17:56:11.994 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4120. 17:56:11.994 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4121. 17:56:11.994 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4122. 17:56:12.001 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4123. 17:56:12.002 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4124. 17:56:12.002 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4125. 17:56:12.002 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4126. 17:56:12.003 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4127. 17:56:12.015 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4128. 17:56:12.017 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4129. 17:56:18.668 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4130. 17:56:18.731 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4232 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  4131. 17:56:18.732 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  4132. 17:56:18.802 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4133. 17:56:18.802 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4134. 17:56:20.918 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4135. 17:56:20.922 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4136. 17:56:21.021 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  4137. 17:56:21.209 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4138. 17:56:21.230 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4139. 17:56:22.156 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4140. 17:56:22.157 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3353 ms
  4141. 17:56:24.949 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4142. 17:56:24.961 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4143. 17:56:24.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4144. 17:56:24.963 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4145. 17:56:24.963 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4146. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4147. NOT STARTED.
  4148. Currently in standby mode.
  4149. Number of jobs executed: 0
  4150. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4151. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4152. 17:56:24.963 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4153. 17:56:24.964 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4154. 17:56:24.964 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@76cb10c2
  4155. 17:56:27.187 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4156. 17:56:27.350 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4157. 17:56:27.387 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4158. 17:56:27.388 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4159. 17:56:27.388 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4160. 17:56:27.413 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4161. 17:56:27.425 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4162. 17:56:27.438 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4163. 17:56:27.474 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4164. 17:56:27.535 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  4165. 17:56:27.702 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4166. 17:56:27.702 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 160 ms
  4167. 17:56:27.713 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4168. 17:56:27.754 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4169. 17:56:27.773 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  4170. 17:56:27.777 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4171. 17:56:27.777 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4172. 17:56:27.804 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.716 seconds (process running for 10.704)
  4173. 17:56:27.807 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4174. 17:56:27.817 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4175. 17:56:28.202 [restartedMain] INFO p6spy - 2023-06-13 17:56:28 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  4176. 17:56:28.208 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3d685b61
  4177. 17:56:28.227 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4178. 17:56:28.307 [restartedMain] INFO p6spy - 2023-06-13 17:56:28 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4179. A.job_id,
  4180. A.job_title,
  4181. A.job_desc,
  4182. A.status,
  4183. A.job_type,
  4184. A.job_code,
  4185. A.job_cron,
  4186. A.job_class_id,
  4187. B.job_class,
  4188. A.cycle_title,
  4189. A.cycle_period,
  4190. A.cycle_unit
  4191. FROM job AS A
  4192. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4193. WHERE A.deleted_flag = 0
  4194. AND A.status = 1
  4195. ORDER BY A.job_id ASC
  4196. 17:56:28.338 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4197. 17:56:28.340 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4198. 17:56:28.341 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4199. 17:56:28.341 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4200. 17:56:28.341 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4201. 17:56:28.342 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4202. 17:56:28.342 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4203. 17:56:28.342 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4204. 17:56:28.960 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4205. 17:56:28.960 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4206. 17:56:28.964 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4207. 17:56:28.967 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-06-13 17:56:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4208. 17:56:28.980 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-06-13 17:56:28 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4209. 18:19:29.700 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4210. 18:19:29.711 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4211. 18:19:29.711 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4212. 18:19:29.715 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4213. 18:19:29.719 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4214. 18:19:29.719 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4215. 18:19:29.719 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4216. 18:19:29.727 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4217. 18:19:29.728 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4218. 18:19:29.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4219. 18:19:29.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4220. 18:19:29.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4221. 18:19:29.740 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4222. 18:19:29.743 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4223. 18:19:40.068 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4224. 18:19:40.155 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 7624 (E:\syf3prj\xps-server-3\xps-application\target\classes started by qzz19 in E:\syf3prj\xps-server-3)
  4225. 18:19:40.155 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "dev"
  4226. 18:19:40.249 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4227. 18:19:40.249 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4228. 18:19:42.441 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4229. 18:19:42.445 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4230. 18:19:42.546 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  4231. 18:19:42.742 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4232. 18:19:42.763 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4233. 18:19:43.762 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4234. 18:19:43.762 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3512 ms
  4235. 18:19:46.850 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4236. 18:19:46.863 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4237. 18:19:46.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4238. 18:19:46.864 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4239. 18:19:46.864 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4240. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4241. NOT STARTED.
  4242. Currently in standby mode.
  4243. Number of jobs executed: 0
  4244. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4245. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4246. 18:19:46.864 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4247. 18:19:46.864 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4248. 18:19:46.864 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@770d5aac
  4249. 18:19:49.321 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4250. 18:19:49.490 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4251. 18:19:49.529 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4252. 18:19:49.529 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4253. 18:19:49.530 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4254. 18:19:49.558 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4255. 18:19:49.571 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4256. 18:19:49.584 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4257. 18:19:49.623 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4258. 18:19:49.684 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  4259. 18:19:49.864 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4260. 18:19:49.864 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 174 ms
  4261. 18:19:49.875 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4262. 18:19:49.915 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4263. 18:19:49.934 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 8081 (http)
  4264. 18:19:49.938 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4265. 18:19:49.938 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4266. 18:19:49.965 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 10.544 seconds (process running for 11.724)
  4267. 18:19:49.969 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4268. 18:19:49.979 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4269. 18:19:50.407 [restartedMain] INFO p6spy - 2023-06-13 18:19:50 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  4270. 18:19:50.413 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6f341b2b
  4271. 18:19:50.418 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4272. 18:19:50.496 [restartedMain] INFO p6spy - 2023-06-13 18:19:50 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4273. A.job_id,
  4274. A.job_title,
  4275. A.job_desc,
  4276. A.status,
  4277. A.job_type,
  4278. A.job_code,
  4279. A.job_cron,
  4280. A.job_class_id,
  4281. B.job_class,
  4282. A.cycle_title,
  4283. A.cycle_period,
  4284. A.cycle_unit
  4285. FROM job AS A
  4286. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4287. WHERE A.deleted_flag = 0
  4288. AND A.status = 1
  4289. ORDER BY A.job_id ASC
  4290. 18:19:50.526 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4291. 18:19:50.528 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4292. 18:19:50.529 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4293. 18:19:50.530 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4294. 18:19:50.530 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4295. 18:19:50.531 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4296. 18:19:50.531 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4297. 18:19:50.531 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4298. 18:19:51.175 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4299. 18:19:51.175 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4300. 18:19:51.179 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-06-13 18:19:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4301. 18:19:51.180 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  4302. 18:19:51.205 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-06-13 18:19:51 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  4303. 18:20:02.997 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:20:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4304. 18:20:03.965 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:20:03 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  4305. 18:20:03.970 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:20:03 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  4306. 18:25:31.929 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:31 | Time Consuming: 5011 ms | Connection: statement-0 | SQL: SELECT 1
  4307. 18:25:36.933 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:36 | Time Consuming: 5001 ms | Connection: statement-1 | SQL: SELECT 1
  4308. 18:25:41.935 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:41 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  4309. 18:25:46.936 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:46 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  4310. 18:25:51.939 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:51 | Time Consuming: 5002 ms | Connection: statement-4 | SQL: SELECT 1
  4311. 18:25:51.946 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:25:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  4312. 18:26:01.245 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:26:01 | Time Consuming: 8 ms | Connection: statement-5 | SQL: replace into uid_sequence(stub) values('a')
  4313. 18:26:01.249 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:26:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT LAST_INSERT_ID() AS uid
  4314. 18:27:59.856 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:27:59 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  4315. 18:30:02.075 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:30:02 | Time Consuming: 10 ms | Connection: statement-5 | SQL: replace into uid_sequence(stub) values('a')
  4316. 18:30:02.083 [XNIO-1 task-2] INFO p6spy - 2023-06-13 18:30:02 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT LAST_INSERT_ID() AS uid
  4317. 18:48:38.582 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:38 | Time Consuming: 5002 ms | Connection: statement-17 | SQL: SELECT 1
  4318. 18:48:43.585 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:43 | Time Consuming: 5001 ms | Connection: statement-18 | SQL: SELECT 1
  4319. 18:48:48.588 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:48 | Time Consuming: 5002 ms | Connection: statement-19 | SQL: SELECT 1
  4320. 18:48:53.591 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:53 | Time Consuming: 5001 ms | Connection: statement-20 | SQL: SELECT 1
  4321. 18:48:58.593 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:58 | Time Consuming: 5001 ms | Connection: statement-21 | SQL: SELECT 1
  4322. 18:48:58.603 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:48:58 | Time Consuming: 9 ms | Connection: statement-22 | SQL: SELECT 1
  4323. 18:49:05.738 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:49:05 | Time Consuming: 8 ms | Connection: statement-22 | SQL: replace into uid_sequence(stub) values('a')
  4324. 18:49:05.742 [XNIO-1 task-3] INFO p6spy - 2023-06-13 18:49:05 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT LAST_INSERT_ID() AS uid
  4325. 20:24:10.754 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:10 | Time Consuming: 5001 ms | Connection: statement-78 | SQL: SELECT 1
  4326. 20:24:15.756 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:15 | Time Consuming: 5002 ms | Connection: statement-79 | SQL: SELECT 1
  4327. 20:24:20.761 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:20 | Time Consuming: 5002 ms | Connection: statement-80 | SQL: SELECT 1
  4328. 20:24:25.764 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:25 | Time Consuming: 5001 ms | Connection: statement-81 | SQL: SELECT 1
  4329. 20:24:30.766 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:30 | Time Consuming: 5001 ms | Connection: statement-82 | SQL: SELECT 1
  4330. 20:24:30.771 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:24:30 | Time Consuming: 4 ms | Connection: statement-83 | SQL: SELECT 1
  4331. 20:26:49.688 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:26:49 | Time Consuming: 7 ms | Connection: statement-83 | SQL: replace into uid_sequence(stub) values('a')
  4332. 20:26:49.693 [XNIO-1 task-2] INFO p6spy - 2023-06-13 20:26:49 | Time Consuming: 3 ms | Connection: statement-83 | SQL: SELECT LAST_INSERT_ID() AS uid
  4333. 20:31:58.542 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:31:58 | Time Consuming: 5002 ms | Connection: statement-83 | SQL: SELECT 1
  4334. 20:32:03.544 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:03 | Time Consuming: 5000 ms | Connection: statement-84 | SQL: SELECT 1
  4335. 20:32:08.546 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:08 | Time Consuming: 5001 ms | Connection: statement-85 | SQL: SELECT 1
  4336. 20:32:13.547 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:13 | Time Consuming: 5000 ms | Connection: statement-86 | SQL: SELECT 1
  4337. 20:32:18.548 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:18 | Time Consuming: 5001 ms | Connection: statement-89 | SQL: SELECT 1
  4338. 20:32:18.554 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:18 | Time Consuming: 4 ms | Connection: statement-90 | SQL: SELECT 1
  4339. 20:32:25.160 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:25 | Time Consuming: 6 ms | Connection: statement-90 | SQL: replace into uid_sequence(stub) values('a')
  4340. 20:32:25.164 [XNIO-1 task-3] INFO p6spy - 2023-06-13 20:32:25 | Time Consuming: 3 ms | Connection: statement-90 | SQL: SELECT LAST_INSERT_ID() AS uid