| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259 |
- 00:01:51.690 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:06:51.692 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:11:51.694 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:16:51.696 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:21:51.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:22:16.105 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 00:22:16.107 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 00:22:16.274 [scheduled-thread-4] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 00:22:16.274 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
- 00:22:16.274 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Jul 04 00:22:16 EEST 2025]
- 00:22:16.274 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
- 00:22:16.274 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [6271.1111111111]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [500.0000000000]
- 00:22:16.275 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [166.0000000000]
- 00:26:51.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:31:51.701 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:36:01.614 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 00:36:51.703 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:41:51.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:46:51.707 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:51:51.708 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:56:51.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:01:51.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:06:51.713 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:11:51.714 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:16:51.716 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:20:09.175 [http-nio-8500-exec-74] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 01:21:51.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:22:16.283 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 01:22:16.285 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 01:23:59.276 [http-nio-8500-exec-88] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 01:26:51.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:31:51.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:36:51.723 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:41:51.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:46:51.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:51:51.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:55:03.636 [http-nio-8500-exec-74] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 01:56:51.728 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:01:51.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:06:51.731 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:11:51.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:16:51.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:21:51.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:22:16.292 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 02:22:16.293 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 02:26:51.738 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:31:51.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:36:51.741 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:41:51.743 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:46:51.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:51:51.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:56:51.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:01:51.750 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:03:56.464 [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 ?
- 03:03:56.468 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [tomatosc1220@163.com]
- 03:03:56.468 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
- 03:03:56.471 [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 ?
- 03:03:56.471 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:03:56.473 [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=?
- 03:03:56.474 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:03:56.475 [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 ?
- 03:03:56.476 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:03:56.477 [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=?
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.44]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-09-11 05:50:33.0]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:01.0]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500440]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [tomatosc1220@163.com]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:03:56.479 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [10]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:03:56 EEST 2025]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ʯ¶«]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20128]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C07]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [tomatosc1220@163.com]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:03:56.480 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20128]
- 03:06:51.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:08:21.769 [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 ?
- 03:08:21.771 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1135944185@qq.com]
- 03:08:21.771 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
- 03:08:21.772 [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 ?
- 03:08:21.772 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:08:21.774 [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=?
- 03:08:21.774 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:08:21.775 [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 ?
- 03:08:21.775 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:08:21.777 [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=?
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:45.0]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:52:21.0]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500016]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1135944185@qq.com]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [04]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:08:21 EEST 2025]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [µ¤]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3d22f3412a3c8f7484765594a86d1ba]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20098]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C04]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1135944185@qq.com]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:08:21.777 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20098]
- 03:11:51.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:16:51.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:21:51.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:22:16.301 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 03:22:16.303 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 03:26:51.756 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:31:03.121 [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 ?
- 03:31:03.123 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 03:31:03.123 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 03:31:03.124 [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 ?
- 03:31:03.125 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:31:03.126 [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=?
- 03:31:03.127 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:31:03.128 [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 ?
- 03:31:03.128 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:31:03.129 [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=?
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:31:03 EEST 2025]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:31:03.130 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 03:31:15.722 [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
- 03:31:51.757 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:32:16.781 [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 ?
- 03:32:16.785 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
- 03:32:16.785 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:32:16.788 [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 ?
- 03:32:16.789 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:32:16.790 [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=?
- 03:32:16.791 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:32:16.793 [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 ?
- 03:32:16.794 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:32:16.795 [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=?
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:32:16.796 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:32:16 EEST 2025]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÍõÀ×]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:32:16.797 [http-nio-8500-exec-88] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
- 03:36:51.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:39:17.602 [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 ?
- 03:39:17.606 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [942228819@qq.com]
- 03:39:17.606 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 03:39:17.609 [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 ?
- 03:39:17.610 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:39:17.612 [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=?
- 03:39:17.613 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:39:17.615 [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 ?
- 03:39:17.617 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:39:17.619 [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=?
- 03:39:17.619 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.134.219]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-12 09:38:12.0]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.134.219]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-12 09:38:48.0]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500803]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [942228819@qq.com]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [2111]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:39:17 EEST 2025]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÕÅ]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020B]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20141]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20147]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B02]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [942228819@qq.com]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:39:17.620 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20147]
- 03:41:51.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:42:31.493 [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 ?
- 03:42:31.496 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
- 03:42:31.497 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
- 03:42:31.499 [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 ?
- 03:42:31.500 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:42:31.502 [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=?
- 03:42:31.503 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:42:31.504 [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 ?
- 03:42:31.507 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:42:31.508 [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=?
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:42:31.509 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:42:31 EEST 2025]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:42:31.510 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
- 03:42:37.449 [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
- 03:46:51.762 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:47:07.625 [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 ?
- 03:47:07.629 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [kin-maker@outlook.com]
- 03:47:07.629 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
- 03:47:07.632 [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 ?
- 03:47:07.633 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:47:07.634 [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=?
- 03:47:07.635 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:47:07.637 [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 ?
- 03:47:07.637 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:47:07.639 [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=?
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-21 02:54:40.0]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.45.178.237]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-20 11:28:44.0]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500713]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [kin-maker@outlook.com]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [22]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 03:47:07.640 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 03:47:07 EEST 2025]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [KIN]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [429485f3d98f13f40b8dde71d8c5ba98]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20141]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [kin-maker@outlook.com]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:47:07.641 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20141]
- 03:48:10.786 [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
- 03:51:51.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:54:27.970 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 03:56:51.765 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:57:14.690 [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
- 03:58:00.292 [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
- 03:59:38.577 [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
- 04:01:51.766 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:06:51.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:10:45.801 [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 ?
- 04:10:45.803 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
- 04:10:45.803 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:10:45.806 [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 ?
- 04:10:45.806 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 04:10:45.807 [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=?
- 04:10:45.807 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 04:10:45.808 [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 ?
- 04:10:45.808 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:10:45.810 [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=?
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 04:10:45 EEST 2025]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:10:45.810 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 04:11:51.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:15:22.510 [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
- org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
- at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
- at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
- at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
- at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
- at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
- at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
- at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
- at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 04:15:22.510 [http-nio-8500-exec-86] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
- com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 04:15:22.511 [http-nio-8500-exec-86] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
- org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- Caused by: com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- ... 25 common frames omitted
- 04:16:51.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:19:07.308 [http-nio-8500-exec-70] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 04:21:51.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:22:16.313 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 04:22:16.315 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 04:26:51.773 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:27:16.679 [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 ?
- 04:27:16.683 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 04:27:16.683 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 04:27:16.686 [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 ?
- 04:27:16.687 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 04:27:16.688 [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=?
- 04:27:16.689 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 04:27:16.691 [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 ?
- 04:27:16.692 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:27:16.693 [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=?
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:27:16.694 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 04:27:16 EEST 2025]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:27:16.695 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 04:27:25.691 [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
- 04:31:51.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:32:08.893 [http-nio-8500-exec-74] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 04:34:52.378 [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 ?
- 04:34:52.380 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
- 04:34:52.380 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:34:52.382 [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 ?
- 04:34:52.382 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 04:34:52.383 [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=?
- 04:34:52.384 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 04:34:52.385 [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 ?
- 04:34:52.385 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:34:52.386 [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=?
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 04:34:52 EEST 2025]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÍõÀ×]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:34:52.387 [http-nio-8500-exec-86] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
- 04:36:22.469 [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 ?
- 04:36:22.473 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
- 04:36:22.473 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:36:22.476 [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 ?
- 04:36:22.476 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 04:36:22.478 [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=?
- 04:36:22.479 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 04:36:22.480 [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 ?
- 04:36:22.481 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:36:22.482 [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=?
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [164.88.198.162]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:35:11.0]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [13.112.212.88]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-19 09:36:45.0]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500313]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [276929625@qq.com]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0125]
- 04:36:22.484 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 04:36:22 EEST 2025]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÍõÀ×]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20117]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010207]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [276929625@qq.com]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:36:22.485 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20117]
- 04:36:51.776 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:39:08.252 [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
- 04:41:51.778 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:46:51.780 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:51:51.781 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:56:51.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:01:51.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:06:51.786 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:11:51.787 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:12:07.043 [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_.id in (?)
- 05:12:07.046 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20146]
- 05:12:07.069 [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 in (?) for update
- 05:12:07.071 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 05:12:07.073 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - update user_role set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, code=?, content=?, department_id=?, name=?, number=? where id=?
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 06:57:44.0]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Jul 04 05:12:07 EEST 2025]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [ROLE_SALE]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [1]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [ÏúÊÛ]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
- 05:12:07.073 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1032]
- 05:12:07.074 [http-nio-8500-exec-72] DEBUG org.hibernate.SQL - delete from user_info where id=?
- 05:12:07.074 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20146]
- 05:16:51.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:21:51.791 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:22:16.325 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 05:22:16.327 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 05:24:07.810 [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
- 05:26:51.793 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:31:51.794 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:36:51.796 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:41:51.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:46:51.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:51:51.801 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:56:51.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:01:51.804 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:06:51.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:08:44.320 [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 ?
- 06:08:44.324 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2596621599@qq.com]
- 06:08:44.324 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [5611e350cf89977f193daf936b178d21]
- 06:08:44.326 [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 ?
- 06:08:44.327 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 06:08:44.329 [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=?
- 06:08:44.329 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:08:44.331 [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 ?
- 06:08:44.331 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 06:08:44.333 [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=?
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:29:53.0]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.136.1.157]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-12-13 04:02:46.0]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500019]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [2596621599@qq.com]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 06:08:44.335 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [07]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.254.80]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 06:08:44 EEST 2025]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [Ç¿]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [5611e350cf89977f193daf936b178d21]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20101]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020D]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [2596621599@qq.com]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 06:08:44.336 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20101]
- 06:11:51.807 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:12:47.489 [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
- 06:16:51.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:21:51.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:22:16.335 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 06:22:16.337 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 06:26:51.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:31:51.813 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:34:28.421 [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 ?
- 06:34:28.425 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 06:34:28.425 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 06:34:28.428 [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 ?
- 06:34:28.429 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 06:34:28.430 [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=?
- 06:34:28.431 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:34:28.433 [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 ?
- 06:34:28.433 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 06:34:28.435 [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=?
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 06:34:28.436 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 06:34:28 EEST 2025]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 06:34:28.437 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 06:34:37.693 [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
- 06:36:51.814 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:41:51.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:46:51.817 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:51:51.819 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:56:51.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:01:51.822 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:04:07.985 [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 ?
- 07:04:07.988 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [942228819@qq.com]
- 07:04:07.989 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 07:04:07.991 [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 ?
- 07:04:07.992 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 07:04:07.993 [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=?
- 07:04:07.994 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 07:04:07.996 [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 ?
- 07:04:07.996 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 07:04:07.998 [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=?
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.134.219]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-12 09:38:12.0]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.134.219]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-12 09:38:48.0]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500803]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [942228819@qq.com]
- 07:04:07.999 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [2111]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 07:04:07 EEST 2025]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÕÅ]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020B]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20141]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20147]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B02]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [942228819@qq.com]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 07:04:08.000 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20147]
- 07:05:00.107 [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
- 07:05:12.943 [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
- 07:05:17.794 [http-nio-8500-exec-87] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 07:06:51.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:08:09.026 [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 ?
- 07:08:09.028 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15230358136@163.com]
- 07:08:09.028 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 07:08:09.030 [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 ?
- 07:08:09.030 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 07:08:09.031 [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=?
- 07:08:09.032 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 07:08:09.033 [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 ?
- 07:08:09.033 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 07:08:09.034 [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=?
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.250]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-10-24 05:20:08.0]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:13.0]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500466]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [15230358136@163.com]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [11]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 07:08:09 EEST 2025]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [´ºÁÁ]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20130]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C01]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [15230358136@163.com]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 07:08:09.035 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20130]
- 07:08:14.450 [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
- 07:09:24.248 [http-nio-8500-exec-76] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 07:11:51.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:12:09.383 [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 ?
- 07:12:09.384 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 07:12:09.385 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 07:12:09.387 [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 ?
- 07:12:09.387 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 07:12:09.388 [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=?
- 07:12:09.389 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 07:12:09.390 [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 ?
- 07:12:09.390 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 07:12:09.391 [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=?
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 07:12:09 EEST 2025]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 07:12:09.392 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 07:12:14.640 [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
- 07:12:56.306 [http-nio-8500-exec-88] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 07:16:51.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:21:51.827 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:22:16.346 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 07:22:16.348 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 07:26:51.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:31:51.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:36:51.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:41:51.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:46:51.835 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:51:51.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:54:57.501 [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 ?
- 07:54:57.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
- 07:54:57.503 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
- 07:54:57.505 [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 ?
- 07:54:57.505 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 07:54:57.507 [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=?
- 07:54:57.507 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 07:54:57.509 [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 ?
- 07:54:57.509 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 07:54:57.510 [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=?
- 07:54:57.510 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
- 07:54:57.510 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
- 07:54:57.510 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 07:54:57.510 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 07:54:57 EEST 2025]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [³¿Ñô]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 07:54:57.511 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
- 07:55:02.190 [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
- 07:56:51.838 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:01:51.838 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:03:09.410 [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 ?
- 08:03:09.414 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 08:03:09.414 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 08:03:09.417 [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 ?
- 08:03:09.418 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 08:03:09.419 [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=?
- 08:03:09.420 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:03:09.422 [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 ?
- 08:03:09.422 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:03:09.424 [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=?
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:03:09.425 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 08:03:09 EEST 2025]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:03:09.426 [http-nio-8500-exec-72] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 08:03:24.438 [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
- 08:03:40.542 [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 ?
- 08:03:40.546 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mactor2020@126.com]
- 08:03:40.546 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:03:40.548 [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 ?
- 08:03:40.549 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 08:03:40.551 [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=?
- 08:03:40.552 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 08:03:40.554 [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 ?
- 08:03:40.556 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:03:40.557 [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=?
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.154.206]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-22 08:34:42.0]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:03:40.558 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mactor2020@126.com]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 08:03:40 EEST 2025]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mactor2020@126.com]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:03:40.559 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 08:06:51.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:11:51.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:16:51.842 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:21:51.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:22:16.357 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 08:22:16.359 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 08:26:51.846 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:31:51.847 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:36:51.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:41:51.850 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:46:51.851 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:51:42.156 [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 ?
- 08:51:42.160 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [547696919@qq.com]
- 08:51:42.160 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
- 08:51:42.163 [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 ?
- 08:51:42.164 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 08:51:42.165 [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=?
- 08:51:42.166 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:51:42.168 [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 ?
- 08:51:42.168 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:51:42.170 [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=?
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:26:00.0]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:51:46.0]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500015]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [547696919@qq.com]
- 08:51:42.171 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [03]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 08:51:42 EEST 2025]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [éª]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [d5156bc75ee4f0e3d7b98dfa8a1839d2]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20091]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20097]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [547696919@qq.com]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:51:42.172 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20097]
- 08:51:50.447 [http-nio-8500-exec-66] 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
- 08:51:51.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:56:51.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:01:51.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:06:51.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:11:51.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:14:19.162 [http-nio-8500-exec-76] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 09:16:51.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:21:51.862 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:22:08.314 [http-nio-8500-exec-87] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 09:22:16.368 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 09:22:16.370 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 09:26:51.863 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:31:51.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:36:51.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:41:51.868 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:44:43.293 [http-nio-8500-exec-65] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 09:45:58.423 [http-nio-8500-exec-66] 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
- 09:46:51.870 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:50:11.352 [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 ?
- 09:50:11.356 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [m18518922628@163.com]
- 09:50:11.356 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
- 09:50:11.359 [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 ?
- 09:50:11.360 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 09:50:11.361 [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=?
- 09:50:11.362 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 09:50:11.364 [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 ?
- 09:50:11.365 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 09:50:11.366 [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=?
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.200]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-05 08:31:10.0]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [123.168.100.169]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-01-12 11:20:28.0]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500301]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 09:50:11.367 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [m18518922628@163.com]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0124]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 09:50:11 EEST 2025]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [³¿Ñô]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020701]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [7fc643d91dc0b10fb2dba0282bf8104f]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20114]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20116]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102070102]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [m18518922628@163.com]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 09:50:11.368 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20116]
- 09:50:16.117 [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
- 09:51:51.872 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:56:51.873 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:01:51.875 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:06:51.876 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:08:22.310 [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
- org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
- at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:259)
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
- at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
- at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
- at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
- at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
- at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
- at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
- at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 10:08:22.310 [http-nio-8500-exec-70] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
- com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 10:08:22.311 [http-nio-8500-exec-70] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
- org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- Caused by: com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- ... 25 common frames omitted
- 10:11:14.040 [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 ?
- 10:11:14.044 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 10:11:14.044 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 10:11:14.047 [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 ?
- 10:11:14.048 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 10:11:14.049 [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=?
- 10:11:14.050 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 10:11:14.052 [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 ?
- 10:11:14.052 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 10:11:14.054 [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=?
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 10:11:14.055 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 10:11:14 EEST 2025]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 10:11:14.056 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 10:11:20.878 [http-nio-8500-exec-66] 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
- 10:11:51.877 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:16:51.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:21:51.880 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:22:16.379 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 10:22:16.381 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 10:26:51.882 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:31:51.884 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:36:51.885 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:41:51.887 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:46:51.888 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:51:51.890 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:56:51.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:01:51.894 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:02:14.692 [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 ?
- 11:02:14.696 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [tomatosc1220@163.com]
- 11:02:14.696 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
- 11:02:14.699 [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 ?
- 11:02:14.700 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 11:02:14.701 [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=?
- 11:02:14.702 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 11:02:14.704 [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 ?
- 11:02:14.704 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 11:02:14.706 [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=?
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.44]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-09-11 05:50:33.0]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:01.0]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500440]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [tomatosc1220@163.com]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [10]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 11:02:14.707 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [117.131.230.158]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 11:02:14 EEST 2025]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ʯ¶«]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20128]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C07]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [tomatosc1220@163.com]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 11:02:14.708 [http-nio-8500-exec-83] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20128]
- 11:05:17.054 [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
- 11:06:51.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:11:51.897 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:16:51.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:21:51.900 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:22:16.392 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 11:22:16.393 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 11:26:51.902 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:31:51.903 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:36:51.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:41:51.906 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:46:51.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:48:20.497 [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
- 11:51:51.909 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:56:51.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:01:51.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:03:09.639 [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 ?
- 12:03:09.641 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 12:03:09.641 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 12:03:09.643 [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 ?
- 12:03:09.643 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 12:03:09.644 [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=?
- 12:03:09.645 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 12:03:09.646 [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 ?
- 12:03:09.646 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 12:03:09.647 [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=?
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.124.47.211]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 12:03:09 EEST 2025]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 12:03:09.648 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 12:03:14.439 [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
- 12:04:32.667 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 12:06:51.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:11:51.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:16:51.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:21:21.077 [http-nio-8500-exec-65] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 12:21:51.919 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:22:16.399 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 12:22:16.400 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 12:23:08.169 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 12:24:27.185 [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 ?
- 12:24:27.186 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15230358136@163.com]
- 12:24:27.186 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 12:24:27.189 [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 ?
- 12:24:27.189 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 12:24:27.190 [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=?
- 12:24:27.191 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 12:24:27.192 [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 ?
- 12:24:27.192 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 12:24:27.193 [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=?
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.250]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-10-24 05:20:08.0]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:13.0]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500466]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [15230358136@163.com]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [11]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [27.36.135.254]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 12:24:27 EEST 2025]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [´ºÁÁ]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20130]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C01]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [15230358136@163.com]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 12:24:27.194 [http-nio-8500-exec-70] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20130]
- 12:24:32.672 [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
- 12:26:51.921 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:31:51.922 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:36:51.924 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:41:51.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:46:51.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:51:51.927 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:56:51.929 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:00:51.171 [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 ?
- 13:00:51.173 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 13:00:51.173 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 13:00:51.175 [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 ?
- 13:00:51.175 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 13:00:51.176 [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=?
- 13:00:51.177 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 13:00:51.178 [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 ?
- 13:00:51.178 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 13:00:51.179 [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=?
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 13:00:51 EEST 2025]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 13:00:51.180 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 13:00:58.312 [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
- 13:01:51.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:06:51.932 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:11:51.933 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:16:51.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:21:51.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:22:16.408 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 13:22:16.409 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 13:26:14.554 [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
- 13:26:51.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:31:51.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:36:51.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:41:51.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:46:51.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:51:51.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:56:51.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:01:51.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:06:51.949 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:11:51.951 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:12:42.889 [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 ?
- 14:12:42.893 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 14:12:42.893 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 14:12:42.895 [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 ?
- 14:12:42.896 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 14:12:42.898 [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=?
- 14:12:42.898 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 14:12:42.899 [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 ?
- 14:12:42.900 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 14:12:42.901 [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=?
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [112.224.156.86]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 14:12:42 EEST 2025]
- 14:12:42.901 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 14:12:42.902 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 14:12:49.342 [http-nio-8500-exec-66] 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
- 14:16:51.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:21:51.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:22:16.416 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 14:22:16.418 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 14:26:51.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:30:23.613 [http-nio-8500-exec-65] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 14:31:51.957 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:36:51.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:41:51.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:44:15.133 [http-nio-8500-exec-65] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 14:46:51.962 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:47:19.469 [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
- 14:51:51.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:56:43.674 [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
- 14:56:51.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:58:08.290 [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
- 15:01:51.966 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:06:51.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:06:57.807 [http-nio-8500-exec-83] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 15:11:51.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:13:29.120 [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 ?
- 15:13:29.122 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 15:13:29.122 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 15:13:29.124 [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 ?
- 15:13:29.124 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 15:13:29.126 [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=?
- 15:13:29.126 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 15:13:29.127 [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 ?
- 15:13:29.128 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 15:13:29.129 [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=?
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
- 15:13:29.129 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 15:13:29 EEST 2025]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 15:13:29.130 [http-nio-8500-exec-87] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 15:13:35.982 [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
- 15:16:51.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:21:51.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:22:16.428 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 15:22:16.430 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 15:26:51.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:31:51.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:36:51.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:39:30.214 [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 ?
- 15:39:30.216 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [942228819@qq.com]
- 15:39:30.216 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 15:39:30.218 [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 ?
- 15:39:30.219 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 15:39:30.220 [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=?
- 15:39:30.221 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 15:39:30.222 [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 ?
- 15:39:30.222 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 15:39:30.223 [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=?
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.36.134.219]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-05-12 09:38:12.0]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.36.134.219]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2025-05-12 09:38:48.0]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500803]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [942228819@qq.com]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [2111]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.76.54]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 15:39:30 EEST 2025]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ÕÅ]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020B]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20141]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20147]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020B02]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [942228819@qq.com]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 15:39:30.224 [http-nio-8500-exec-76] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20147]
- 15:41:51.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:46:51.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:51:51.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:56:51.984 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:01:51.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:06:51.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:11:51.987 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:16:51.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:21:51.990 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:22:16.445 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 16:22:16.446 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 16:26:51.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:31:51.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:36:51.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:41:51.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:43:37.314 [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 ?
- 16:43:37.316 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 16:43:37.316 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 16:43:37.318 [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 ?
- 16:43:37.319 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 16:43:37.320 [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=?
- 16:43:37.320 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 16:43:37.322 [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 ?
- 16:43:37.322 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 16:43:37.323 [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=?
- 16:43:37.323 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 16:43:37 EEST 2025]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 16:43:37.324 [http-nio-8500-exec-66] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 16:43:56.497 [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
- 16:46:51.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:51:51.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:56:52.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:01:52.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:06:52.004 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:11:34.535 [http-nio-8500-exec-87] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 17:11:52.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:15:07.225 [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 ?
- 17:15:07.227 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
- 17:15:07.227 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 17:15:07.229 [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 ?
- 17:15:07.229 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 17:15:07.230 [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=?
- 17:15:07.231 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 17:15:07.232 [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 ?
- 17:15:07.232 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 17:15:07.233 [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=?
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-13 06:16:10.0]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500654]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [575288066@qq.com]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [0130]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [223.104.194.126]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 17:15:07 EEST 2025]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [ïÖñ]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [010207]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [39a9d01af60d5c6dcd94b61f0f2e086d]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20117]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20138]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020703]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [575288066@qq.com]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 17:15:07.234 [http-nio-8500-exec-74] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20138]
- 17:15:13.318 [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
- 17:16:52.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:21:52.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:22:16.454 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 17:22:16.456 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 17:26:52.009 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:31:52.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:33:35.314 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 17:36:52.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:41:52.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:42:03.189 [http-nio-8500-exec-83] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 17:46:52.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:51:52.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:56:52.016 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:01:52.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:06:52.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:09:24.787 [http-nio-8500-exec-66] 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
- 18:11:52.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:16:55.492 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:21:55.494 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:22:19.935 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 18:22:19.937 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 18:26:55.494 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:31:55.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:36:55.497 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:41:55.498 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:44:58.365 [http-nio-8500-exec-88] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 18:46:55.499 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:51:55.500 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:56:55.501 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:01:55.503 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:06:55.504 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:11:55.506 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:16:55.507 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:21:55.508 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:22:19.946 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 19:22:19.948 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 19:26:55.510 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:31:55.512 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:36:55.513 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:41:55.515 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:46:55.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:51:55.517 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:56:55.518 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:01:31.228 [http-nio-8500-exec-76] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 20:01:55.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:04:37.399 [http-nio-8500-exec-70] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 20:06:55.521 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:11:55.522 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:13:46.596 [http-nio-8500-exec-76] 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
- org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
- at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
- at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
- at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
- at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
- at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
- at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
- at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
- at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 20:13:46.597 [http-nio-8500-exec-76] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
- com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 20:13:46.597 [http-nio-8500-exec-76] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
- org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.LoginException: invalid
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- Caused by: com.crm.rely.backend.exception.LoginException: invalid
- at com.crm.manager.interceptor.RoleInterceptor.preHandle(RoleInterceptor.java:55)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:133)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:962)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- ... 25 common frames omitted
- 20:16:55.524 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:21:55.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:22:19.960 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 20:22:19.960 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 20:23:01.067 [http-nio-8500-exec-88] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 20:26:55.527 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:31:55.528 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:36:55.530 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:41:55.532 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:46:55.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:51:55.535 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:56:55.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:01:55.538 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:06:55.539 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:11:55.541 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:16:55.542 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:20:44.444 [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 ?
- 21:20:44.445 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15230358136@163.com]
- 21:20:44.445 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 21:20:44.446 [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 ?
- 21:20:44.447 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 21:20:44.448 [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=?
- 21:20:44.448 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 21:20:44.449 [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 ?
- 21:20:44.450 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 21:20:44.451 [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=?
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.250]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-10-24 05:20:08.0]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2024-11-21 03:53:13.0]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500466]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [15230358136@163.com]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [11]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - []
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [113.72.19.189]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Fri Jul 04 21:20:44 EEST 2025]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [´ºÁÁ]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01020C]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [fd9d75319dce3ed415d45cff1ade11fb]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20097]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20130]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [01020C01]
- 21:20:44.451 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 21:20:44.452 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [15230358136@163.com]
- 21:20:44.452 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 21:20:44.452 [http-nio-8500-exec-65] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20130]
- 21:20:50.637 [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
- 21:21:55.543 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:22:19.969 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 21:22:19.971 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 21:26:55.544 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:31:55.546 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:36:55.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:41:55.549 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:46:55.550 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:51:55.552 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:56:55.553 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:01:55.555 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:06:55.557 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:11:55.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:16:55.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:21:55.561 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:22:19.985 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 22:22:19.987 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 22:26:55.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:30:55.063 [http-nio-8500-exec-88] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 22:31:17.419 [http-nio-8500-exec-87] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 22:31:55.563 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:36:55.564 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:41:55.566 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:46:55.567 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:47:56.191 [http-nio-8500-exec-86] WARN o.s.web.servlet.PageNotFound - Request method 'PROPFIND' not supported
- 22:51:55.568 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:56:55.570 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:01:55.572 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:06:55.574 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:11:55.575 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:16:55.576 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:21:55.577 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:22:20.002 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 23:22:20.004 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Thu Jul 03 00:00:00 EEST 2025]
- 23:26:55.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:31:55.580 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:36:55.581 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:41:55.583 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:46:55.584 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:51:55.586 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:56:55.587 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
|