| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787 |
- 00:03:14.650 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:08:14.667 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:13:14.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:18:14.711 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:23:14.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:28:14.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:33:14.767 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:38:14.795 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:43:14.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:48:03.369 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 00:48:03.369 [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:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [127.0.0.1]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon Jul 18 00:48:03 WEST 2022]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [-1]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [0E-10]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [NUMERIC] - [0E-10]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [NUMERIC] - [0E-10]
- 00:48:03.369 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [NUMERIC] - [0E-10]
- 00:48:14.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:53:14.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:58:14.882 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:03:14.902 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:08:14.927 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:13:14.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:18:14.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:21:26.652 [http-nio-8500-exec-7] 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 ?
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1353834731@qq.com]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3a3eff3932861bb493c756454825fe9]
- 01:21:26.652 [http-nio-8500-exec-7] 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 ?
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 01:21:26.652 [http-nio-8500-exec-7] 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=?
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 01:21:26.652 [http-nio-8500-exec-7] 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 ?
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 01:21:26.652 [http-nio-8500-exec-7] 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=?
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:28:07.0]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500018]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1353834731@qq.com]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [06]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 01:21:26 WEST 2022]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [宇]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3a3eff3932861bb493c756454825fe9]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20100]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010205]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1353834731@qq.com]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 01:21:26.652 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20100]
- 01:23:14.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:28:14.998 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:33:15.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:38:15.043 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:43:15.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:48:03.549 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 01:48:03.549 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 01:48:15.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:53:15.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:58:15.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:59:01.607 [http-nio-8500-exec-6] 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 ?
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 01:59:01.607 [http-nio-8500-exec-6] 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 ?
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 01:59:01.607 [http-nio-8500-exec-6] 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=?
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 01:59:01.607 [http-nio-8500-exec-6] 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 ?
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 01:59:01.607 [http-nio-8500-exec-6] 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=?
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 01:59:01 WEST 2022]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 01:59:01.607 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 02:03:15.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:08:15.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:12:42.515 [http-nio-8500-exec-4] 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 ?
- 02:12:42.515 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 02:12:42.515 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 02:12:42.515 [http-nio-8500-exec-4] 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 ?
- 02:12:42.515 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 02:12:42.515 [http-nio-8500-exec-4] 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=?
- 02:12:42.515 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 02:12:42.515 [http-nio-8500-exec-4] 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 ?
- 02:12:42.515 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 02:12:42.530 [http-nio-8500-exec-4] 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=?
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 02:12:42 WEST 2022]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 02:12:42.530 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 02:13:15.187 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:18:15.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:23:15.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:28:15.248 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:33:15.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:38:15.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:43:15.304 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:48:03.712 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 02:48:03.712 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 02:48:15.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:50:19.355 [http-nio-8500-exec-7] 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 ?
- 02:50:19.355 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1353834731@qq.com]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e3a3eff3932861bb493c756454825fe9]
- 02:50:19.370 [http-nio-8500-exec-7] 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 ?
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 02:50:19.370 [http-nio-8500-exec-7] 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=?
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 02:50:19.370 [http-nio-8500-exec-7] 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 ?
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 02:50:19.370 [http-nio-8500-exec-7] 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=?
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:28:07.0]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500018]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1353834731@qq.com]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [06]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 02:50:19 WEST 2022]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [宇]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [e3a3eff3932861bb493c756454825fe9]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20100]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010205]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1353834731@qq.com]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 02:50:19.370 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20100]
- 02:51:08.621 [http-nio-8500-exec-9] 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 ?
- 02:51:08.621 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 02:51:08.621 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 02:51:08.637 [http-nio-8500-exec-9] 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 ?
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 02:51:08.637 [http-nio-8500-exec-9] 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=?
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 02:51:08.637 [http-nio-8500-exec-9] 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 ?
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 02:51:08.637 [http-nio-8500-exec-9] 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=?
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 02:51:08 WEST 2022]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 02:51:08.637 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 02:53:15.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:58:15.368 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:03:15.385 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:08:15.404 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:13:15.418 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:17:26.249 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 03:17:26.249 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [14]
- 03:17:26.249 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 03:17:26.249 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [14]
- 03:17:26.249 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:17:26.249 [http-nio-8500-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"106.47.197.59","addTime":1658110646249,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500023","V_NAME_V":"卓 王","V_EMAIL_V":"1532180883@qq.com","V_DATE_TIME_V":"2022-07-18 03:17:26"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"1532180883@qq.com"}
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:41:27.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.197.59]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 03:17:26 WEST 2022]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 03:17:26 WEST 2022]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [安丰乡赵村]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 02:48:09.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1998-11-27 00:00:00.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500023]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [安阳]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1532180883@qq.com]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [卓]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [410522199811284717]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [106.47.197.59]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 02:41:27.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Zhuo Wang]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [cdaa69cc5aaf5e220c4aeebaced5289a]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15022722912]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [河南]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [455000]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:47:09.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/ce2c9250cbf9469793790a73b67d5292.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [16]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:47:26.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/d948d62390d5421bb944a4f99c51be34.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [17]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:48:19.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 02:48:19.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/0c6629726efc4d1aaef1e18ee3d94c41.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [18]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:48:19.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 02:48:19.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/93cbb69119074891acbca6be4ea16535.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [19]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:48:07.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/b85a26d0ea0b48908a478afb9fc0bbae.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:48:14.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/10bbccaec24b408288eeeb77976189b5.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [21]
- 03:17:26.264 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.108]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:48:15.0]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [14]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/14/info/0fd8c1885eef407489ebf0b009648e0e.jpg]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 03:17:26.264 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [22]
- 03:17:40.624 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 03:17:40.624 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [15]
- 03:17:40.624 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 03:17:40.624 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [15]
- 03:17:40.624 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:17:40.624 [http-nio-8500-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"106.47.197.59","addTime":1658110660624,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500024","V_NAME_V":"靖宇 李","V_EMAIL_V":"1353834731@qq.com","V_DATE_TIME_V":"2022-07-18 03:17:40"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"1353834731@qq.com"}
- 03:17:40.640 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 02:52:25.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 03:17:40 WEST 2022]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 03:17:40 WEST 2022]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市静海区招商果岭]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20100]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 03:04:51.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1999-11-09 00:00:00.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500024]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [静海]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1353834731@qq.com]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [靖宇]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120106199911101518]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 02:52:26.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingYu Li]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e3a3eff3932861bb493c756454825fe9]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18722261460]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [30000]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 03:02:29.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/15/info/17583de2ac214abaa99af8e7d6659e51.jpg]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [23]
- 03:17:40.640 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 03:02:42.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/15/info/530fe1a8ed85407f905bcf886d4aaa09.jpg]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [24]
- 03:17:40.640 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 03:03:17.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.197.59]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 03:03:17.0]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [15]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/15/info/e63023d60dfa4fde87a5de95fbe0e9d0.jpg]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
- 03:17:40.640 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [25]
- 03:18:03.499 [http-nio-8500-exec-2] 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:18:03.499 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 03:18:03.499 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:18:03.515 [http-nio-8500-exec-2] 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:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 03:18:03.515 [http-nio-8500-exec-2] 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:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 03:18:03.515 [http-nio-8500-exec-2] 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:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:18:03.515 [http-nio-8500-exec-2] 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:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 03:18:03 WEST 2022]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:18:03.515 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 03:18:15.437 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:19:50.532 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 03:19:50.532 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 03:21:28.428 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 03:21:28.428 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 03:23:15.461 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:28:15.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:33:15.493 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:38:15.517 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:43:15.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:48:03.875 [scheduled-thread-1] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 03:48:03.875 [scheduled-thread-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 03:48:15.551 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:51:55.730 [http-nio-8500-exec-6] 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:51:55.730 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 03:51:55.730 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:51:55.730 [http-nio-8500-exec-6] 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:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 03:51:55.746 [http-nio-8500-exec-6] 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:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 03:51:55.746 [http-nio-8500-exec-6] 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:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:51:55.746 [http-nio-8500-exec-6] 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:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 03:51:55 WEST 2022]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:51:55.746 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 03:52:35.387 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 03:52:35.387 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 03:53:15.576 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:56:00.730 [http-nio-8500-exec-2] 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:56:00.730 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
- 03:56:00.730 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
- 03:56:00.730 [http-nio-8500-exec-2] 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:56:00.730 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 03:56:00.745 [http-nio-8500-exec-2] 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:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 03:56:00.745 [http-nio-8500-exec-2] 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:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 03:56:00.745 [http-nio-8500-exec-2] 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:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.197.59]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-17 07:19:54.0]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 03:56:00 WEST 2022]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [1]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 03:56:00.745 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
- 03:56:41.277 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 03:56:41.277 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 03:58:15.598 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:01:04.423 [http-nio-8500-exec-3] 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:02:54.999 [http-nio-8500-exec-1] 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 1=1 limit ?
- 04:03:15.624 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:03:47.942 [http-nio-8500-exec-7] 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:03:48.067 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ? , ?)
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:03:48.067 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ? , ?)
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 04:03:48.067 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:04:18.678 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:04:18.678 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
- 04:04:18.678 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
- 04:04:18.912 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:04:18.912 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
- 04:04:18.912 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
- 04:04:19.162 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ? , ? , ?)
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
- 04:04:19.162 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
- 04:04:19.616 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
- 04:04:19.616 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:04:19.616 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
- 04:04:19.834 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_
- 04:04:19.834 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:04:19.834 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
- 04:04:58.055 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
- 04:05:08.477 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:08.477 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
- 04:05:08.477 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
- 04:05:08.696 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:08.696 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
- 04:05:08.696 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
- 04:05:08.946 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ? , ? , ?)
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
- 04:05:08.946 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
- 04:05:09.477 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
- 04:05:09.493 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:09.493 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
- 04:05:09.696 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_
- 04:05:09.696 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:09.696 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
- 04:05:38.665 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:38.665 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
- 04:05:38.665 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
- 04:05:38.915 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:38.915 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
- 04:05:38.915 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
- 04:05:39.150 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ? , ? , ?)
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
- 04:05:39.150 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
- 04:05:39.603 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
- 04:05:39.603 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:39.603 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
- 04:05:39.868 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_
- 04:05:39.868 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:39.868 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
- 04:05:43.931 [http-nio-8500-exec-8] 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:05:44.056 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ? , ?)
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:05:44.056 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_33_, customgrou0_.add_ip as add_ip2_33_, customgrou0_.add_time as add_time3_33_, customgrou0_.add_user as add_user4_33_, customgrou0_.modify_ip as modify_i5_33_, customgrou0_.modify_time as modify_t6_33_, customgrou0_.modify_user as modify_u7_33_, customgrou0_.note as note8_33_, customgrou0_.group_id as group_id9_33_, customgrou0_.hide as hide10_33_ from custom_group_hide customgrou0_ where customgrou0_.group_id in (? , ? , ?)
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [3]
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 04:05:44.056 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:05:56.353 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:56.353 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 04:05:56.353 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
- 04:05:56.369 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ?)
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
- 04:05:56.369 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
- 04:05:56.712 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
- 04:05:56.712 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
- 04:05:56.728 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
- 04:05:56.728 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:56.728 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
- 04:05:57.259 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ? , ? , ?)
- 04:05:57.259 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
- 04:05:57.259 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
- 04:05:57.275 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 04:05:57.275 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
- 04:05:57.603 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ?)
- 04:05:57.603 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 04:05:57.603 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 04:05:57.603 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
- 04:05:57.603 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
- 04:05:57.837 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
- 04:05:57.837 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
- 04:05:57.837 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
- 04:05:57.853 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
- 04:05:57.853 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
- 04:05:58.009 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
- 04:05:58.275 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 04:05:58.275 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
- 04:05:58.275 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
- 04:06:55.202 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 04:06:55.217 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 04:07:35.142 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 04:07:35.142 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 04:08:15.642 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:08:21.923 [http-nio-8500-exec-8] 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:08:21.923 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 04:08:21.923 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:08:21.923 [http-nio-8500-exec-8] 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:08:21.923 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 04:08:21.923 [http-nio-8500-exec-8] 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:08:21.923 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 04:08:21.923 [http-nio-8500-exec-8] 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:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:08:21.939 [http-nio-8500-exec-8] 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:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [106.47.197.59]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 04:08:21 WEST 2022]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:08:21.939 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 04:13:07.389 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 04:13:07.389 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 04:13:15.670 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:18:15.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:23:15.725 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:25:57.421 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 04:25:57.437 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [16]
- 04:25:57.437 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 04:25:57.437 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [16]
- 04:25:57.437 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:25:57.452 [http-nio-8500-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"221.197.234.229","addTime":1658114757452,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500025","V_NAME_V":"岱远 邓","V_EMAIL_V":"80898682@qq.com","V_DATE_TIME_V":"2022-07-18 04:25:57"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"80898682@qq.com"}
- 04:25:57.452 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [218.22.16.207]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 04:11:02.0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [16]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [221.197.234.229]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 04:25:57 WEST 2022]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 04:25:57 WEST 2022]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [蜀山区]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 04:15:08.0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1989-03-19 00:00:00.0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500025]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [合肥]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [80898682@qq.com]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [岱远]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [340103198903201532]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [安徽省合肥市 电信]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [218.22.16.207]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邓]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 04:17:21.0]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [DaiYuan Deng]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [fa81cc32646569a3e1ae6c00baf5e68e]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13063445598]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [安徽]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 04:25:57.452 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [230061]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [218.22.16.207]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 04:14:47.0]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [218.22.16.207]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 04:14:47.0]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/16/info/d9c6db35cf204aa2828dfbc8c390aab9.jpg]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [26]
- 04:25:57.468 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [218.22.16.207]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 04:14:56.0]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [16]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/16/info/3c0a4fa6638b49669923c73f6ecfabd6.jpg]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 04:25:57.468 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [27]
- 04:26:23.000 [http-nio-8500-exec-4] 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:26:23.000 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 04:26:23.000 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:26:23.000 [http-nio-8500-exec-4] 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:26:23.000 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 04:26:23.000 [http-nio-8500-exec-4] 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:26:23.000 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 04:26:23.016 [http-nio-8500-exec-4] 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:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 04:26:23.016 [http-nio-8500-exec-4] 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:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [221.197.234.229]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 04:26:23 WEST 2022]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 04:26:23.016 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 04:28:15.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:28:42.129 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 04:28:42.129 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 04:28:51.130 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 04:28:51.130 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 04:33:15.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:38:15.785 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:43:15.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:48:04.039 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 04:48:04.039 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 04:48:15.821 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:53:15.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:58:15.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:03:15.875 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:06:41.587 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 05:06:41.587 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 05:06:49.946 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 05:06:49.946 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 05:07:50.572 [http-nio-8500-exec-2] 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 ?
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:07:50.588 [http-nio-8500-exec-2] 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 ?
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 05:07:50.588 [http-nio-8500-exec-2] 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=?
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 05:07:50.588 [http-nio-8500-exec-2] 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 ?
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 05:07:50.588 [http-nio-8500-exec-2] 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=?
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [221.197.234.229]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 05:07:50 WEST 2022]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 05:07:50.588 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 05:08:10.369 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 05:08:10.369 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [17]
- 05:08:10.369 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 05:08:10.369 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [17]
- 05:08:10.369 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 05:08:10.369 [http-nio-8500-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"221.197.234.229","addTime":1658117290369,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500026","V_NAME_V":"秋阳 吴","V_EMAIL_V":"773941924@qq.com","V_DATE_TIME_V":"2022-07-18 05:08:10"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"773941924@qq.com"}
- 05:08:10.385 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.82.4.237]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:01:32.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [221.197.234.229]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 05:08:10 WEST 2022]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 05:08:10 WEST 2022]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江宁区秣陵街道胜利新寓@#江宁区秣陵街道胜利新寓]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 05:06:25.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1994-10-19 00:00:00.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500026]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [南京]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [773941924@qq.com]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [秋阳]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [321088199410207311]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [美国加利福尼亚洛杉矶]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [103.82.4.237]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [吴]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 05:01:33.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [QiuYang Wu]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa5eb39a4e41b9eccbe2f316c5cfe2c4]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18262576350]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [江苏]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [211111]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.35.74.71]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:06:12.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/17/info/03b950cc4e174b8494402ab345216124.jpg]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [28]
- 05:08:10.385 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.35.74.71]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:06:16.0]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [17]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/17/info/e5d4849e7725408ca65c5749b4c0eb37.jpg]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 05:08:10.385 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [29]
- 05:08:15.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:10:19.017 [http-nio-8500-exec-9] 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 ?
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:10:19.017 [http-nio-8500-exec-9] 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 ?
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 05:10:19.017 [http-nio-8500-exec-9] 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=?
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 05:10:19.017 [http-nio-8500-exec-9] 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 ?
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 05:10:19.017 [http-nio-8500-exec-9] 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=?
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [221.197.234.229]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 05:10:19 WEST 2022]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 05:10:19.017 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 05:13:15.920 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:18:15.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:18:40.753 [http-nio-8500-exec-7] 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 ?
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:18:40.753 [http-nio-8500-exec-7] 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 ?
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 05:18:40.753 [http-nio-8500-exec-7] 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=?
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 05:18:40.753 [http-nio-8500-exec-7] 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 ?
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 05:18:40.753 [http-nio-8500-exec-7] 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=?
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市河西区 联通]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [221.197.234.229]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 05:18:40 WEST 2022]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 05:18:40.753 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 05:23:15.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:28:15.976 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:33:16.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:38:16.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:38:51.848 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ?)
- 05:38:51.848 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [FINANCE_TRANSFER_EMAIL_NOTICE]
- 05:38:51.848 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 05:38:51.848 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [WEB_ADMIN_URE_CONFIG]
- 05:38:51.957 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
- 05:38:51.957 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOLIMIT_DEPOSIT_CONFIG]
- 05:38:52.395 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.request_url as request24_87_, sysremitta0_.sub_index as sub_ind25_87_, sysremitta0_.transform_currency as transfo26_87_, sysremitta0_.valid as valid27_87_ from sys_remittance_channel sysremitta0_
- 05:38:52.410 [http-nio-8500-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 05:38:52.410 [http-nio-8500-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [null]
- 05:38:52.410 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_
- 05:38:52.410 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.sub_index as sub_ind20_73_, syschannel0_.valid as valid21_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code in (?)
- 05:38:52.410 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
- 05:38:52.457 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ? , ? , ? , ? , ?)
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_DEPOSIT_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LEVERAGE_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [AUTOMATIC_TRANSFER_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [AUTOMATIC_MASTER_PASSWORD_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [VARCHAR] - [AUTOMATIC_INVESTOR_PASSWORD_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - [AUTOMATIC_ASCRIPTION_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [AUTOMATIC_CREATE_ACCOUNT_CONFIG]
- 05:38:52.457 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [AUTOMATIC_WITHDRAW_CONFIG]
- 05:38:52.942 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ? , ? , ?)
- 05:38:52.942 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 05:38:52.942 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 05:38:52.942 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [UPLOAD_VIDEO_SIZE_MAX]
- 05:38:52.942 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [UPLOAD_VIDEO_REGEX]
- 05:38:52.942 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_10_, accounttyp0_.add_ip as add_ip2_10_, accounttyp0_.add_time as add_time3_10_, accounttyp0_.add_user as add_user4_10_, accounttyp0_.modify_ip as modify_i5_10_, accounttyp0_.modify_time as modify_t6_10_, accounttyp0_.modify_user as modify_u7_10_, accounttyp0_.note as note8_10_, accounttyp0_.cn_name as cn_name9_10_, accounttyp0_.code as code10_10_, accounttyp0_.en_name as en_name11_10_, accounttyp0_.name as name12_10_ from account_type accounttyp0_
- 05:38:52.957 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_12_, accounttyp0_.add_ip as add_ip2_12_, accounttyp0_.add_time as add_time3_12_, accounttyp0_.add_user as add_user4_12_, accounttyp0_.modify_ip as modify_i5_12_, accounttyp0_.modify_time as modify_t6_12_, accounttyp0_.modify_user as modify_u7_12_, accounttyp0_.note as note8_12_, accounttyp0_.leverage as leverage9_12_, accounttyp0_.type as type10_12_ from account_type_leverage accounttyp0_
- 05:38:52.957 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select accounttyp0_.id as id1_13_, accounttyp0_.add_ip as add_ip2_13_, accounttyp0_.add_time as add_time3_13_, accounttyp0_.add_user as add_user4_13_, accounttyp0_.modify_ip as modify_i5_13_, accounttyp0_.modify_time as modify_t6_13_, accounttyp0_.modify_user as modify_u7_13_, accounttyp0_.note as note8_13_, accounttyp0_.point as point9_13_, accounttyp0_.type as type10_13_ from account_type_point accounttyp0_
- 05:38:53.051 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
- 05:38:53.051 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EMAIL_CONFIG_CONFIGURE]
- 05:38:53.395 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysemailco0_.id as id1_76_, sysemailco0_.add_ip as add_ip2_76_, sysemailco0_.add_time as add_time3_76_, sysemailco0_.add_user as add_user4_76_, sysemailco0_.modify_ip as modify_i5_76_, sysemailco0_.modify_time as modify_t6_76_, sysemailco0_.modify_user as modify_u7_76_, sysemailco0_.note as note8_76_, sysemailco0_.from_account as from_acc9_76_, sysemailco0_.from_account_name as from_ac10_76_, sysemailco0_.password as passwor11_76_, sysemailco0_.smtp_auth as smtp_au12_76_, sysemailco0_.smtp_host as smtp_ho13_76_, sysemailco0_.transport_protocol as transpo14_76_ from sys_email_config sysemailco0_
- 05:38:53.457 [http-nio-8500-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
- 05:38:53.457 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT4_REAL_MAX]
- 05:38:53.457 [http-nio-8500-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [AUTOMATIC_LOGON_LOGIN_MT5_REAL_MAX]
- 05:42:33.826 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 05:42:33.842 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [18]
- 05:42:33.842 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 05:42:33.842 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [18]
- 05:42:33.842 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 05:42:33.842 [http-nio-8500-exec-3] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"36.106.158.58","addTime":1658119353842,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500027","V_NAME_V":"白 李","V_EMAIL_V":"985917589@qq.com","V_DATE_TIME_V":"2022-07-18 05:42:33"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"985917589@qq.com"}
- 05:42:33.857 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:41:15.0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [18]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.158.58]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 05:42:33 WEST 2022]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 05:42:33 WEST 2022]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [阿萨德饭饭]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 05:42:14.0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500027]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [凉山]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [985917589@qq.com]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [白]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [23498875777288377421]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [36.106.158.58]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 05:41:15.0]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Bai Li]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [AF]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [d2e2f2a6a400736a3706e3ef65172cbb]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [87738847474741]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [四川]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 05:42:33.857 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [18]
- 05:43:10.687 [http-nio-8500-exec-3] 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 ?
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:43:10.687 [http-nio-8500-exec-3] 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 ?
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 05:43:10.687 [http-nio-8500-exec-3] 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=?
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 05:43:10.687 [http-nio-8500-exec-3] 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 ?
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 05:43:10.687 [http-nio-8500-exec-3] 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=?
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 05:43:10 WEST 2022]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 05:43:10.687 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 05:43:16.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:43:20.536 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 05:43:20.536 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 05:46:04.399 [http-nio-8500-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 05:46:04.399 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 05:48:04.207 [scheduled-thread-5] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 05:48:04.207 [scheduled-thread-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 05:48:16.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:51:26.353 [http-nio-8500-exec-6] 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 ?
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:51:26.353 [http-nio-8500-exec-6] 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 ?
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 05:51:26.353 [http-nio-8500-exec-6] 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=?
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 05:51:26.353 [http-nio-8500-exec-6] 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 ?
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 05:51:26.353 [http-nio-8500-exec-6] 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=?
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 05:51:26 WEST 2022]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 05:51:26.353 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 05:53:16.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:58:16.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:03:16.121 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:03:48.986 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 06:03:48.986 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 06:08:16.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:13:16.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:18:16.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:23:16.206 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:28:16.230 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:30:23.457 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 06:30:23.457 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20]
- 06:30:23.473 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:30:23.473 [http-nio-8500-exec-3] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"36.106.158.58","addTime":1658122223473,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500029","V_NAME_V":"春伟 韩","V_EMAIL_V":"hanweixiaobao@163.com","V_DATE_TIME_V":"2022-07-18 06:30:23"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"hanweixiaobao@163.com"}
- 06:30:23.473 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:54:33.0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [20]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.158.58]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 06:30:23 WEST 2022]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 06:30:23 WEST 2022]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [万达广场写字楼B座1601]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 06:14:46.0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1986-11-17 00:00:00.0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500029]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [hanweixiaobao@163.com]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [春伟]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198611181524]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [36.106.158.58]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [韩]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 05:54:33.0]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChunWei Han]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ec6137fa9311036b1915cd3aadd044b6]
- 06:30:23.473 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920977227]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [20]
- 06:30:23.488 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 06:13:27.0]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [20]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [20]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/20/info/f760879aefa645c7af72670bbd9076ec.jpeg]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [30]
- 06:30:23.488 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 06:13:55.0]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [20]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [20]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/20/info/0b7abd60039342c7be6bda815e0e9680.jpeg]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 06:30:23.488 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [31]
- 06:30:29.895 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 06:30:29.895 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
- 06:30:29.895 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 06:30:29.895 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
- 06:30:29.895 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:30:29.895 [http-nio-8500-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"36.106.158.58","addTime":1658122229895,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500028","V_NAME_V":"文军 吴","V_EMAIL_V":"925581160@qq.com","V_DATE_TIME_V":"2022-07-18 06:30:29"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"925581160@qq.com"}
- 06:30:29.910 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.22.127.208]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 05:44:20.0]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [19]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.158.58]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 06:30:29 WEST 2022]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 06:30:29 WEST 2022]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [湖北省襄阳市大庆西路襄阳花园]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 06:02:38.0]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500028]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [襄阳]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [925581160@qq.com]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [文军]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [420204197310024515]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [湖北省襄阳市 电信]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [27.22.127.208]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [吴]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 05:57:48.0]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [WenJun Wu]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c2ea387109a1d6b72ce7117cb87188db]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18327566655]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [湖北]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [441000]
- 06:30:29.910 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [19]
- 06:33:14.173 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 06:33:14.173 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 06:33:16.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:34:00.128 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 06:34:00.128 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 06:38:16.265 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:43:16.287 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:48:04.377 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 06:48:04.377 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 06:48:16.315 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:53:16.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:58:16.358 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:03:16.384 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:07:38.944 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 07:07:38.944 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 07:08:16.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:13:16.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:18:16.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:23:16.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:28:16.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:33:16.502 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:38:16.524 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:43:16.544 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:48:04.541 [scheduled-thread-8] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 07:48:04.541 [scheduled-thread-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 07:48:16.557 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:53:16.582 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:58:16.598 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:03:16.623 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:08:16.639 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:13:16.656 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:18:16.670 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:21:59.516 [http-nio-8500-exec-2] 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:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:21:59.516 [http-nio-8500-exec-2] 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:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 08:21:59.516 [http-nio-8500-exec-2] 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:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 08:21:59.516 [http-nio-8500-exec-2] 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:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:21:59.516 [http-nio-8500-exec-2] 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:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 08:21:59 WEST 2022]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:21:59.516 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 08:22:10.501 [http-nio-8500-exec-3] 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:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:22:10.501 [http-nio-8500-exec-3] 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:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 08:22:10.501 [http-nio-8500-exec-3] 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:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 08:22:10.501 [http-nio-8500-exec-3] 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:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:22:10.501 [http-nio-8500-exec-3] 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:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 08:22:10 WEST 2022]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:22:10.501 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 08:23:16.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:25:01.565 [http-nio-8500-exec-9] 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:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:25:01.565 [http-nio-8500-exec-9] 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:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 08:25:01.565 [http-nio-8500-exec-9] 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:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 08:25:01.565 [http-nio-8500-exec-9] 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:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 08:25:01.565 [http-nio-8500-exec-9] 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:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 08:25:01 WEST 2022]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 08:25:01.565 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 08:25:23.660 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 08:25:23.660 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 08:26:23.520 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.platform=?
- 08:26:23.520 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [MT4]
- 08:28:16.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:33:16.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:38:16.754 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:43:16.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:48:04.714 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 08:48:04.714 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 08:48:16.795 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:53:16.818 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:58:16.833 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:03:16.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:08:16.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:13:16.894 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:18:16.921 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:19:36.115 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 09:19:36.115 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [22]
- 09:19:36.115 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 09:19:36.115 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [22]
- 09:19:36.115 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:19:36.131 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"36.106.158.58","addTime":1658132376131,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500031","V_NAME_V":"丽娟 俞","V_EMAIL_V":"1271548316@qq.com","V_DATE_TIME_V":"2022-07-18 09:19:36"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"1271548316@qq.com"}
- 09:19:36.131 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [101.24.190.104]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 08:56:42.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [22]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.158.58]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 09:19:36 WEST 2022]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 09:19:36 WEST 2022]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [朝阳区永春镇]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20103]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 09:10:59.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1972-09-06 00:00:00.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500031]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [长春]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1271548316@qq.com]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丽娟]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [220111197209074025]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [河北省石家庄市 联通]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [101.24.190.104]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [俞]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 08:56:42.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [LiJuan Yu]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [8dd8f6c6084f67bc8bf91fad3c4a5a97]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18844178827]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [吉林]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [130000]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [22]
- 09:19:36.131 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.51.118.248]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 09:02:57.0]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [22]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [22]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/22/info/83415ffadbb840f0875bd8ebdd00fbc4.jpg]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 09:19:36.131 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [33]
- 09:19:36.131 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [101.24.190.104]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 09:10:38.0]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/22/info/7a1e5b0558e64148b561897534ef1405.jpg]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [34]
- 09:19:36.146 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [101.24.190.104]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 09:10:55.0]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/22/info/a07193904e8e4b84b65972a8257df5a0.jpg]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [35]
- 09:19:36.146 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.51.118.248]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 09:11:12.0]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [22]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/22/info/6b71eeedc92c41d2820a5b708686a114.jpg]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 09:19:36.146 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [36]
- 09:23:16.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:25:27.445 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
- 09:25:27.445 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [22]
- 09:28:16.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:33:16.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:38:17.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:43:17.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:44:16.634 [http-nio-8500-exec-9] 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:44:16.650 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mailto:mic0717@163.com]
- 09:44:16.650 [http-nio-8500-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [538c35b2a0ac87937a3e9581abf8076c]
- 09:47:20.010 [http-nio-8500-exec-8] 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:47:20.010 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2596621599@qq.com]
- 09:47:20.010 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [5611e350cf89977f193daf936b178d21]
- 09:47:20.026 [http-nio-8500-exec-8] 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:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 09:47:20.026 [http-nio-8500-exec-8] 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:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 09:47:20.026 [http-nio-8500-exec-8] 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:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 09:47:20.026 [http-nio-8500-exec-8] 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:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:29:53.0]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500019]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [2596621599@qq.com]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [07]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 09:47:20 WEST 2022]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [强]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [5611e350cf89977f193daf936b178d21]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20101]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010206]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [2596621599@qq.com]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 09:47:20.026 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20101]
- 09:48:04.875 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 09:48:04.875 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 09:48:17.048 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:53:17.063 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:58:17.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:03:17.105 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:08:17.121 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:13:17.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:18:17.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:23:17.190 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:28:17.216 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:33:17.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:38:17.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:43:17.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:48:05.042 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 10:48:05.042 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 10:48:17.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:53:17.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:55:52.475 [http-nio-8500-exec-6] 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:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [287114768@qq.com]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
- 10:55:52.475 [http-nio-8500-exec-6] 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:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 10:55:52.475 [http-nio-8500-exec-6] 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:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 10:55:52.475 [http-nio-8500-exec-6] 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:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 10:55:52.475 [http-nio-8500-exec-6] 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:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:03:35.0]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [106.47.197.59]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-17 07:19:54.0]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500013]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [287114768@qq.com]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [001]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 电信]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [36.106.158.58]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 10:55:52 WEST 2022]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [袁]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [c0de006306a86373cd99071dd254d466]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [1]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20095]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0102]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [287114768@qq.com]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 10:55:52.475 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20095]
- 10:58:17.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:03:17.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:08:17.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:13:17.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:18:17.406 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:23:17.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:28:17.438 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:33:17.452 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:38:17.467 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:43:17.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:46:53.205 [http-nio-8500-exec-5] 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:46:53.205 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 11:46:53.205 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 11:46:53.205 [http-nio-8500-exec-5] 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:46:53.205 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 11:46:53.205 [http-nio-8500-exec-5] 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:46:53.205 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 11:46:53.205 [http-nio-8500-exec-5] 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:46:53.205 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 11:46:53.221 [http-nio-8500-exec-5] 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:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 联通]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [116.130.192.169]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 11:46:53 WEST 2022]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 11:46:53.221 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 11:48:05.210 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 11:48:05.210 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 11:48:17.523 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:53:17.548 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:58:17.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:03:17.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:08:17.596 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:13:17.622 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:16:00.346 [http-nio-8500-exec-3] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 12:16:00.346 [http-nio-8500-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 12:18:17.637 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:23:04.845 [http-nio-8500-exec-8] 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:23:04.845 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1483717776@qq.com]
- 12:23:04.845 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [12ae9bcfac80507991b2a1b82809f1eb]
- 12:23:04.860 [http-nio-8500-exec-8] 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:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1032]
- 12:23:04.860 [http-nio-8500-exec-8] 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:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 12:23:04.860 [http-nio-8500-exec-8] 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:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 12:23:04.860 [http-nio-8500-exec-8] 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:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [106.47.197.59]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-17 07:27:29.0]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [500017]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [1483717776@qq.com]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [05]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 联通]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [218.69.50.249]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 12:23:04 WEST 2022]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [阳]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [0102]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [12ae9bcfac80507991b2a1b82809f1eb]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [20095]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1032]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [20099]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [010204]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [null]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [1483717776@qq.com]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 12:23:04.860 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20099]
- 12:23:17.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:23:20.486 [http-nio-8500-exec-7] 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:28:17.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:33:17.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:38:17.722 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:43:17.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:48:05.381 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 12:48:05.381 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 12:48:17.772 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:53:17.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:54:47.928 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
- 12:54:47.928 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:55:55.092 [http-nio-8500-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"116.130.192.169","addTime":1658145355092,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500032","V_NAME_V":"娜 宋","V_EMAIL_V":"songna868@163.com","V_DATE_TIME_V":"2022-07-18 12:55:55"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"songna868@163.com"}
- 12:55:55.092 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.248.12.120]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 11:42:10.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [116.130.192.169]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 12:55:55 WEST 2022]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 12:55:55 WEST 2022]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [芝罘区]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20104]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 12:27:47.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1981-10-12 00:00:00.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500032]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [烟台]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [songna868@163.com]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [娜]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370602198110131825]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [河北省石家庄市 联通]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [119.248.12.120]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [宋]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 11:42:10.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Na Song]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [12e8c349fa1b4dc06a57a84a24dfd30f]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13031647257]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.217.129.48]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 11:46:08.0]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [23]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/23/info/78580ea3431443c89f95e60402d8a01d.jpeg]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 12:55:55.092 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [37]
- 12:55:55.092 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.217.129.48]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 11:46:36.0]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [23]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [23]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/23/info/d51f1ebf58f14649a3a2e7bc8fdc8ece.jpeg]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [10]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [38]
- 12:55:55.108 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [119.248.12.120]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 11:49:26.0]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [23]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.217.129.48]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 11:49:26.0]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [23]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [23]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/23/info/b24677209428492b8ae38a688dee43b8.jpeg]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 12:55:55.108 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [39]
- 12:58:17.797 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:03:17.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:08:17.838 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:13:17.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:18:17.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:23:17.907 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:28:17.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:33:17.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:38:17.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:43:17.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:48:05.546 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 13:48:05.546 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 13:48:18.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:53:18.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:58:18.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:03:18.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:08:18.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:08:22.706 [http-nio-8500-exec-10] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 14:08:24.081 [http-nio-8500-exec-2] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 14:13:18.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:18:18.139 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:19:16.891 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 14:19:16.891 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 14:20:38.235 [http-nio-8500-exec-8] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 14:20:38.235 [http-nio-8500-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 14:23:18.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:26:43.161 [http-nio-8500-exec-10] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 14:26:43.161 [http-nio-8500-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 14:28:18.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:33:18.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:38:18.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:43:18.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:48:05.718 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 14:48:05.718 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 14:48:18.265 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:53:18.278 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:53:21.231 [http-nio-8500-exec-7] 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:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [mic_partnership@126.com]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 14:53:21.231 [http-nio-8500-exec-7] 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:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1031]
- 14:53:21.231 [http-nio-8500-exec-7] 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:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [5]
- 14:53:21.231 [http-nio-8500-exec-7] 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:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1000]
- 14:53:21.231 [http-nio-8500-exec-7] 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:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.135.80.35]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2020-12-15 20:44:28.0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [58.135.80.35]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2021-11-10 13:15:08.0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [1]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [FLOAT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [FLOAT] - [0.0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [FLOAT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [mic_partnership@126.com]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [FLOAT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [1000]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [ADMIN01]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [天津市天津市 联通]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [60.27.139.28]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [TIMESTAMP] - [Mon Jul 18 14:53:21 WEST 2022]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [admin]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [01]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [VARCHAR] - [037f0b1dd44302fed8eba67c8ae2d582]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1031]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [BIGINT] - [null]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [0101]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [FLOAT] - [0.0]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [mic_partnership@126.com]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [INTEGER] - [1]
- 14:53:21.231 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [BIGINT] - [20090]
- 14:53:46.544 [http-nio-8500-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=?
- 14:53:46.560 [http-nio-8500-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [24]
- 14:54:19.296 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
- 14:54:19.296 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [24]
- 14:54:19.296 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.status=?
- 14:54:19.296 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [24]
- 14:54:19.296 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 14:54:19.296 [http-nio-8500-exec-6] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"60.27.139.28","addTime":1658152459296,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPROVE_SUCCESS","imageFilesMap":null,"map":{"V_C_ID_V":"500033","V_NAME_V":"fei jiang","V_EMAIL_V":"838917554@qq.com","V_DATE_TIME_V":"2022-07-18 14:54:19"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_VERIFICATION_SUCCESS_SEND_CN","users":"838917554@qq.com"}
- 14:54:19.311 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.80.42.43]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 14:42:52.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [60.27.139.28]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon Jul 18 14:54:19 WEST 2022]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Mon Jul 18 14:54:19 WEST 2022]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [瑞恒家园小区@#天津市北辰区光荣道瑞恒家园小区]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20103]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-18 14:51:47.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-11-16 00:00:00.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500033]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [北辰]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [0.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [838917554@qq.com]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [fei]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [220322198011177816]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [天津市天津市 电信]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [42.80.42.43]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [jiang]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2022-07-18 14:44:01.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [fei jiang]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15320117687]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [3000000]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.80.42.43]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 14:47:31.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/24/info/c620364f7af1415fa2208a6403c85140.jpg]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [40]
- 14:54:19.311 [http-nio-8500-exec-6] DEBUG org.hibernate.SQL - update custom_file set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, again_path=?, custom_id=?, path=?, status=?, type=? where id=?
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.80.42.43]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-18 14:48:23.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [42.80.42.43]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [2022-07-18 14:48:23.0]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [24]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/24/info/ab313210ede04c4a88239e0f23ae3b70.jpg]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 14:54:19.311 [http-nio-8500-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [41]
- 14:58:18.292 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:03:18.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:04:36.048 [http-nio-8500-exec-5] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 15:04:36.048 [http-nio-8500-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 15:05:16.424 [http-nio-8500-exec-7] DEBUG org.hibernate.SQL - select sysbanktab0_.id as id1_72_, sysbanktab0_.add_ip as add_ip2_72_, sysbanktab0_.add_time as add_time3_72_, sysbanktab0_.add_user as add_user4_72_, sysbanktab0_.modify_ip as modify_i5_72_, sysbanktab0_.modify_time as modify_t6_72_, sysbanktab0_.modify_user as modify_u7_72_, sysbanktab0_.note as note8_72_, sysbanktab0_.en_icon as en_icon9_72_, sysbanktab0_.en_name as en_name10_72_, sysbanktab0_.icon as icon11_72_, sysbanktab0_.name as name12_72_, sysbanktab0_.sub_index as sub_ind13_72_, sysbanktab0_.valid as valid14_72_ from sys_bank sysbanktab0_ where sysbanktab0_.valid=? order by sysbanktab0_.sub_index asc
- 15:05:16.424 [http-nio-8500-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
- 15:08:18.337 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:13:18.353 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:18:18.377 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:23:18.390 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:28:18.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:33:18.438 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:38:18.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:43:18.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:48:05.886 [scheduled-thread-3] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 15:48:05.886 [scheduled-thread-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 15:48:18.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:53:18.523 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:58:18.546 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:03:18.565 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:08:18.588 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:13:18.608 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:18:18.627 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:23:18.643 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:28:18.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:33:18.686 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:38:18.707 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:43:18.731 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:48:06.059 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 16:48:06.059 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 16:48:18.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:53:18.770 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:58:18.786 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:03:18.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:08:18.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:13:18.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:18:18.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:23:18.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:28:18.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:33:18.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:38:18.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:43:18.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:48:06.230 [scheduled-thread-7] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 17:48:06.230 [scheduled-thread-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 17:48:18.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:53:19.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:58:19.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:03:19.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:08:19.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:13:19.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:18:19.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:23:19.145 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:28:19.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:33:19.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:38:19.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:43:19.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:48:06.398 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 18:48:06.398 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 18:48:19.242 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:53:19.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:58:19.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:03:19.307 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:08:19.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:13:19.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:18:19.366 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:23:19.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:28:19.396 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:33:19.423 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:38:19.449 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:43:19.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:48:06.576 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 19:48:06.576 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 19:48:19.482 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:53:19.507 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:58:19.530 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:03:19.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:08:19.569 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:13:19.589 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:18:19.616 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:23:19.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:28:19.654 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:33:19.667 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:38:19.681 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:43:19.704 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:48:06.751 [scheduled-thread-4] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 20:48:06.751 [scheduled-thread-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 20:48:19.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:53:19.749 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:58:19.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:03:19.777 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:08:19.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:13:19.830 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:18:19.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:18:43.202 [http-nio-8500-exec-8] INFO o.a.coyote.http11.Http11Processor - Error parsing HTTP request header
- Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.
- java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:476)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)
- 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)
- 21:23:19.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:28:19.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:33:19.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:38:19.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:43:19.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:48:06.925 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 21:48:06.925 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 21:48:19.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:53:19.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:58:20.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:03:20.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:08:20.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:13:20.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:18:20.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:23:20.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:28:20.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:33:20.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:38:20.203 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:43:20.222 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:48:07.090 [scheduled-thread-6] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 22:48:07.090 [scheduled-thread-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 22:48:20.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:53:20.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:58:20.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:03:20.311 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:08:20.338 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:13:20.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:18:20.385 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:23:20.402 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:28:20.415 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:33:20.441 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:38:20.454 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:43:20.479 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:48:07.260 [scheduled-thread-2] DEBUG org.hibernate.SQL - select controlpan0_.id as col_0_0_ from control_panel_statistics controlpan0_ where controlpan0_.date=? limit ?
- 23:48:07.260 [scheduled-thread-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [TIMESTAMP] - [Sun Jul 17 00:00:00 WEST 2022]
- 23:48:20.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:50:00.821 [http-nio-8500-exec-7] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 23:50:00.821 [http-nio-8500-exec-7] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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)
- 23:50:00.821 [http-nio-8500-exec-7] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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)
- 23:50:00.821 [http-nio-8500-exec-7] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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
- 23:50:02.274 [http-nio-8500-exec-1] WARN o.s.web.servlet.PageNotFound - Request method 'POST' not supported
- 23:50:02.274 [http-nio-8500-exec-1] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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)
- 23:50:02.274 [http-nio-8500-exec-1] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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)
- 23:50:02.274 [http-nio-8500-exec-1] 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.doPost(FrameworkServlet.java:872)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
- 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
- 23:53:20.518 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:58:20.542 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
|