logback.2025-07-01.log 679 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897
  1. 00:01:39.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:06:39.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:11:39.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:16:39.861 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:21:39.863 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:22:04.108 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  7. 00:22:04.110 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  8. 00:22:04.306 [scheduled-thread-1] DEBUG org.hibernate.SQL - insert into control_panel_statistics (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, commission_amount, date, deposit_amount, transfer_amount, withdraw_amount) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  9. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
  10. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Jul 01 00:22:04 EEST 2025]
  11. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
  12. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  13. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  14. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  15. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  16. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
  17. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  18. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [11340.0000000000]
  19. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [0E-10]
  20. 00:22:04.307 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [4982.5600000000]
  21. 00:26:39.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 00:31:39.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 00:36:39.867 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 00:41:39.868 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 00:46:39.870 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 00:51:39.872 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 00:56:39.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 01:01:39.875 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 01:06:39.876 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 01:11:39.878 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 01:16:39.880 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 01:21:39.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 01:22:04.318 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  34. 01:22:04.319 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  35. 01:26:39.883 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 01:31:39.884 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 01:36:39.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 01:41:39.887 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 01:46:39.888 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 01:51:39.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 01:56:39.891 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 02:01:39.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 02:06:39.894 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  44. 02:11:39.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  45. 02:16:39.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  46. 02:21:39.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  47. 02:22:04.326 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  48. 02:22:04.328 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  49. 02:26:39.899 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  50. 02:31:39.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  51. 02:36:39.902 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  52. 02:41:39.904 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  53. 02:46:39.906 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  54. 02:51:39.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  55. 02:56:39.909 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  56. 02:57:04.969 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  57. 02:57:04.973 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [5752880666@qq.com]
  58. 02:57:04.973 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  59. 02:57:08.839 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  60. 02:57:08.841 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [5752880666@qq.com]
  61. 02:57:08.841 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  62. 02:57:10.905 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  63. 02:57:10.909 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [5752880666@qq.com]
  64. 02:57:10.909 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  65. 02:57:19.229 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  66. 02:57:19.233 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  67. 02:57:19.233 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  68. 02:57:19.236 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  69. 02:57:19.237 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  70. 02:57:19.238 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  71. 02:57:19.239 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  72. 02:57:19.241 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  73. 02:57:19.241 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  74. 02:57:19.243 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  75. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  76. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  77. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  78. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  79. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  80. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  81. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  82. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  83. 02:57:19.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  84. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  85. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  86. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  87. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  88. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  89. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  90. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  91. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  92. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  93. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  94. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  95. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  96. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  97. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 02:57:19 EEST 2025]
  98. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  99. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  100. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  101. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  102. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  103. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  104. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  105. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  106. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  107. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  108. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  109. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  110. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  111. 02:57:19.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  112. 02:57:29.730 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  113. 03:00:28.372 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  114. 03:00:28.376 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  115. 03:00:28.376 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  116. 03:00:28.379 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  117. 03:00:28.380 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  118. 03:00:28.382 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  119. 03:00:28.382 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  120. 03:00:28.384 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  121. 03:00:28.385 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  122. 03:00:28.386 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  123. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  124. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  125. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  126. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  127. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:52:21.0]
  128. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  129. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  130. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  131. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  132. 03:00:28.387 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  133. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  134. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  135. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  136. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  137. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  138. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  139. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  140. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  141. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  142. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  143. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  144. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  145. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:00:28 EEST 2025]
  146. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  147. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  148. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  149. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  150. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  151. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  152. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  153. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  154. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  155. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C04]
  156. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  157. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  158. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  159. 03:00:28.388 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  160. 03:00:37.451 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  161. 03:01:39.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  162. 03:01:44.281 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  163. 03:01:44.285 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  164. 03:01:44.285 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  165. 03:01:44.288 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  166. 03:01:44.289 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  167. 03:01:44.290 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  168. 03:01:44.291 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  169. 03:01:44.293 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  170. 03:01:44.294 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  171. 03:01:44.295 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  172. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  173. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  174. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  175. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  176. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:52:21.0]
  177. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  178. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  179. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  180. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  181. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  182. 03:01:44.296 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  183. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  184. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  185. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  186. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  187. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  188. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  189. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  190. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  191. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  192. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  193. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  194. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:01:44 EEST 2025]
  195. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  196. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  197. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  198. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  199. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  200. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  201. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  202. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  203. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  204. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C04]
  205. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  206. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  207. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  208. 03:01:44.297 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  209. 03:02:32.002 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  210. 03:06:39.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  211. 03:11:39.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  212. 03:16:39.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  213. 03:21:39.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  214. 03:22:04.338 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  215. 03:22:04.340 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  216. 03:26:39.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  217. 03:31:39.920 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  218. 03:36:39.922 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  219. 03:38:20.615 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  220. 03:38:20.617 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [942228819@qq.com]
  221. 03:38:20.617 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  222. 03:38:20.619 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  223. 03:38:20.620 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  224. 03:38:20.621 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  225. 03:38:20.621 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  226. 03:38:20.623 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  227. 03:38:20.623 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  228. 03:38:20.624 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  229. 03:38:20.624 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.134.219]
  230. 03:38:20.624 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-12 09:38:12.0]
  231. 03:38:20.624 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  232. 03:38:20.624 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.134.219]
  233. 03:38:20.624 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-12 09:38:48.0]
  234. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  235. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  236. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  237. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  238. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  239. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500803]
  240. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  241. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  242. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  243. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [942228819@qq.com]
  244. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  245. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  246. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  247. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [2111]
  248. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  249. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  250. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
  251. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:38:20 EEST 2025]
  252. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  253. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  254. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [张]
  255. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020B]
  256. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  257. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20141]
  258. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  259. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  260. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20147]
  261. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B02]
  262. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  263. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [942228819@qq.com]
  264. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  265. 03:38:20.625 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20147]
  266. 03:39:30.249 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  267. 03:40:16.305 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  268. 03:40:16.307 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [710791156@qq.com]
  269. 03:40:16.307 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [da17513ecd8188aec9fe3e6e6c2992f1]
  270. 03:40:16.309 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  271. 03:40:16.309 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  272. 03:40:16.310 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  273. 03:40:16.311 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  274. 03:40:16.312 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  275. 03:40:16.312 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  276. 03:40:16.314 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  277. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.116.167]
  278. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-06-08 11:00:55.0]
  279. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  280. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  281. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:09.0]
  282. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  283. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  284. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  285. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  286. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  287. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500353]
  288. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  289. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  290. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  291. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [710791156@qq.com]
  292. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  293. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  294. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  295. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0127]
  296. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  297. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  298. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  299. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:40:16 EEST 2025]
  300. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  301. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  302. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [牛]
  303. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  304. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [da17513ecd8188aec9fe3e6e6c2992f1]
  305. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  306. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  307. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  308. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20121]
  309. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070104]
  310. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  311. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [710791156@qq.com]
  312. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  313. 03:40:16.314 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20121]
  314. 03:40:24.770 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  315. 03:41:39.923 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  316. 03:46:39.924 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  317. 03:51:39.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  318. 03:51:49.309 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  319. 03:51:49.311 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  320. 03:51:49.311 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  321. 03:51:49.313 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  322. 03:51:49.313 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  323. 03:51:49.315 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  324. 03:51:49.315 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  325. 03:51:49.316 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  326. 03:51:49.316 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  327. 03:51:49.318 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  328. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  329. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  330. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  331. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  332. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  333. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  334. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  335. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  336. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  337. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  338. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  339. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  340. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  341. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  342. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  343. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  344. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  345. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  346. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  347. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  348. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  349. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  350. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:51:49 EEST 2025]
  351. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  352. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  353. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  354. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  355. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  356. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  357. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  358. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  359. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  360. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  361. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  362. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  363. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  364. 03:51:49.318 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  365. 03:54:20.242 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  366. 03:54:20.246 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  367. 03:54:20.246 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  368. 03:54:20.326 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  369. 03:54:20.328 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  370. 03:54:20.394 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  371. 03:54:20.397 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  372. 03:54:20.463 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  373. 03:54:20.464 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  374. 03:54:20.502 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  375. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  376. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  377. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  378. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  379. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  380. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  381. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  382. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  383. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  384. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  385. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  386. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  387. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  388. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  389. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  390. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  391. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  392. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  393. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  394. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  395. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  396. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  397. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:54:20 EEST 2025]
  398. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  399. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  400. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  401. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  402. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  403. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  404. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  405. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  406. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  407. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  408. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  409. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  410. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  411. 03:54:20.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  412. 03:54:47.878 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  413. 03:54:47.882 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  414. 03:54:47.882 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  415. 03:54:47.885 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  416. 03:54:47.886 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  417. 03:54:47.887 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  418. 03:54:47.888 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  419. 03:54:47.890 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  420. 03:54:47.890 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  421. 03:54:47.892 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  422. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  423. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  424. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  425. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  426. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  427. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  428. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  429. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  430. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  431. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  432. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  433. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  434. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  435. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  436. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  437. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  438. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  439. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  440. 03:54:47.893 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  441. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  442. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  443. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  444. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:54:47 EEST 2025]
  445. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  446. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  447. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  448. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  449. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  450. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  451. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  452. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  453. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  454. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  455. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  456. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  457. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  458. 03:54:47.894 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  459. 03:54:53.220 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  460. 03:56:39.927 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  461. 03:59:40.227 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  462. 03:59:40.229 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  463. 03:59:40.229 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  464. 03:59:40.230 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  465. 03:59:40.230 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  466. 03:59:40.232 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  467. 03:59:40.232 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  468. 03:59:40.234 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  469. 03:59:40.234 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  470. 03:59:40.235 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  471. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  472. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  473. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  474. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  475. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  476. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  477. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  478. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  479. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  480. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  481. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  482. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  483. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  484. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  485. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  486. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  487. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  488. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  489. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  490. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  491. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  492. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  493. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 03:59:40 EEST 2025]
  494. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  495. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  496. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  497. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  498. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  499. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  500. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  501. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  502. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  503. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  504. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  505. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  506. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  507. 03:59:40.236 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  508. 03:59:45.722 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  509. 04:01:39.928 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  510. 04:06:39.930 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  511. 04:11:39.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  512. 04:16:39.933 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  513. 04:20:37.890 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  514. 04:20:37.892 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  515. 04:21:04.554 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  516. 04:21:04.556 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  517. 04:21:39.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  518. 04:22:04.349 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  519. 04:22:04.350 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  520. 04:24:50.077 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  521. 04:26:39.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  522. 04:31:39.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  523. 04:36:36.859 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  524. 04:36:36.863 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  525. 04:36:36.863 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  526. 04:36:36.865 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  527. 04:36:36.866 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  528. 04:36:36.868 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  529. 04:36:36.869 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  530. 04:36:36.870 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  531. 04:36:36.871 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  532. 04:36:36.873 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  533. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  534. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  535. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  536. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  537. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  538. 04:36:36.874 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  539. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  540. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  541. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  542. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  543. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  544. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  545. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  546. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  547. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  548. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  549. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  550. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  551. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  552. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  553. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  554. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
  555. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 04:36:36 EEST 2025]
  556. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  557. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  558. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  559. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  560. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  561. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  562. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  563. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  564. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  565. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  566. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  567. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  568. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  569. 04:36:36.875 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  570. 04:36:39.939 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  571. 04:36:42.596 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  572. 04:41:39.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  573. 04:46:35.045 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  574. 04:46:35.048 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  575. 04:46:35.048 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  576. 04:46:35.050 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  577. 04:46:35.051 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  578. 04:46:35.053 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  579. 04:46:35.053 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  580. 04:46:35.055 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  581. 04:46:35.055 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  582. 04:46:35.056 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  583. 04:46:35.058 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  584. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  585. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  586. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  587. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  588. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  589. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  590. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  591. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  592. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  593. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  594. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  595. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  596. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  597. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  598. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  599. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  600. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  601. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  602. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  603. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  604. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  605. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 04:46:35 EEST 2025]
  606. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  607. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  608. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  609. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  610. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  611. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  612. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  613. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  614. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  615. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  616. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  617. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  618. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  619. 04:46:35.059 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  620. 04:46:39.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  621. 04:51:39.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  622. 04:53:21.822 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  623. 04:53:21.826 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Mactor2020@126.com]
  624. 04:53:21.826 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  625. 04:53:21.829 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  626. 04:53:21.830 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  627. 04:53:21.831 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  628. 04:53:21.832 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  629. 04:53:21.834 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  630. 04:53:21.835 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  631. 04:53:21.836 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  632. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  633. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  634. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  635. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  636. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  637. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  638. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  639. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  640. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  641. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  642. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  643. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  644. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  645. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  646. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  647. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  648. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  649. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  650. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  651. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  652. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  653. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  654. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 04:53:21 EEST 2025]
  655. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  656. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  657. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  658. 04:53:21.837 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  659. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  660. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  661. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  662. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  663. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  664. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  665. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  666. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  667. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  668. 04:53:21.838 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  669. 04:53:38.549 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  670. 04:53:38.551 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [799]
  671. 04:53:38.553 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  672. 04:53:38.554 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [799]
  673. 04:53:38.554 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  674. 04:53:38.565 [http-nio-8500-exec-66] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1751334818565,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500845","V_NAME_V":"周生遥","V_EMAIL_V":"15501195121@163.com","V_DATE_TIME_V":"2025-07-01 04:53:38"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"15501195121@163.com"}
  675. 04:53:38.572 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  676. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  677. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 04:40:09.0]
  678. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [799]
  679. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  680. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Jul 01 04:53:38 EEST 2025]
  681. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  682. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  683. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  684. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Jul 01 04:53:38 EEST 2025]
  685. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  686. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  687. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市河北区君临大厦2137]
  688. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  689. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  690. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-07-01 04:44:35.0]
  691. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  692. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1994-05-30 00:00:00.0]
  693. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500845]
  694. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  695. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  696. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河北]
  697. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  698. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  699. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  700. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  701. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [15501195121@163.com]
  702. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [生遥]
  703. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  704. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  705. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  706. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  707. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  708. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [230223199405311819]
  709. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  710. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  711. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  712. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [周]
  713. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-07-01 04:40:09.0]
  714. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  715. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ShengYao Zhou]
  716. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  717. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [628c709b5d084dc6b22a6dbe87665419]
  718. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15501195121]
  719. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  720. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  721. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  722. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  723. 04:53:38.574 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [799]
  724. 04:53:38.575 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  725. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  726. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 04:43:33.0]
  727. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [799]
  728. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  729. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  730. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  731. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  732. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  733. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [799]
  734. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/799/info/3ab63a9ed54b4243ab1e89273a253f1c.jpg]
  735. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  736. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  737. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2135]
  738. 04:53:38.576 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  739. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  740. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 04:43:36.0]
  741. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [799]
  742. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  743. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  744. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  745. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  746. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  747. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [799]
  748. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/799/info/73aaf5cdcc8f459e8e413f103bc27df3.jpg]
  749. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  750. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  751. 04:53:38.576 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2136]
  752. 04:53:38.576 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  753. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  754. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 04:44:30.0]
  755. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [799]
  756. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  757. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  758. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  759. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  760. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  761. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [799]
  762. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/799/info/c5007cc4f1b0400aa68ac26c147b15c2.jpg]
  763. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  764. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  765. 04:53:38.577 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2137]
  766. 04:56:39.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  767. 04:57:39.089 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  768. 04:57:39.092 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  769. 04:57:39.093 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  770. 04:57:39.095 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  771. 04:57:39.096 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  772. 04:57:39.098 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  773. 04:57:39.099 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  774. 04:57:39.100 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  775. 04:57:39.101 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  776. 04:57:39.102 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  777. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  778. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  779. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  780. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  781. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  782. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  783. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  784. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  785. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  786. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  787. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  788. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  789. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  790. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  791. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  792. 04:57:39.103 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  793. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  794. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  795. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  796. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  797. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  798. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  799. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 04:57:39 EEST 2025]
  800. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  801. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  802. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  803. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  804. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  805. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  806. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  807. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  808. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  809. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  810. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  811. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  812. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  813. 04:57:39.104 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  814. 04:57:57.970 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  815. 04:57:57.972 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  816. 05:01:39.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  817. 05:06:39.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  818. 05:11:39.949 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  819. 05:16:39.951 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  820. 05:21:39.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  821. 05:22:04.360 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  822. 05:22:04.361 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  823. 05:26:39.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  824. 05:31:39.956 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  825. 05:35:49.245 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  826. 05:35:49.247 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Mactor2020@126.com]
  827. 05:35:49.247 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  828. 05:35:49.250 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  829. 05:35:49.250 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  830. 05:35:49.252 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  831. 05:35:49.252 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  832. 05:35:49.253 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  833. 05:35:49.253 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  834. 05:35:49.254 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  835. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  836. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  837. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  838. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  839. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  840. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  841. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  842. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  843. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  844. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  845. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  846. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  847. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  848. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  849. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  850. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  851. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  852. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  853. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  854. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  855. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  856. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  857. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 05:35:49 EEST 2025]
  858. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  859. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  860. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  861. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  862. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  863. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  864. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  865. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  866. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  867. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  868. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  869. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  870. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  871. 05:35:49.255 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  872. 05:36:06.348 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  873. 05:36:06.352 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [800]
  874. 05:36:06.355 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
  875. 05:36:06.356 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [800]
  876. 05:36:06.356 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  877. 05:36:06.372 [http-nio-8500-exec-88] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1751337366372,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500846","V_NAME_V":"陈毅弘","V_EMAIL_V":"1127692854@qq.com","V_DATE_TIME_V":"2025-07-01 05:36:06"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"1127692854@qq.com"}
  878. 05:36:06.377 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  879. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.135.254]
  880. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 05:11:53.0]
  881. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [800]
  882. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  883. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Jul 01 05:36:06 EEST 2025]
  884. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  885. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  886. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  887. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Jul 01 05:36:06 EEST 2025]
  888. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  889. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  890. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [佛山市禅城区兆祥路16号@#佛山市禅城区兆祥路16号]
  891. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20141]
  892. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  893. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-07-01 05:16:27.0]
  894. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  895. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-08-04 00:00:00.0]
  896. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500846]
  897. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  898. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  899. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  900. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  901. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  902. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  903. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  904. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1127692854@qq.com]
  905. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [毅弘]
  906. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  907. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  908. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  909. 05:36:06.380 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  910. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  911. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [440602200008051536]
  912. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  913. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  914. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [27.36.135.254]
  915. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [陈]
  916. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-07-01 05:11:53.0]
  917. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  918. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YiHong Chen]
  919. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  920. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [93805dfcaeaad51211b83d1d1aae6b56]
  921. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13924823842]
  922. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  923. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  924. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  925. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528000]
  926. 05:36:06.381 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [800]
  927. 05:36:06.382 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  928. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.87.122.180]
  929. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 05:15:45.0]
  930. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [800]
  931. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  932. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  933. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  934. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  935. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  936. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [800]
  937. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/800/info/264962de69174450abec9964921046e5.jpeg]
  938. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  939. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  940. 05:36:06.383 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2138]
  941. 05:36:06.383 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  942. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.87.122.180]
  943. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 05:16:04.0]
  944. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [800]
  945. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  946. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  947. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  948. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  949. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  950. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [800]
  951. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/800/info/8c3710d19f2b494f9f271df19c72b1d1.jpeg]
  952. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  953. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  954. 05:36:06.384 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2139]
  955. 05:36:06.385 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
  956. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.87.122.180]
  957. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-07-01 05:16:18.0]
  958. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [800]
  959. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  960. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  961. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  962. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  963. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  964. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [800]
  965. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/800/info/9aedbcbdca2843528a86bbe9b8f1ba02.jpeg]
  966. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  967. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  968. 05:36:06.385 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [2140]
  969. 05:36:39.957 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  970. 05:41:39.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  971. 05:42:06.552 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  972. 05:42:06.556 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  973. 05:42:06.556 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  974. 05:42:06.559 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  975. 05:42:06.560 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  976. 05:42:06.561 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  977. 05:42:06.562 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  978. 05:42:06.563 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  979. 05:42:06.564 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  980. 05:42:06.566 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  981. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  982. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  983. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  984. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  985. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  986. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  987. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  988. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  989. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  990. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  991. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  992. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  993. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  994. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  995. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  996. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  997. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  998. 05:42:06.567 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  999. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  1000. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1001. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1002. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1003. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 05:42:06 EEST 2025]
  1004. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1005. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1006. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  1007. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1008. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1009. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1010. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1011. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1012. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  1013. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  1014. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1015. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  1016. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1017. 05:42:06.568 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  1018. 05:43:44.230 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1019. 05:43:44.234 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1020. 05:43:44.234 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1021. 05:43:44.237 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1022. 05:43:44.238 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1023. 05:43:44.240 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1024. 05:43:44.240 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1025. 05:43:44.242 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1026. 05:43:44.243 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1027. 05:43:44.244 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1028. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1029. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1030. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1031. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1032. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1033. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1034. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1035. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1036. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1037. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1038. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1039. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1040. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1041. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1042. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1043. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1044. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1045. 05:43:44.245 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1046. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1047. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1048. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1049. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1050. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 05:43:44 EEST 2025]
  1051. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1052. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1053. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1054. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1055. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1056. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1057. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1058. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1059. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1060. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1061. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1062. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1063. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1064. 05:43:44.246 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1065. 05:43:49.763 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1066. 05:45:43.759 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1067. 05:46:39.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1068. 05:51:39.961 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1069. 05:53:40.275 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1070. 05:53:40.278 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1071. 05:53:40.278 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1072. 05:53:40.281 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1073. 05:53:40.282 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1074. 05:53:40.284 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1075. 05:53:40.285 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1076. 05:53:40.286 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1077. 05:53:40.289 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1078. 05:53:40.290 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1079. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1080. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1081. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1082. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1083. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1084. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1085. 05:53:40.291 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1086. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1087. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1088. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1089. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1090. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1091. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1092. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1093. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1094. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1095. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1096. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1097. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1098. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1099. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1100. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1101. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 05:53:40 EEST 2025]
  1102. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1103. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1104. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1105. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1106. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1107. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1108. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1109. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1110. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1111. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1112. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1113. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1114. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1115. 05:53:40.292 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1116. 05:53:44.707 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1117. 05:54:25.167 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1118. 05:54:25.171 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1119. 05:54:25.171 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1120. 05:54:25.174 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1121. 05:54:25.175 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1122. 05:54:25.177 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1123. 05:54:25.177 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1124. 05:54:25.179 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1125. 05:54:25.179 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1126. 05:54:25.181 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1127. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1128. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1129. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1130. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1131. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1132. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1133. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1134. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1135. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1136. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1137. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1138. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1139. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1140. 05:54:25.182 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1141. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1142. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1143. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1144. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1145. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1146. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1147. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1148. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  1149. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 05:54:25 EEST 2025]
  1150. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1151. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1152. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1153. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1154. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1155. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1156. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1157. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1158. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1159. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1160. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1161. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1162. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1163. 05:54:25.183 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1164. 05:55:10.627 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  1165. 05:55:10.629 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  1166. 05:56:39.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1167. 06:01:39.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1168. 06:02:13.320 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1169. 06:02:13.324 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  1170. 06:02:13.324 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1171. 06:02:13.327 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1172. 06:02:13.328 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1173. 06:02:13.329 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1174. 06:02:13.330 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1175. 06:02:13.332 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1176. 06:02:13.332 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1177. 06:02:13.334 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1178. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1179. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  1180. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1181. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  1182. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  1183. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1184. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1185. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1186. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1187. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1188. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  1189. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1190. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1191. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1192. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  1193. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1194. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1195. 06:02:13.335 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1196. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  1197. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1198. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1199. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
  1200. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:02:13 EEST 2025]
  1201. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1202. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1203. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  1204. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1205. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  1206. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1207. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1208. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1209. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  1210. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  1211. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1212. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  1213. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1214. 06:02:13.336 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  1215. 06:02:23.091 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1216. 06:02:31.343 [http-nio-8500-exec-83] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  1217. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  1218. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  1219. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  1220. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  1221. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  1222. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  1223. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  1224. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  1225. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  1226. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  1227. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  1228. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  1229. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1230. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1231. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1232. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1233. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1234. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1235. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1236. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1237. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1238. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1239. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1240. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1241. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1242. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1243. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1244. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1245. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1246. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1247. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1248. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1249. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1250. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1251. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1252. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1253. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1254. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1255. at java.lang.Thread.run(Unknown Source)
  1256. 06:02:31.343 [http-nio-8500-exec-83] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1257. com.crm.rely.backend.exception.LoginException: invalid
  1258. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1259. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1260. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1261. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1262. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1263. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1264. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1265. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1266. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1267. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1268. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1269. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1270. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1271. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1272. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1273. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1274. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1275. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1276. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1277. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1278. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1279. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1280. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1281. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1282. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1283. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1284. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1285. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1286. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1287. at java.lang.Thread.run(Unknown Source)
  1288. 06:02:31.345 [http-nio-8500-exec-83] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1289. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  1290. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1291. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1292. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1293. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1294. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1295. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1296. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1297. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1298. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1299. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1300. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1301. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1302. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1303. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1304. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1305. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1306. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1307. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1308. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1309. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1310. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1311. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1312. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1313. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1314. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1315. at java.lang.Thread.run(Unknown Source)
  1316. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  1317. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  1318. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  1319. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  1320. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1321. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1322. ... 25 common frames omitted
  1323. 06:06:39.966 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1324. 06:08:33.546 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1325. 06:08:33.548 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1326. 06:08:33.548 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1327. 06:08:33.549 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1328. 06:08:33.550 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1329. 06:08:33.551 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1330. 06:08:33.551 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1331. 06:08:33.552 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1332. 06:08:33.553 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1333. 06:08:33.554 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1334. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1335. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1336. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1337. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1338. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1339. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1340. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1341. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1342. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1343. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1344. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1345. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1346. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1347. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1348. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1349. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1350. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1351. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1352. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1353. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1354. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1355. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1356. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:08:33 EEST 2025]
  1357. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1358. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1359. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1360. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1361. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1362. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1363. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1364. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1365. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1366. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1367. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1368. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1369. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1370. 06:08:33.554 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1371. 06:08:55.621 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1372. 06:08:55.624 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [tomatosc1220@163.com]
  1373. 06:08:55.625 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  1374. 06:08:55.627 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1375. 06:08:55.628 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1376. 06:08:55.630 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1377. 06:08:55.631 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1378. 06:08:55.633 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1379. 06:08:55.635 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1380. 06:08:55.636 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1381. 06:08:55.637 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.44]
  1382. 06:08:55.637 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-09-11 05:50:33.0]
  1383. 06:08:55.637 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1384. 06:08:55.637 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1385. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:01.0]
  1386. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1387. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1388. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1389. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1390. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1391. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500440]
  1392. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1393. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1394. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1395. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [tomatosc1220@163.com]
  1396. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1397. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1398. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1399. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [10]
  1400. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1401. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1402. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1403. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:08:55 EEST 2025]
  1404. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1405. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1406. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [石东]
  1407. 06:08:55.638 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  1408. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  1409. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  1410. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1411. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1412. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20128]
  1413. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C07]
  1414. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1415. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [tomatosc1220@163.com]
  1416. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1417. 06:08:55.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20128]
  1418. 06:09:17.194 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1419. 06:11:39.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1420. 06:14:41.427 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1421. 06:14:41.431 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3388410779@qq.com]
  1422. 06:14:41.431 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1423. 06:14:41.434 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1424. 06:14:41.435 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1425. 06:14:41.436 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1426. 06:14:41.437 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1427. 06:14:41.438 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1428. 06:14:41.439 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1429. 06:14:41.441 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1430. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.158.152]
  1431. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-26 10:12:25.0]
  1432. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1433. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.133.6]
  1434. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-06-04 12:11:29.0]
  1435. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1436. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1437. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1438. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1439. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1440. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500819]
  1441. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1442. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1443. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1444. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3388410779@qq.com]
  1445. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1446. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1447. 06:14:41.442 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1448. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0131]
  1449. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1450. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1451. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1452. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:14:41 EEST 2025]
  1453. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1454. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1455. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [文慧]
  1456. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1457. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1458. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1459. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1460. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1461. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20148]
  1462. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020704]
  1463. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1464. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [3388410779@qq.com]
  1465. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1466. 06:14:41.443 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20148]
  1467. 06:14:47.931 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1468. 06:16:39.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1469. 06:19:46.656 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1470. 06:21:39.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1471. 06:22:04.369 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1472. 06:22:04.371 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  1473. 06:26:39.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1474. 06:31:14.285 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1475. 06:31:39.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1476. 06:32:38.224 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1477. 06:32:38.226 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1478. 06:34:58.039 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1479. 06:34:58.043 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1480. 06:34:58.043 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1481. 06:34:58.045 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1482. 06:34:58.046 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1483. 06:34:58.048 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1484. 06:34:58.049 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1485. 06:34:58.050 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1486. 06:34:58.052 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1487. 06:34:58.054 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1488. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1489. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1490. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1491. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1492. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1493. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1494. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1495. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1496. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1497. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1498. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1499. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1500. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1501. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1502. 06:34:58.055 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1503. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1504. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1505. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1506. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1507. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1508. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1509. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1510. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:34:58 EEST 2025]
  1511. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1512. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1513. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1514. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1515. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1516. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1517. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1518. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1519. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1520. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1521. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1522. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1523. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1524. 06:34:58.056 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1525. 06:35:03.631 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1526. 06:35:03.635 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Mactor2020@126.com]
  1527. 06:35:03.635 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1528. 06:35:03.638 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1529. 06:35:03.639 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1530. 06:35:03.640 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1531. 06:35:03.641 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1532. 06:35:03.643 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1533. 06:35:03.643 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1534. 06:35:03.645 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1535. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1536. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1537. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1538. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1539. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1540. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1541. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1542. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1543. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1544. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1545. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1546. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1547. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1548. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1549. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1550. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1551. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1552. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1553. 06:35:03.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1554. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1555. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1556. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1557. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:35:03 EEST 2025]
  1558. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1559. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1560. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1561. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1562. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1563. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1564. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1565. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1566. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1567. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1568. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1569. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1570. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1571. 06:35:03.647 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1572. 06:36:39.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1573. 06:36:57.373 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1574. 06:36:57.375 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1575. 06:37:58.786 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1576. 06:37:58.788 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1577. 06:37:58.788 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1578. 06:37:58.790 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1579. 06:37:58.791 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1580. 06:37:58.792 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1581. 06:37:58.792 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1582. 06:37:58.794 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1583. 06:37:58.794 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1584. 06:37:58.795 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1585. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1586. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1587. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1588. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1589. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1590. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1591. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1592. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1593. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1594. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1595. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1596. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1597. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1598. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1599. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1600. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1601. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1602. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1603. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1604. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1605. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1606. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1607. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:37:58 EEST 2025]
  1608. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1609. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1610. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1611. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1612. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1613. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1614. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1615. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1616. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1617. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1618. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1619. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1620. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1621. 06:37:58.796 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1622. 06:41:39.976 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1623. 06:43:14.764 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1624. 06:43:14.768 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  1625. 06:43:14.768 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1626. 06:43:14.770 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1627. 06:43:14.771 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  1628. 06:43:14.773 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1629. 06:43:14.774 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  1630. 06:43:14.775 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1631. 06:43:14.776 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1632. 06:43:14.777 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1633. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  1634. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  1635. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  1636. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  1637. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  1638. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1639. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1640. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1641. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1642. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  1643. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  1644. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1645. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1646. 06:43:14.779 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1647. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  1648. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1649. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1650. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1651. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  1652. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1653. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1654. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1655. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 06:43:14 EEST 2025]
  1656. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1657. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1658. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  1659. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  1660. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1661. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  1662. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1663. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  1664. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  1665. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  1666. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  1667. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  1668. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1669. 06:43:14.780 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  1670. 06:46:39.978 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1671. 06:48:45.234 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1672. 06:51:39.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1673. 06:56:39.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1674. 07:01:39.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1675. 07:06:39.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1676. 07:11:39.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1677. 07:16:39.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1678. 07:21:39.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1679. 07:22:04.382 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1680. 07:22:04.384 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  1681. 07:26:39.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1682. 07:31:39.990 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1683. 07:36:39.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1684. 07:41:39.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1685. 07:44:36.526 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1686. 07:44:36.530 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
  1687. 07:44:36.530 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  1688. 07:44:36.532 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1689. 07:44:36.533 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1690. 07:44:36.535 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1691. 07:44:36.536 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1692. 07:44:36.537 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1693. 07:44:36.540 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1694. 07:44:36.541 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1695. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  1696. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
  1697. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1698. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1699. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:52:21.0]
  1700. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1701. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1702. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1703. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1704. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1705. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
  1706. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1707. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1708. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1709. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
  1710. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1711. 07:44:36.542 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1712. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1713. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
  1714. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1715. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1716. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  1717. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 07:44:36 EEST 2025]
  1718. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1719. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1720. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [丹]
  1721. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
  1722. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
  1723. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
  1724. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1725. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1726. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
  1727. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C04]
  1728. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1729. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
  1730. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1731. 07:44:36.543 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
  1732. 07:46:39.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1733. 07:51:39.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1734. 07:56:39.998 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1735. 08:01:39.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1736. 08:06:40.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1737. 08:11:40.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1738. 08:16:40.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1739. 08:21:18.197 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1740. 08:21:18.201 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1741. 08:21:18.201 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1742. 08:21:18.204 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1743. 08:21:18.205 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1744. 08:21:18.206 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1745. 08:21:18.207 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1746. 08:21:18.208 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1747. 08:21:18.209 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1748. 08:21:18.210 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1749. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1750. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1751. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1752. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1753. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1754. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1755. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1756. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1757. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1758. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1759. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1760. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1761. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1762. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1763. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1764. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1765. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1766. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1767. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1768. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1769. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1770. 08:21:18.211 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1771. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 08:21:18 EEST 2025]
  1772. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1773. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1774. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1775. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1776. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1777. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1778. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1779. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1780. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1781. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1782. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1783. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1784. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1785. 08:21:18.212 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1786. 08:21:24.945 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  1787. 08:21:40.004 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1788. 08:22:04.392 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  1789. 08:22:04.394 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  1790. 08:26:40.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1791. 08:31:40.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1792. 08:36:40.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1793. 08:41:16.380 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1794. 08:41:16.382 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1795. 08:41:40.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1796. 08:42:58.466 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1797. 08:42:58.468 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1798. 08:46:40.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1799. 08:46:54.964 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  1800. 08:46:54.967 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [795]
  1801. 08:46:54.969 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select sysreasons0_.id as id1_85_, sysreasons0_.add_ip as add_ip2_85_, sysreasons0_.add_time as add_time3_85_, sysreasons0_.add_user as add_user4_85_, sysreasons0_.modify_ip as modify_i5_85_, sysreasons0_.modify_time as modify_t6_85_, sysreasons0_.modify_user as modify_u7_85_, sysreasons0_.note as note8_85_, sysreasons0_.content as content9_85_, sysreasons0_.en_content as en_cont10_85_, sysreasons0_.sub_index as sub_ind11_85_, sysreasons0_.type as type12_85_ from sys_reasons_refusal sysreasons0_ where sysreasons0_.id=? limit ?
  1802. 08:46:54.970 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [100]
  1803. 08:46:54.974 [http-nio-8500-exec-65] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1751348814974,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_FAIL","imageFilesMap":null,"map":{"V_C_ID_V":"500841","V_REASONS_REFUSAL_V":"--","V_NAME_V":"王松花","V_EMAIL_V":"3025332159@qq.com","V_DATE_TIME_V":"2025-07-01 08:46:54"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_FAIL_SEND_CN","users":"3025332159@qq.com"}
  1804. 08:46:54.984 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1805. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.225.254.235]
  1806. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-06-28 06:33:32.0]
  1807. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [795]
  1808. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1809. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Jul 01 08:46:54 EEST 2025]
  1810. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1811. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1812. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [100]
  1813. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Jul 01 08:46:54 EEST 2025]
  1814. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1815. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [3]
  1816. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市南]
  1817. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  1818. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [3]
  1819. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-07-01 06:34:26.0]
  1820. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1821. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1977-11-10 00:00:00.0]
  1822. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500841]
  1823. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1824. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1825. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1826. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1827. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1828. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1829. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1830. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3025332159@qq.com]
  1831. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [松花]
  1832. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1833. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1834. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1835. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1836. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  1837. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370285197711112923]
  1838. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1839. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1840. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [120.225.255.79]
  1841. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1842. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-07-01 04:20:30.0]
  1843. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1844. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [SongHua Wang]
  1845. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1846. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [859f5f183b699fe37c6259d06c677ab6]
  1847. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13325249196]
  1848. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1849. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1850. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1851. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  1852. 08:46:54.985 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [795]
  1853. 08:48:34.259 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1854. 08:48:34.260 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1855. 08:51:24.279 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1856. 08:51:24.282 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  1857. 08:51:24.282 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1858. 08:51:24.285 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1859. 08:51:24.286 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1860. 08:51:24.288 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1861. 08:51:24.289 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1862. 08:51:24.291 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1863. 08:51:24.293 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1864. 08:51:24.294 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1865. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  1866. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  1867. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1868. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  1869. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  1870. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  1871. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1872. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1873. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1874. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1875. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  1876. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1877. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1878. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1879. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  1880. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1881. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1882. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1883. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  1884. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1885. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1886. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1887. 08:51:24.295 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 08:51:24 EEST 2025]
  1888. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1889. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1890. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  1891. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  1892. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  1893. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  1894. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1895. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1896. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  1897. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  1898. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1899. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  1900. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1901. 08:51:24.296 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  1902. 08:51:40.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1903. 08:53:38.785 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  1904. 08:53:38.786 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1905. 08:56:40.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1906. 08:56:57.909 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1907. 08:56:57.912 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1908. 08:56:57.912 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1909. 08:56:57.915 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1910. 08:56:57.916 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1911. 08:56:57.917 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1912. 08:56:57.918 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1913. 08:56:57.920 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1914. 08:56:57.920 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1915. 08:56:57.922 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1916. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1917. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1918. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1919. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1920. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1921. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1922. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1923. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1924. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1925. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1926. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1927. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1928. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1929. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1930. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1931. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1932. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1933. 08:56:57.923 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1934. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1935. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1936. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1937. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1938. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 08:56:57 EEST 2025]
  1939. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1940. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1941. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1942. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1943. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1944. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1945. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1946. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1947. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1948. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1949. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1950. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1951. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1952. 08:56:57.924 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  1953. 08:59:01.015 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  1954. 08:59:01.017 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1955. 08:59:01.017 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1956. 08:59:01.019 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  1957. 08:59:01.020 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  1958. 08:59:01.021 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  1959. 08:59:01.022 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1960. 08:59:01.023 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  1961. 08:59:01.023 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  1962. 08:59:01.024 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  1963. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1964. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  1965. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1966. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1967. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1968. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1969. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1970. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  1971. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  1972. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  1973. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  1974. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  1975. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1976. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  1977. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  1978. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  1979. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  1980. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1981. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  1982. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1983. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  1984. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  1985. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 08:59:01 EEST 2025]
  1986. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1987. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  1988. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  1989. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  1990. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  1991. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  1992. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  1993. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  1994. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  1995. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  1996. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  1997. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  1998. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  1999. 08:59:01.025 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2000. 09:01:40.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2001. 09:01:40.658 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2002. 09:01:40.662 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2003. 09:01:40.662 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2004. 09:01:40.664 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2005. 09:01:40.665 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2006. 09:01:40.667 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2007. 09:01:40.668 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2008. 09:01:40.670 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2009. 09:01:40.670 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2010. 09:01:40.672 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2011. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2012. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2013. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2014. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2015. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2016. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2017. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2018. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2019. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2020. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2021. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2022. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2023. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2024. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2025. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2026. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2027. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2028. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2029. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2030. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2031. 09:01:40.673 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2032. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2033. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:01:40 EEST 2025]
  2034. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2035. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2036. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2037. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2038. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2039. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2040. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2041. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2042. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2043. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2044. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2045. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2046. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2047. 09:01:40.674 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2048. 09:04:41.730 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  2049. 09:04:41.733 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [795]
  2050. 09:04:41.735 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select sysreasons0_.id as id1_85_, sysreasons0_.add_ip as add_ip2_85_, sysreasons0_.add_time as add_time3_85_, sysreasons0_.add_user as add_user4_85_, sysreasons0_.modify_ip as modify_i5_85_, sysreasons0_.modify_time as modify_t6_85_, sysreasons0_.modify_user as modify_u7_85_, sysreasons0_.note as note8_85_, sysreasons0_.content as content9_85_, sysreasons0_.en_content as en_cont10_85_, sysreasons0_.sub_index as sub_ind11_85_, sysreasons0_.type as type12_85_ from sys_reasons_refusal sysreasons0_ where sysreasons0_.id=? limit ?
  2051. 09:04:41.736 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [100]
  2052. 09:04:41.740 [http-nio-8500-exec-76] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1751349881740,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_FAIL","imageFilesMap":null,"map":{"V_C_ID_V":"500841","V_REASONS_REFUSAL_V":"--","V_NAME_V":"王松花","V_EMAIL_V":"3025332159@qq.com","V_DATE_TIME_V":"2025-07-01 09:04:41"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_FAIL_SEND_CN","users":"3025332159@qq.com"}
  2053. 09:04:41.744 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  2054. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.225.254.235]
  2055. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-06-28 06:33:32.0]
  2056. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [795]
  2057. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  2058. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Jul 01 09:04:41 EEST 2025]
  2059. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2060. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2061. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [100]
  2062. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Jul 01 09:04:41 EEST 2025]
  2063. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2064. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [3]
  2065. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市南]
  2066. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  2067. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [3]
  2068. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-07-01 08:49:36.0]
  2069. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2070. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1977-11-10 00:00:00.0]
  2071. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500841]
  2072. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2073. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2074. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  2075. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2076. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2077. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2078. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2079. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3025332159@qq.com]
  2080. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [松花]
  2081. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  2082. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2083. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2084. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2085. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
  2086. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370285197711112923]
  2087. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2088. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2089. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [120.225.255.79]
  2090. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  2091. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-07-01 08:49:26.0]
  2092. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2093. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [SongHua Wang]
  2094. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2095. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [859f5f183b699fe37c6259d06c677ab6]
  2096. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13325249196]
  2097. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  2098. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2099. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2100. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  2101. 09:04:41.745 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [795]
  2102. 09:06:40.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2103. 09:08:05.617 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2104. 09:08:05.621 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  2105. 09:08:05.621 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2106. 09:08:05.623 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2107. 09:08:05.624 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  2108. 09:08:05.626 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2109. 09:08:05.627 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  2110. 09:08:05.628 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2111. 09:08:05.629 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2112. 09:08:05.631 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2113. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  2114. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  2115. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2116. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  2117. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  2118. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2119. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2120. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2121. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2122. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  2123. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  2124. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2125. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2126. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2127. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  2128. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2129. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2130. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2131. 09:08:05.632 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  2132. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2133. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2134. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [154.194.251.231]
  2135. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:08:05 EEST 2025]
  2136. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2137. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2138. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  2139. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  2140. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2141. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  2142. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2143. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  2144. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2145. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  2146. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  2147. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  2148. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2149. 09:08:05.633 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  2150. 09:08:27.364 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
  2151. 09:08:27.365 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
  2152. 09:10:34.655 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2153. 09:10:34.659 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  2154. 09:10:34.659 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2155. 09:10:34.662 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2156. 09:10:34.663 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  2157. 09:10:34.664 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2158. 09:10:34.665 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  2159. 09:10:34.667 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2160. 09:10:34.667 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2161. 09:10:34.669 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2162. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  2163. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  2164. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2165. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  2166. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  2167. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2168. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2169. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2170. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2171. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  2172. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  2173. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2174. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2175. 09:10:34.670 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2176. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  2177. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2178. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2179. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2180. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  2181. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2182. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2183. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2184. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:10:34 EEST 2025]
  2185. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2186. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2187. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  2188. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  2189. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2190. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  2191. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2192. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  2193. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2194. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  2195. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  2196. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  2197. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2198. 09:10:34.671 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  2199. 09:11:40.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2200. 09:16:40.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2201. 09:16:45.296 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2202. 09:16:45.298 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2203. 09:16:45.298 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2204. 09:16:45.301 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2205. 09:16:45.302 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2206. 09:16:45.303 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2207. 09:16:45.304 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2208. 09:16:45.307 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2209. 09:16:45.308 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2210. 09:16:45.309 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2211. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2212. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2213. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2214. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2215. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2216. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2217. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2218. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2219. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2220. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2221. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2222. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2223. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2224. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2225. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2226. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2227. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2228. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2229. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2230. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2231. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2232. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2233. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:16:45 EEST 2025]
  2234. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2235. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2236. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2237. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2238. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2239. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2240. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2241. 09:16:45.309 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2242. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2243. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2244. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2245. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2246. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2247. 09:16:45.310 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2248. 09:17:32.665 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2249. 09:21:40.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2250. 09:22:04.403 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2251. 09:22:04.404 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  2252. 09:22:07.083 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2253. 09:22:07.085 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2254. 09:23:31.704 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2255. 09:23:31.706 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2256. 09:24:05.879 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2257. 09:24:05.881 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2258. 09:25:39.919 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2259. 09:25:39.921 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
  2260. 09:25:39.921 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2261. 09:25:39.923 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2262. 09:25:39.924 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2263. 09:25:39.925 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2264. 09:25:39.925 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2265. 09:25:39.927 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2266. 09:25:39.927 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2267. 09:25:39.928 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2268. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2269. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
  2270. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2271. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
  2272. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
  2273. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2274. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2275. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2276. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2277. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2278. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
  2279. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2280. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2281. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2282. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
  2283. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2284. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2285. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2286. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
  2287. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2288. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2289. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
  2290. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:25:39 EEST 2025]
  2291. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2292. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2293. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
  2294. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2295. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
  2296. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2297. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2298. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2299. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
  2300. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
  2301. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2302. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
  2303. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2304. 09:25:39.929 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
  2305. 09:26:13.801 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2306. 09:26:40.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2307. 09:31:40.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2308. 09:36:40.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2309. 09:41:40.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2310. 09:46:40.028 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2311. 09:51:19.974 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2312. 09:51:19.978 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2313. 09:51:19.978 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2314. 09:51:19.981 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2315. 09:51:19.982 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2316. 09:51:19.983 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2317. 09:51:19.984 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2318. 09:51:19.986 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2319. 09:51:19.986 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2320. 09:51:19.988 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2321. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2322. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2323. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2324. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2325. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2326. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2327. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2328. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2329. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2330. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2331. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2332. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2333. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2334. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2335. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2336. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2337. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2338. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2339. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2340. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2341. 09:51:19.989 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2342. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2343. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 09:51:19 EEST 2025]
  2344. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2345. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2346. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2347. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2348. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2349. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2350. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2351. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2352. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2353. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2354. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2355. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2356. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2357. 09:51:19.990 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2358. 09:51:38.708 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2359. 09:51:40.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2360. 09:56:40.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2361. 10:01:40.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2362. 10:06:40.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2363. 10:11:40.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2364. 10:16:40.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2365. 10:17:25.305 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2366. 10:17:25.309 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2367. 10:17:25.309 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2368. 10:17:25.312 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2369. 10:17:25.313 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2370. 10:17:25.314 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2371. 10:17:25.315 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2372. 10:17:25.317 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2373. 10:17:25.318 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2374. 10:17:25.319 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2375. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2376. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2377. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2378. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2379. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2380. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2381. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2382. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2383. 10:17:25.320 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2384. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2385. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2386. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2387. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2388. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2389. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2390. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2391. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2392. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2393. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2394. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2395. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2396. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2397. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 10:17:25 EEST 2025]
  2398. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2399. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2400. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2401. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2402. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2403. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2404. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2405. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2406. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2407. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2408. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2409. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2410. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2411. 10:17:25.321 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2412. 10:17:40.419 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2413. 10:21:11.050 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2414. 10:21:11.054 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  2415. 10:21:11.054 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2416. 10:21:11.057 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2417. 10:21:11.058 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2418. 10:21:11.059 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2419. 10:21:11.060 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2420. 10:21:11.062 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2421. 10:21:11.062 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2422. 10:21:11.064 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2423. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
  2424. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
  2425. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2426. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
  2427. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
  2428. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2429. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2430. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2431. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2432. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2433. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
  2434. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2435. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2436. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2437. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
  2438. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2439. 10:21:11.065 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2440. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2441. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
  2442. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2443. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2444. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2445. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 10:21:11 EEST 2025]
  2446. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2447. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2448. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [王雷]
  2449. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2450. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2451. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2452. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2453. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2454. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
  2455. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
  2456. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2457. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
  2458. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2459. 10:21:11.066 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
  2460. 10:21:40.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2461. 10:22:04.420 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2462. 10:22:04.421 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  2463. 10:26:40.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2464. 10:31:40.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2465. 10:36:40.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2466. 10:41:06.578 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2467. 10:41:06.582 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  2468. 10:41:06.582 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2469. 10:41:06.585 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2470. 10:41:06.586 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2471. 10:41:06.587 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2472. 10:41:06.588 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2473. 10:41:06.590 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2474. 10:41:06.591 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2475. 10:41:06.592 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2476. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  2477. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  2478. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2479. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  2480. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  2481. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2482. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2483. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2484. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2485. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2486. 10:41:06.593 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  2487. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2488. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2489. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2490. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  2491. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2492. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2493. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2494. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  2495. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2496. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2497. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2498. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 10:41:06 EEST 2025]
  2499. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2500. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2501. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  2502. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  2503. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2504. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  2505. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2506. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2507. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  2508. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  2509. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2510. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  2511. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2512. 10:41:06.594 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  2513. 10:41:40.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2514. 10:46:40.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2515. 10:51:40.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2516. 10:51:45.590 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2517. 10:56:40.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2518. 11:01:40.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2519. 11:06:40.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2520. 11:11:40.052 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2521. 11:16:21.238 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2522. 11:16:21.240 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
  2523. 11:16:21.240 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2524. 11:16:21.242 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2525. 11:16:21.242 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2526. 11:16:21.244 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2527. 11:16:21.244 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2528. 11:16:21.245 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2529. 11:16:21.245 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2530. 11:16:21.247 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2531. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
  2532. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
  2533. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2534. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  2535. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:51:46.0]
  2536. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2537. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2538. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2539. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2540. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2541. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
  2542. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2543. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2544. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2545. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
  2546. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2547. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2548. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2549. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
  2550. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2551. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2552. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2553. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 11:16:21 EEST 2025]
  2554. 11:16:21.247 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2555. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2556. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [楠]
  2557. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
  2558. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
  2559. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
  2560. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2561. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2562. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
  2563. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C]
  2564. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2565. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
  2566. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2567. 11:16:21.248 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
  2568. 11:16:25.696 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2569. 11:16:40.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2570. 11:21:40.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2571. 11:22:04.428 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2572. 11:22:04.430 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  2573. 11:26:40.057 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2574. 11:31:40.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2575. 11:32:24.010 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2576. 11:32:24.014 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
  2577. 11:32:24.014 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2578. 11:32:24.017 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2579. 11:32:24.018 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2580. 11:32:24.019 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2581. 11:32:24.020 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2582. 11:32:24.022 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2583. 11:32:24.022 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2584. 11:32:24.024 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2585. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
  2586. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
  2587. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2588. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
  2589. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
  2590. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2591. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2592. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2593. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2594. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2595. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
  2596. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2597. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2598. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2599. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
  2600. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2601. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2602. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2603. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
  2604. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2605. 11:32:24.025 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2606. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2607. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 11:32:24 EEST 2025]
  2608. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2609. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2610. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [晨阳]
  2611. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
  2612. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
  2613. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
  2614. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2615. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2616. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
  2617. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
  2618. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2619. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
  2620. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2621. 11:32:24.026 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
  2622. 11:32:31.035 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2623. 11:36:13.805 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2624. 11:36:13.809 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2625. 11:36:13.809 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2626. 11:36:13.811 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2627. 11:36:13.812 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2628. 11:36:13.814 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2629. 11:36:13.815 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2630. 11:36:13.817 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2631. 11:36:13.817 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2632. 11:36:13.819 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2633. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2634. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2635. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2636. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2637. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2638. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2639. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2640. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2641. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2642. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2643. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2644. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2645. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2646. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2647. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2648. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2649. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2650. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2651. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2652. 11:36:13.820 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2653. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2654. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2655. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 11:36:13 EEST 2025]
  2656. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2657. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2658. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2659. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2660. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2661. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2662. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2663. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2664. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2665. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2666. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2667. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2668. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2669. 11:36:13.821 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2670. 11:36:22.461 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2671. 11:36:40.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2672. 11:40:16.025 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2673. 11:40:16.029 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
  2674. 11:40:16.029 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2675. 11:40:16.031 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2676. 11:40:16.032 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
  2677. 11:40:16.034 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2678. 11:40:16.035 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
  2679. 11:40:16.036 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2680. 11:40:16.037 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2681. 11:40:16.039 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2682. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
  2683. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
  2684. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
  2685. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
  2686. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
  2687. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
  2688. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2689. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2690. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2691. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
  2692. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
  2693. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2694. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2695. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2696. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
  2697. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2698. 11:40:16.040 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2699. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2700. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
  2701. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2702. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2703. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
  2704. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 11:40:16 EEST 2025]
  2705. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2706. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2707. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
  2708. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
  2709. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
  2710. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
  2711. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2712. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
  2713. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
  2714. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
  2715. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
  2716. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
  2717. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2718. 11:40:16.041 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
  2719. 11:41:40.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2720. 11:46:40.062 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2721. 11:51:40.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2722. 11:54:21.785 [http-nio-8500-exec-83] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  2723. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  2724. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  2725. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  2726. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  2727. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  2728. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  2729. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  2730. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  2731. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  2732. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  2733. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  2734. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  2735. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2736. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2737. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2738. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2739. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2740. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2741. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2742. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2743. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2744. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2745. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2746. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2747. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2748. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2749. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2750. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2751. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2752. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2753. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2754. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2755. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2756. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2757. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2758. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2759. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2760. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2761. at java.lang.Thread.run(Unknown Source)
  2762. 11:54:21.786 [http-nio-8500-exec-83] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  2763. com.crm.rely.backend.exception.LoginException: invalid
  2764. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2765. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2766. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2767. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2768. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2769. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2770. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2771. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2772. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2773. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2774. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2775. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2776. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2777. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2778. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2779. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2780. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2781. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2782. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2783. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2784. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2785. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2786. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2787. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2788. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2789. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2790. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2791. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2792. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2793. at java.lang.Thread.run(Unknown Source)
  2794. 11:54:21.786 [http-nio-8500-exec-83] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  2795. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  2796. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  2797. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  2798. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  2799. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  2800. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  2801. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  2802. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  2803. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  2804. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  2805. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  2806. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  2807. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  2808. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  2809. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  2810. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  2811. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  2812. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  2813. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  2814. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  2815. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  2816. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  2817. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  2818. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  2819. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  2820. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  2821. at java.lang.Thread.run(Unknown Source)
  2822. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  2823. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  2824. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  2825. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  2826. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  2827. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  2828. ... 25 common frames omitted
  2829. 11:56:40.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2830. 11:59:27.681 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2831. 11:59:27.685 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2832. 11:59:27.685 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2833. 11:59:27.688 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2834. 11:59:27.688 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2835. 11:59:27.690 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2836. 11:59:27.691 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2837. 11:59:27.692 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2838. 11:59:27.693 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2839. 11:59:27.695 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2840. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2841. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2842. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2843. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2844. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2845. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2846. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2847. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2848. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2849. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2850. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2851. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2852. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2853. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2854. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2855. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2856. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2857. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2858. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2859. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2860. 11:59:27.696 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2861. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2862. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 11:59:27 EEST 2025]
  2863. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2864. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2865. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2866. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2867. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2868. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2869. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2870. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2871. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2872. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2873. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2874. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2875. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2876. 11:59:27.697 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2877. 11:59:40.290 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2878. 12:00:17.669 [http-nio-8500-exec-83] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2879. 12:01:08.274 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2880. 12:01:40.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2881. 12:06:40.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2882. 12:11:40.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2883. 12:12:54.558 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2884. 12:12:54.562 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2885. 12:12:54.562 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2886. 12:12:54.565 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2887. 12:12:54.566 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2888. 12:12:54.568 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2889. 12:12:54.569 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2890. 12:12:54.570 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2891. 12:12:54.572 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2892. 12:12:54.574 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2893. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2894. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2895. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2896. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2897. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2898. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2899. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2900. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2901. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2902. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2903. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2904. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2905. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2906. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2907. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2908. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2909. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2910. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2911. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2912. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2913. 12:12:54.575 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2914. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
  2915. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 12:12:54 EEST 2025]
  2916. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2917. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2918. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2919. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2920. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2921. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2922. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2923. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2924. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2925. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2926. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2927. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2928. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2929. 12:12:54.576 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2930. 12:13:34.039 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2931. 12:16:40.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2932. 12:21:40.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2933. 12:22:04.440 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2934. 12:22:04.442 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  2935. 12:26:40.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2936. 12:31:40.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2937. 12:36:40.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2938. 12:41:40.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2939. 12:46:40.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2940. 12:47:59.124 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
  2941. 12:47:59.127 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2942. 12:48:44.163 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  2943. 12:48:44.167 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  2944. 12:48:44.167 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2945. 12:48:44.169 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  2946. 12:48:44.170 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  2947. 12:48:44.171 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  2948. 12:48:44.172 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2949. 12:48:44.174 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  2950. 12:48:44.174 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  2951. 12:48:44.176 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  2952. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2953. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  2954. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2955. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2956. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2957. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2958. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2959. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  2960. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  2961. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  2962. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  2963. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  2964. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  2965. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  2966. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  2967. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  2968. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  2969. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2970. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  2971. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2972. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  2973. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [112.224.164.166]
  2974. 12:48:44.177 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 12:48:44 EEST 2025]
  2975. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2976. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  2977. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  2978. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  2979. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  2980. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  2981. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  2982. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  2983. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  2984. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  2985. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  2986. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  2987. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  2988. 12:48:44.178 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  2989. 12:48:53.487 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  2990. 12:51:40.081 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2991. 12:56:40.083 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2992. 13:01:40.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2993. 13:06:40.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2994. 13:11:40.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2995. 13:16:40.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2996. 13:21:40.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2997. 13:22:04.457 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  2998. 13:22:04.459 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  2999. 13:26:40.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3000. 13:31:40.093 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3001. 13:32:10.147 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3002. 13:32:10.149 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3003. 13:32:10.149 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3004. 13:32:10.151 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3005. 13:32:10.152 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3006. 13:32:10.153 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3007. 13:32:10.153 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3008. 13:32:10.155 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3009. 13:32:10.155 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3010. 13:32:10.156 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3011. 13:32:10.156 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3012. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3013. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3014. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3015. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3016. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3017. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3018. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3019. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3020. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3021. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3022. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3023. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3024. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3025. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3026. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3027. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3028. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3029. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3030. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3031. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3032. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3033. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 13:32:10 EEST 2025]
  3034. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3035. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3036. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3037. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3038. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3039. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3040. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3041. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3042. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3043. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3044. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3045. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3046. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3047. 13:32:10.157 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3048. 13:32:19.113 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3049. 13:36:40.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3050. 13:41:40.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3051. 13:46:40.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3052. 13:51:40.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3053. 13:56:40.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3054. 13:57:26.825 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3055. 13:57:26.829 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3056. 13:57:26.829 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3057. 13:57:26.832 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3058. 13:57:26.832 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3059. 13:57:26.834 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3060. 13:57:26.835 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3061. 13:57:26.836 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3062. 13:57:26.837 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3063. 13:57:26.838 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3064. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3065. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3066. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3067. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3068. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3069. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3070. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3071. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3072. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3073. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3074. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3075. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3076. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3077. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3078. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3079. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3080. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3081. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3082. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3083. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3084. 13:57:26.840 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3085. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3086. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 13:57:26 EEST 2025]
  3087. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3088. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3089. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3090. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3091. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3092. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3093. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3094. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3095. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3096. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3097. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3098. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3099. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3100. 13:57:26.841 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3101. 13:57:34.600 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3102. 14:01:40.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3103. 14:06:40.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3104. 14:07:04.103 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3105. 14:07:04.106 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3106. 14:07:04.106 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3107. 14:07:04.116 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3108. 14:07:04.117 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3109. 14:07:04.119 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3110. 14:07:04.120 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3111. 14:07:04.122 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3112. 14:07:04.122 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3113. 14:07:04.124 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3114. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3115. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3116. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3117. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3118. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3119. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3120. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3121. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3122. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3123. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3124. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3125. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3126. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3127. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3128. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3129. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3130. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3131. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3132. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3133. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3134. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3135. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3136. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 14:07:04 EEST 2025]
  3137. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3138. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3139. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3140. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3141. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3142. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3143. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3144. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3145. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3146. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3147. 14:07:04.125 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3148. 14:07:04.126 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3149. 14:07:04.126 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3150. 14:07:04.126 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3151. 14:07:40.568 [http-nio-8500-exec-65] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3152. 14:11:40.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3153. 14:16:40.106 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3154. 14:21:40.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3155. 14:22:04.467 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3156. 14:22:04.469 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3157. 14:24:51.209 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3158. 14:24:51.213 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3159. 14:24:51.213 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3160. 14:24:51.216 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3161. 14:24:51.217 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3162. 14:24:51.219 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3163. 14:24:51.220 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3164. 14:24:51.221 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3165. 14:24:51.223 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3166. 14:24:51.225 [http-nio-8500-exec-88] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3167. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3168. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3169. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3170. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3171. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3172. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3173. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3174. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3175. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3176. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3177. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3178. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3179. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3180. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3181. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3182. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3183. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3184. 14:24:51.226 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3185. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3186. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3187. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3188. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3189. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 14:24:51 EEST 2025]
  3190. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3191. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3192. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3193. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3194. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3195. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3196. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3197. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3198. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3199. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3200. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3201. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3202. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3203. 14:24:51.227 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3204. 14:25:04.291 [http-nio-8500-exec-74] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3205. 14:26:40.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3206. 14:31:40.112 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3207. 14:36:40.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3208. 14:41:40.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3209. 14:46:40.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3210. 14:51:40.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3211. 14:56:40.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3212. 15:01:40.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3213. 15:04:26.027 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3214. 15:04:26.029 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3215. 15:04:26.029 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3216. 15:04:26.031 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3217. 15:04:26.031 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3218. 15:04:26.033 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3219. 15:04:26.033 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3220. 15:04:26.034 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3221. 15:04:26.035 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3222. 15:04:26.036 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3223. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3224. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3225. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3226. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3227. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3228. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3229. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3230. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3231. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3232. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3233. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3234. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3235. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3236. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3237. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3238. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3239. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3240. 15:04:26.036 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3241. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3242. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3243. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3244. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3245. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 15:04:26 EEST 2025]
  3246. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3247. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3248. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3249. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3250. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3251. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3252. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3253. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3254. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3255. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3256. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3257. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3258. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3259. 15:04:26.037 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3260. 15:04:33.552 [http-nio-8500-exec-70] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3261. 15:06:40.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3262. 15:11:40.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3263. 15:16:40.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3264. 15:21:40.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3265. 15:22:04.477 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3266. 15:22:04.479 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3267. 15:26:40.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3268. 15:31:40.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3269. 15:36:40.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3270. 15:37:35.422 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3271. 15:37:35.426 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3272. 15:37:35.426 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3273. 15:37:35.429 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3274. 15:37:35.429 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3275. 15:37:35.431 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3276. 15:37:35.432 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3277. 15:37:35.434 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3278. 15:37:35.434 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3279. 15:37:35.436 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3280. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3281. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3282. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3283. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3284. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3285. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3286. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3287. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3288. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3289. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3290. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3291. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3292. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3293. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3294. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3295. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3296. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3297. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3298. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3299. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3300. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3301. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3302. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 15:37:35 EEST 2025]
  3303. 15:37:35.437 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3304. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3305. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3306. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3307. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3308. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3309. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3310. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3311. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3312. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3313. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3314. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3315. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3316. 15:37:35.438 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3317. 15:37:51.530 [http-nio-8500-exec-76] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3318. 15:41:40.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3319. 15:46:40.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3320. 15:51:40.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3321. 15:56:40.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3322. 16:01:40.139 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3323. 16:06:40.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3324. 16:07:45.802 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3325. 16:07:45.806 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3326. 16:07:45.806 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3327. 16:07:45.809 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3328. 16:07:45.810 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3329. 16:07:45.811 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3330. 16:07:45.812 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3331. 16:07:45.814 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3332. 16:07:45.814 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3333. 16:07:45.816 [http-nio-8500-exec-86] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3334. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3335. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3336. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3337. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3338. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3339. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3340. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3341. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3342. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3343. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3344. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3345. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3346. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3347. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3348. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3349. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3350. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3351. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3352. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3353. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3354. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3355. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3356. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 16:07:45 EEST 2025]
  3357. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3358. 16:07:45.817 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3359. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3360. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3361. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3362. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3363. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3364. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3365. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3366. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3367. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3368. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3369. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3370. 16:07:45.818 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3371. 16:11:40.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3372. 16:16:40.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3373. 16:21:40.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3374. 16:22:04.488 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3375. 16:22:04.490 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3376. 16:26:40.145 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3377. 16:30:21.908 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3378. 16:30:21.912 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3379. 16:30:21.912 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3380. 16:30:21.915 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3381. 16:30:21.916 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3382. 16:30:21.917 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3383. 16:30:21.918 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3384. 16:30:21.920 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3385. 16:30:21.920 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3386. 16:30:21.922 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3387. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3388. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3389. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3390. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3391. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3392. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3393. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3394. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3395. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3396. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3397. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3398. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3399. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3400. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3401. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3402. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3403. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3404. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3405. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3406. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3407. 16:30:21.923 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3408. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3409. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 16:30:21 EEST 2025]
  3410. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3411. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3412. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3413. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3414. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3415. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3416. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3417. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3418. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3419. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3420. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3421. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3422. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3423. 16:30:21.924 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3424. 16:30:28.011 [http-nio-8500-exec-87] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3425. 16:31:40.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3426. 16:36:40.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3427. 16:41:40.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3428. 16:46:40.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3429. 16:51:40.152 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3430. 16:56:40.154 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3431. 17:01:40.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3432. 17:06:40.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3433. 17:11:40.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3434. 17:16:40.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3435. 17:21:40.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3436. 17:22:04.497 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3437. 17:22:04.498 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3438. 17:26:40.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3439. 17:31:40.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3440. 17:36:40.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3441. 17:41:40.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3442. 17:46:40.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3443. 17:47:12.930 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.username=? and userinfota0_.password=? limit ?
  3444. 17:47:12.934 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  3445. 17:47:12.934 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3446. 17:47:12.936 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userroleta0_.id as id1_98_, userroleta0_.add_ip as add_ip2_98_, userroleta0_.add_time as add_time3_98_, userroleta0_.add_user as add_user4_98_, userroleta0_.modify_ip as modify_i5_98_, userroleta0_.modify_time as modify_t6_98_, userroleta0_.modify_user as modify_u7_98_, userroleta0_.note as note8_98_, userroleta0_.code as code9_98_, userroleta0_.content as content10_98_, userroleta0_.department_id as departm11_98_, userroleta0_.name as name12_98_, userroleta0_.number as number13_98_ from user_role userroleta0_ where userroleta0_.id=? limit ?
  3447. 17:47:12.937 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
  3448. 17:47:12.939 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select userdepart0_.id as id1_94_0_, userdepart0_.add_ip as add_ip2_94_0_, userdepart0_.add_time as add_time3_94_0_, userdepart0_.add_user as add_user4_94_0_, userdepart0_.modify_ip as modify_i5_94_0_, userdepart0_.modify_time as modify_t6_94_0_, userdepart0_.modify_user as modify_u7_94_0_, userdepart0_.note as note8_94_0_, userdepart0_.name as name9_94_0_, userdepart0_.role_number as role_nu10_94_0_, userdepart0_.sub_index as sub_ind11_94_0_ from user_department userdepart0_ where userdepart0_.id=?
  3449. 17:47:12.940 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  3450. 17:47:12.941 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - select usergroupt0_.id as id1_95_, usergroupt0_.en_name as en_name2_95_, usergroupt0_.name as name3_95_, usergroupt0_.value as value4_95_ from user_group usergroupt0_ where usergroupt0_.id=? limit ?
  3451. 17:47:12.942 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
  3452. 17:47:12.944 [http-nio-8500-exec-66] DEBUG org.hibernate.SQL - update user_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, agent_level=?, all_commission=?, balance=?, c_id=?, commission=?, commission_approval=?, custom_id=?, email=?, frozen=?, group_id=?, hide=?, ib_no=?, lang=?, last_address=?, last_ip=?, last_time=?, mt_five_account=?, mt_four_account=?, name=?, p_stamp=?, password=?, pid=?, point_id=?, role_id=?, sales_id=?, stamp=?, unresolved=?, username=?, valid=? where id=?
  3453. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  3454. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
  3455. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  3456. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3457. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3458. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3459. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3460. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
  3461. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
  3462. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
  3463. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
  3464. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
  3465. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  3466. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
  3467. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
  3468. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
  3469. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
  3470. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3471. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
  3472. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3473. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
  3474. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
  3475. 17:47:12.945 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Tue Jul 01 17:47:12 EEST 2025]
  3476. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  3477. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
  3478. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [茂竹]
  3479. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
  3480. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
  3481. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
  3482. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
  3483. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
  3484. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
  3485. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
  3486. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
  3487. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
  3488. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
  3489. 17:47:12.946 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
  3490. 17:47:24.225 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_35_, customgrou0_.add_ip as add_ip2_35_, customgrou0_.add_time as add_time3_35_, customgrou0_.add_user as add_user4_35_, customgrou0_.modify_ip as modify_i5_35_, customgrou0_.modify_time as modify_t6_35_, customgrou0_.modify_user as modify_u7_35_, customgrou0_.note as note8_35_, customgrou0_.en_name as en_name9_35_, customgrou0_.name as name10_35_ from custom_group_type customgrou0_ where customgrou0_.id is not null
  3491. 17:51:40.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3492. 17:56:40.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3493. 18:01:40.173 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3494. 18:06:40.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3495. 18:11:40.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3496. 18:16:43.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3497. 18:21:43.658 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3498. 18:22:07.985 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3499. 18:22:07.986 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3500. 18:26:43.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3501. 18:31:43.661 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3502. 18:36:43.663 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3503. 18:41:43.665 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3504. 18:46:43.666 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3505. 18:51:43.667 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3506. 18:56:43.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3507. 19:01:43.670 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3508. 19:06:43.672 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3509. 19:11:43.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3510. 19:16:43.674 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3511. 19:21:43.676 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3512. 19:22:08.000 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3513. 19:22:08.001 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3514. 19:26:43.678 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3515. 19:31:43.679 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3516. 19:36:43.680 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3517. 19:41:43.682 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3518. 19:46:43.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3519. 19:51:43.685 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3520. 19:56:43.686 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3521. 20:01:43.688 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3522. 20:06:43.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3523. 20:11:43.691 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3524. 20:16:43.693 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3525. 20:21:43.694 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3526. 20:22:08.015 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3527. 20:22:08.016 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3528. 20:26:43.695 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3529. 20:31:43.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3530. 20:36:43.699 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3531. 20:41:43.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3532. 20:46:43.701 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3533. 20:51:43.703 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3534. 20:56:43.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3535. 21:01:43.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3536. 21:06:43.708 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3537. 21:11:43.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3538. 21:16:43.711 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3539. 21:21:43.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3540. 21:22:08.028 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3541. 21:22:08.029 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3542. 21:26:43.714 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3543. 21:31:43.716 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3544. 21:36:43.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3545. 21:41:43.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3546. 21:46:43.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3547. 21:51:43.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3548. 21:56:43.723 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3549. 22:01:43.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3550. 22:06:43.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3551. 22:11:43.728 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3552. 22:16:43.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3553. 22:21:43.731 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3554. 22:22:08.040 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3555. 22:22:08.041 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3556. 22:26:43.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3557. 22:31:43.735 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3558. 22:36:43.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3559. 22:41:43.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3560. 22:46:43.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3561. 22:51:43.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3562. 22:56:43.742 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3563. 23:01:43.743 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3564. 23:06:43.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3565. 23:11:43.745 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3566. 23:16:43.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3567. 23:18:56.707 [http-nio-8500-exec-86] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3568. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3569. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3570. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3571. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3572. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3573. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3574. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3575. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3576. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3577. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3578. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3579. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3580. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3581. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3582. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3583. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3584. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3585. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3586. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3587. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3588. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3589. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3590. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3591. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3592. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3593. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3594. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3595. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3596. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3597. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3598. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3599. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3600. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3601. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3602. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3603. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3604. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3605. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3606. at java.lang.Thread.run(Unknown Source)
  3607. 23:18:56.708 [http-nio-8500-exec-86] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3608. com.crm.rely.backend.exception.LoginException: invalid
  3609. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3610. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3611. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3612. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3613. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3614. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3615. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3616. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3617. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3618. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3619. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3620. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3621. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3622. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3623. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3624. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3625. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3626. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3627. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3628. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3629. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3630. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3631. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3632. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3633. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3634. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3635. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3636. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3637. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3638. at java.lang.Thread.run(Unknown Source)
  3639. 23:18:56.708 [http-nio-8500-exec-86] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3640. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3641. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3642. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3643. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3644. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3645. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3646. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3647. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3648. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3649. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3650. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3651. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3652. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3653. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3654. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3655. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3656. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3657. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3658. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3659. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3660. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3661. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3662. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3663. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3664. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3665. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3666. at java.lang.Thread.run(Unknown Source)
  3667. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3668. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3669. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3670. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3671. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3672. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3673. ... 25 common frames omitted
  3674. 23:18:56.873 [http-nio-8500-exec-87] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3675. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3676. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3677. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3678. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3679. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3680. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3681. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3682. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3683. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3684. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3685. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3686. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3687. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3688. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3689. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3690. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3691. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3692. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3693. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3694. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3695. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3696. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3697. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3698. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3699. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3700. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3701. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3702. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3703. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3704. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3705. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3706. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3707. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3708. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3709. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3710. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3711. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3712. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3713. at java.lang.Thread.run(Unknown Source)
  3714. 23:18:56.874 [http-nio-8500-exec-87] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3715. com.crm.rely.backend.exception.LoginException: invalid
  3716. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3717. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3718. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3719. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3720. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3721. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3722. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3723. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3724. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3725. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3726. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3727. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3728. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3729. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3730. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3731. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3732. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3733. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3734. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3735. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3736. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3737. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3738. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3739. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3740. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3741. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3742. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3743. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3744. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3745. at java.lang.Thread.run(Unknown Source)
  3746. 23:18:56.874 [http-nio-8500-exec-87] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3747. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3748. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3749. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3750. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3751. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3752. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3753. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3754. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3755. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3756. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3757. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3758. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3759. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3760. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3761. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3762. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3763. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3764. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3765. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3766. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3767. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3768. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3769. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3770. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3771. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3772. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3773. at java.lang.Thread.run(Unknown Source)
  3774. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3775. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3776. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3777. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3778. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3779. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3780. ... 25 common frames omitted
  3781. 23:18:58.699 [http-nio-8500-exec-70] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  3782. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  3783. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
  3784. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  3785. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  3786. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  3787. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  3788. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  3789. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  3790. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  3791. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  3792. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  3793. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  3794. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3795. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3796. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3797. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3798. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3799. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3800. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3801. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3802. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3803. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3804. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3805. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3806. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3807. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3808. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3809. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3810. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3811. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3812. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3813. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3814. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3815. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3816. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3817. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3818. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3819. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3820. at java.lang.Thread.run(Unknown Source)
  3821. 23:18:58.700 [http-nio-8500-exec-70] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  3822. com.crm.rely.backend.exception.LoginException: invalid
  3823. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3824. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3825. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3826. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3827. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3828. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3829. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3830. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3831. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3832. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3833. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3834. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3835. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3836. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3837. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3838. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3839. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3840. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3841. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3842. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3843. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3844. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3845. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3846. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3847. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3848. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3849. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3850. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3851. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3852. at java.lang.Thread.run(Unknown Source)
  3853. 23:18:58.700 [http-nio-8500-exec-70] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  3854. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
  3855. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  3856. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  3857. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  3858. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  3859. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  3860. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  3861. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  3862. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  3863. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  3864. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  3865. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  3866. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  3867. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  3868. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  3869. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  3870. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  3871. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  3872. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  3873. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  3874. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  3875. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  3876. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  3877. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  3878. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  3879. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  3880. at java.lang.Thread.run(Unknown Source)
  3881. Caused by: com.crm.rely.backend.exception.LoginException: invalid
  3882. at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
  3883. at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
  3884. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
  3885. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  3886. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  3887. ... 25 common frames omitted
  3888. 23:21:43.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3889. 23:22:08.062 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
  3890. 23:22:08.063 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Mon Jun 30 00:00:00 EEST 2025]
  3891. 23:26:43.749 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3892. 23:31:43.750 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3893. 23:36:43.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3894. 23:41:43.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3895. 23:46:43.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3896. 23:51:43.757 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3897. 23:56:43.758 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration