| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- 00:00:18.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:05:18.987 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:10:18.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:15:18.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:20:18.990 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:25:18.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:30:18.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:35:18.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:40:18.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:45:18.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:50:19.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:55:19.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:00:19.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:05:19.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:10:19.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:15:19.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:20:19.009 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:25:19.011 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:30:19.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:35:19.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:40:19.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:45:19.016 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:50:19.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:55:19.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:00:19.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:05:19.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:10:19.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:15:19.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:20:19.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:25:19.028 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:30:19.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:35:19.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:40:19.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:45:19.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:50:19.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:55:19.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:00:19.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:05:19.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:10:19.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:12:58.796 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 03:12:58.797 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 03:12:58.797 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:12:58.950 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 03:12:58.951 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 03:12:58.951 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:14:01.585 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 03:14:01.586 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 03:14:01.587 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:14:01.774 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 03:14:01.775 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 03:14:01.776 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:14:37.630 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 03:14:37.634 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2394128190@qq.com]
- 03:14:37.634 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [fbbdaf851cfafd1a2216b9cb73e2d4a0]
- 03:14:48.220 [http-nio-8000-exec-1] 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_.email=? and custominfo0_.password=? limit ?
- 03:14:48.224 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2394128190@qq.com]
- 03:14:48.224 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [5dd5a7dfee2ff6379f070f05015282c5]
- 03:15:03.349 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 03:15:03.354 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2394128190@qq.com]
- 03:15:03.354 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [4342dccf5dea4f819e7cabf950b4f079]
- 03:15:03.392 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 03:15:03.395 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [713]
- 03:15:03.400 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.232.208]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 03:15:03 EET 2025]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [713]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [713]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [221.197.232.208]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 03:15:03 EET 2025]
- 03:15:03.401 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [梦轩null王]
- 03:15:03.405 [http-nio-8000-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=?
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.27.159.55]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-02-18 07:29:41.0]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [713]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [221.197.232.208]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 03:15:03 EET 2025]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [713]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-02-18 07:56:16.0]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市东丽区华明街弘立道睿府花园10号楼1门1001号@#天津市东丽区华明街弘立道睿府花园10号楼1门1001号]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-02-18 07:54:03.0]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-03-14 00:00:00.0]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500754]
- 03:15:03.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [东丽]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2394128190@qq.com]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [梦轩]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [341821200503151515]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [221.197.232.208]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 03:15:03 EET 2025]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MengXuan Wang]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [4342dccf5dea4f819e7cabf950b4f079]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15510991036]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 03:15:03.407 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [713]
- 03:15:22.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:20:22.707 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:25:22.709 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:30:22.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:35:22.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:40:22.714 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:45:22.716 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:50:22.717 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:55:22.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:00:22.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:04:20.270 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 04:04:20.271 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:04:20.271 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:04:20.553 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 04:04:20.554 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:04:20.554 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:05:22.722 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:10:22.723 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:15:22.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:20:22.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:25:22.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:30:22.729 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:35:22.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:40:22.731 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:45:22.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:50:22.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:55:22.734 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:00:22.735 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:05:22.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:10:22.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:15:22.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:20:22.742 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:25:22.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:30:22.745 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:35:22.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:40:22.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:41:47.031 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 05:41:47.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 05:41:47.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 05:41:47.884 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 05:41:47.885 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 05:41:47.885 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 05:41:52.278 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 05:41:52.283 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 05:41:52.283 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 05:41:52.316 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 05:41:52.318 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:41:52.322 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.193.100]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 05:41:52 EET 2025]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [112.224.193.100]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 05:41:52 EET 2025]
- 05:41:52.323 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 05:41:52.325 [http-nio-8000-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:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.193.100]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 05:41:52 EET 2025]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.193.100]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 05:41:52 EET 2025]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 05:41:52.327 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 05:42:02.377 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 05:42:02.380 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:42:53.047 [http-nio-8000-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=?
- 05:42:53.049 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 05:42:53.050 [http-nio-8000-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=?
- 05:42:53.051 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 05:44:14.617 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=? and custombank0_.default_bank=? and custombank0_.type=?
- 05:44:14.619 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:44:14.619 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 05:44:14.619 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
- 05:44:14.627 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - insert into custom_bank (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, custom_id, default_bank, swift_code, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.193.100]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 05:44:14 EET 2025]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [济南趵突泉支行]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6214830567234942]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国招商银行-CMB]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [志洪 邹]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [699]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
- 05:44:14.628 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 05:44:14.629 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - update custom_bank set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, custom_id=?, default_bank=?, swift_code=?, type=? where id=?
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.193.85]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-28 11:08:48.0]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [莘县支行]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6228480028721389774]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
- 05:44:14.629 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国农业银行-ABC]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [志洪 邹]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [699]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 05:44:14.630 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [904]
- 05:44:14.777 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 05:44:14.779 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:45:22.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:45:41.895 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 05:45:41.897 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:45:41.897 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 05:50:22.750 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:51:28.186 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 05:51:28.188 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 05:51:28.188 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 05:55:22.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:00:22.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:05:22.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:10:22.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:11:05.927 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:11:05.928 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:11:05.928 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:11:05.938 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:11:05.942 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:11:05.942 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:11:32.384 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
- 06:11:32.384 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 06:13:01.238 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
- 06:13:01.239 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 06:15:22.757 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:16:09.066 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
- 06:16:09.067 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 06:16:49.120 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 06:16:49.122 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 06:16:49.122 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:16:49.143 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 06:16:49.145 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:16:49.149 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:16:49 EET 2025]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [112.224.164.141]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 06:16:49 EET 2025]
- 06:16:49.150 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [nullnullnull]
- 06:16:49.152 [http-nio-8000-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=?
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.226.160.159]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-24 02:53:31.0]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.164.141]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 06:16:49 EET 2025]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [698]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500737]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2454175130@qq.com]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.164.141]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 06:16:49 EET 2025]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1585432773]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 06:16:49.153 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [698]
- 06:16:54.265 [http-nio-8000-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=?
- 06:16:54.268 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 06:16:54.269 [http-nio-8000-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=?
- 06:16:54.270 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
- 06:16:54.456 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:16:54.457 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:16:54.457 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:16:54.494 [http-nio-8000-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=? order by customfile0_.type asc
- 06:16:54.496 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:16:54.656 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:16:54.657 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:16:54.657 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:17:58.973 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:17:58.976 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1359]
- 06:17:58.976 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:19:31.684 [http-nio-8000-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 (? , ?)
- 06:19:31.685 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 06:19:31.685 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 06:19:31.686 [http-nio-8000-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_.type=? limit ? for update
- 06:19:31.687 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:19:31.687 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:19:31.710 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:19:31 EET 2025]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/698/info/0d5cad330b2944a1ab79f4e2eeb49d62.jpeg]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:19:31.711 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 06:20:13.637 [http-nio-8000-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 (? , ?)
- 06:20:13.638 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 06:20:13.638 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 06:20:13.639 [http-nio-8000-exec-9] 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_.type=? limit ? for update
- 06:20:13.639 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:20:13.640 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [2]
- 06:20:13.664 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:20:13 EET 2025]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/698/info/ea0ad11bed844745bcead46b2cc03a33.jpeg]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:20:13.665 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 06:20:22.758 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:21:01.404 [http-nio-8000-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 (? , ?)
- 06:21:01.405 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 06:21:01.405 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 06:21:01.406 [http-nio-8000-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_.type=? limit ? for update
- 06:21:01.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:21:01.406 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [3]
- 06:21:01.429 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:21:01 EET 2025]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/698/info/d9473f526af342c1a1acc52996af96b5.jpeg]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:21:01.430 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
- 06:22:45.782 [http-nio-8000-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 (? , ?)
- 06:22:45.783 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 06:22:45.783 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 06:22:45.790 [http-nio-8000-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_.id=? limit ? for update
- 06:22:45.791 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1913]
- 06:22:45.803 [http-nio-8000-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=?
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:22:45 EET 2025]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.164.141]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 06:22:45 EET 2025]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [698]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/698/info/98131072e9524660b03cb435cc1054d0.png]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
- 06:22:45.804 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1913]
- 06:22:48.290 [http-nio-8000-exec-1] 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:22:48.295 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:22:48.298 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.identity=? limit ?
- 06:22:48.298 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [372325200102170816]
- 06:22:48.307 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.code=?
- 06:22:48.308 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
- 06:22:48.315 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ? for update
- 06:22:48.316 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:22:48.319 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - insert into custom_survey (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, custom_id, derivative_products, employment_status, experience_qualification, experience_trading_derivative, experience_trading_forex, gross_annual_income, level, occupation, source_funding, total_new_worth, trading_objectives) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.164.141]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:22:48 EET 2025]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [698]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [INTEGER] - [1]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [1]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [1]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [5]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [2]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [5]
- 06:22:48.320 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [1]
- 06:22:48.322 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=?
- 06:22:48.324 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:22:48.325 [http-nio-8000-exec-1] 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:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.226.160.159]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-24 02:53:31.0]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.164.141]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 06:22:48 EET 2025]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - []
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [Fri Feb 16 18:00:00 EET 2001]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500737]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2454175130@qq.com]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [执政]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372325200102170816]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.164.141]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-02-19 06:16:49.0]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiZheng Guo]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1585432773]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 06:22:48.326 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [698]
- 06:22:48.451 [http-nio-8000-exec-9] 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=? order by customfile0_.type asc
- 06:22:48.454 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:22:48.692 [http-nio-8000-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
- 06:22:48.697 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:22:48.699 [http-nio-8000-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=?
- 06:22:48.699 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
- 06:22:48.700 [http-nio-8000-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_.id=? limit ?
- 06:22:48.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20121]
- 06:22:48.705 [http-nio-8000-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"112.224.164.141","addTime":1739938968705,"addUser":698,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"SUBMIT_VERIFICATION","imageFilesMap":null,"map":{"V_C_ID_V":"500737","V_P_IB_NO_V":"500737","V_NAME_V":"执政 郭","V_EMAIL_V":"2454175130@qq.com","V_APPLY_TIME_V":"2025-02-19 06:22:48","V_DATE_TIME_V":"2025-02-19 06:22:48"},"note":null,"sendDate":null,"subject":null,"templateName":"SUBMIT_VERIFICATION_NOTICE_NAME","users":"brunsdons_partens@126.com"}
- 06:22:48.715 [http-nio-8000-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=?
- 06:22:48.715 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
- 06:22:48.716 [http-nio-8000-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=?
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.226.160.159]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-24 02:53:31.0]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.164.141]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 06:22:48 EET 2025]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [698]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - []
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [Wed Feb 19 06:22:48 EET 2025]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-02-16 00:00:00.0]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500737]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2454175130@qq.com]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [执政]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:22:48.717 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372325200102170816]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.164.141]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-02-19 06:16:49.0]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiZheng Guo]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1585432773]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 06:22:48.718 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [698]
- 06:22:48.964 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:22:48.965 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:22:48.965 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:22:49.082 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:22:49.083 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:22:49.083 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:22:49.188 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:22:49.189 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1359]
- 06:22:49.189 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:23:06.513 [http-nio-8000-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=? order by customfile0_.type asc
- 06:23:06.513 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 06:23:06.514 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:23:06.515 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:23:06.662 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:23:06.664 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:23:06.664 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:23:06.849 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:23:06.851 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:23:06.851 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:25:22.760 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:30:22.762 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:35:22.764 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:40:22.766 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:42:11.625 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:42:11.627 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:42:11.627 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:42:11.699 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:42:11.700 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:42:11.700 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:42:29.509 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 06:42:29.514 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 06:42:29.514 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:42:29.544 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 06:42:29.547 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:42:29.552 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.210.127.135]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 06:42:29 EET 2025]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [27.210.127.135]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 06:42:29 EET 2025]
- 06:42:29.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [执政null郭]
- 06:42:29.555 [http-nio-8000-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=?
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.226.160.159]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-24 02:53:31.0]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.210.127.135]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 06:42:29 EET 2025]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [698]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - []
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-02-19 06:22:49.0]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-02-16 00:00:00.0]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500737]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2454175130@qq.com]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [执政]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372325200102170816]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [27.210.127.135]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 06:42:29 EET 2025]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiZheng Guo]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1585432773]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 06:42:29.556 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [698]
- 06:42:38.570 [http-nio-8000-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=?
- 06:42:38.575 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 06:42:38.575 [http-nio-8000-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=?
- 06:42:38.576 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
- 06:42:38.576 [http-nio-8000-exec-1] 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=? order by customfile0_.type asc
- 06:42:38.577 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:42:38.695 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:42:38.696 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:42:38.696 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:42:38.841 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:42:38.843 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:42:38.843 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:42:38.974 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:42:38.976 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1359]
- 06:42:38.976 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:05.550 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 06:43:05.551 [http-nio-8000-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=? order by customfile0_.type asc
- 06:43:05.552 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:05.552 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:05.681 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:05.682 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:43:05.682 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:05.824 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:05.826 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:43:05.826 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:14.866 [http-nio-8000-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=?
- 06:43:14.868 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 06:43:14.869 [http-nio-8000-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=?
- 06:43:14.870 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 06:43:34.506 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 06:43:34.506 [http-nio-8000-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=? order by customfile0_.type asc
- 06:43:34.509 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:34.510 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:34.639 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:34.641 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:43:34.641 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:34.790 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:34.791 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:43:34.791 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:45.695 [http-nio-8000-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=? order by customfile0_.type asc
- 06:43:45.695 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 06:43:45.697 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:45.699 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 06:43:45.837 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:45.839 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:43:45.839 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:43:45.980 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:43:45.981 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 06:43:45.981 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:45:22.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:50:05.950 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:50:05.953 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:50:05.953 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:50:06.188 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 06:50:06.190 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 06:50:06.190 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 06:50:22.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:55:22.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:00:22.773 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:05:22.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:10:22.776 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:15:22.777 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:20:22.778 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:25:22.780 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:30:22.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:35:22.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:40:22.785 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:45:22.786 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:50:22.787 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:55:22.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:00:22.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:05:22.792 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:05:31.091 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:05:31.095 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:05:31.095 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:05:31.213 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:05:31.214 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:05:31.214 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:10:22.793 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:15:22.795 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:20:22.796 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:20:23.500 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 08:20:23.505 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [438008708@qq.com]
- 08:20:23.505 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 08:20:23.539 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 08:20:23.542 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [476]
- 08:20:23.546 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [116.130.193.142]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 08:20:23 EET 2025]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [476]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [116.130.193.142]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 08:20:23 EET 2025]
- 08:20:23.547 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [畅null任]
- 08:20:23.550 [http-nio-8000-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=?
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.234.253]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-12-29 08:08:59.0]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [116.130.193.142]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 08:20:23 EET 2025]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [476]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-12-29 08:20:48.0]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [永安道罗兰花园7号楼@#永安道罗兰花园7号楼]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-12-29 08:15:21.0]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1991-12-15 00:00:00.0]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500506]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [438008708@qq.com]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [畅]
- 08:20:23.552 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [320322199112167332]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [116.130.193.142]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [任]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 08:20:23 EET 2025]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Chang Ren]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15022443136]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [30000]
- 08:20:23.553 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [476]
- 08:20:47.932 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 08:20:47.934 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [476]
- 08:20:47.934 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057295]
- 08:25:22.797 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:30:22.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:31:12.628 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:31:12.629 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:31:12.629 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:31:12.776 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:31:12.777 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:31:12.777 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:31:28.230 [http-nio-8000-exec-9] 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_.email=? and custominfo0_.password=? limit ?
- 08:31:28.235 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2454175130@qq.com]
- 08:31:28.235 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 08:31:28.270 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 08:31:28.271 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 08:31:28.276 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [27.210.127.135]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 08:31:28 EET 2025]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [698]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [27.210.127.135]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 08:31:28 EET 2025]
- 08:31:28.276 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [执政null郭]
- 08:31:28.278 [http-nio-8000-exec-9] 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=?
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.226.160.159]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-24 02:53:31.0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [698]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [27.210.127.135]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 08:31:28 EET 2025]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [698]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-02-19 07:12:18.0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - []
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-02-19 06:22:49.0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-02-16 00:00:00.0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500737]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2454175130@qq.com]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [执政]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372325200102170816]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [27.210.127.135]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 08:31:28 EET 2025]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiZheng Guo]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [ee48e54a923a34bab151146c30be89a8]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [1585432773]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 08:31:28.279 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [698]
- 08:31:52.577 [http-nio-8000-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=? order by customfile0_.type asc
- 08:31:52.578 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 08:31:52.712 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:31:52.713 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:31:52.713 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:31:52.876 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 08:31:52.879 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [698]
- 08:31:53.198 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:31:53.201 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:31:53.201 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:35:22.800 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:39:23.008 [http-nio-8000-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_.type=?
- 08:39:23.011 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:39:23.014 [http-nio-8000-exec-8] 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 (? , ?)
- 08:39:23.014 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:39:23.015 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 08:40:22.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:45:22.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:50:22.804 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:53:57.495 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:53:57.497 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:53:57.497 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:53:57.616 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:53:57.621 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:53:57.621 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:55:22.806 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:00:22.808 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:05:22.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:10:22.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:15:22.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:20:22.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:25:22.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:30:22.813 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:35:22.815 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:40:22.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:45:22.817 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:50:22.818 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:55:22.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:00:22.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:05:22.821 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:07:34.629 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:07:34.632 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:07:34.632 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:07:35.127 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:07:35.129 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:07:35.129 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:10:22.822 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:15:22.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:20:22.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:25:22.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:30:22.828 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:34:52.757 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:34:52.758 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:34:52.758 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:34:52.831 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:34:52.832 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:34:52.832 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:35:21.658 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 10:35:21.660 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 10:35:21.660 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 10:35:21.681 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 10:35:21.682 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 10:35:21.686 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 10:35:21 EET 2025]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [117.131.230.158]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 10:35:21 EET 2025]
- 10:35:21.687 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 10:35:21.689 [http-nio-8000-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=?
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 10:35:21 EET 2025]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 10:35:21 EET 2025]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 10:35:21.690 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 10:35:22.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:35:32.618 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:35:32.619 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:35:32.619 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:35:32.690 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:35:32.691 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:35:32.691 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:35:37.656 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 10:35:37.660 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [656160087@qq.com]
- 10:35:37.661 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
- 10:35:37.701 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 10:35:37.704 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
- 10:35:37.709 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:35:37.709 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.199.42.66]
- 10:35:37.709 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 10:35:37 EET 2025]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [671]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [183.199.42.66]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 10:35:37 EET 2025]
- 10:35:37.710 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [远null路]
- 10:35:37.712 [http-nio-8000-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=?
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [116.130.194.98]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-11 08:33:04.0]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [183.199.42.66]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 10:35:37 EET 2025]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [671]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-11-11 08:46:31.0]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [霸州市@#4供电小区南区南区2号楼1单元101]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-11-11 08:38:07.0]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1994-07-01 00:00:00.0]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500708]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [廊坊]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:35:37.714 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [656160087@qq.com]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [远]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [230505199407020517]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [183.199.42.66]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [路]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 10:35:37 EET 2025]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Yuan Lu]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18632615690]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [河北]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [065700]
- 10:35:37.715 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [671]
- 10:35:45.073 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
- 10:35:45.076 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
- 10:36:11.352 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 10:36:11.353 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 10:36:11.353 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 10:39:54.836 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:39:54.838 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:39:54.838 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:40:09.790 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:40:09.792 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:40:09.792 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:40:10.900 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:40:10.902 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:40:10.902 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:40:22.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:45:22.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:50:22.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:55:22.833 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:00:22.835 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:05:22.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:10:22.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:15:22.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:20:22.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:25:22.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:30:22.846 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:35:22.847 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:40:22.848 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:45:22.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:50:22.850 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:55:22.851 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:00:22.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:05:22.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:06:34.661 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 12:06:34.665 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [382788914@qq.com]
- 12:06:34.665 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e21d57f1d7947af937d977c9b3cc81a8]
- 12:06:34.698 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 12:06:34.699 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [56]
- 12:06:34.702 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [101.44.82.228]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 12:06:34 EET 2025]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [56]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [56]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [101.44.82.228]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 12:06:34 EET 2025]
- 12:06:34.702 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [鑫竹null李]
- 12:06:34.704 [http-nio-8000-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=?
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.228.253]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-19 07:12:27.0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [56]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [101.44.82.228]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 12:06:34 EET 2025]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [56]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-19 07:35:29.0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [金钟河东街范家房子56号@#天津市南开区东北角艺术公寓A座]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-19 07:35:20.0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1988-03-09 00:00:00.0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500065]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河北]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [382788914@qq.com]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [鑫竹]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120105198803104219]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [101.44.82.228]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 12:06:34 EET 2025]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [XinZhu Li]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e21d57f1d7947af937d977c9b3cc81a8]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920887629]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 12:06:34.705 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [56]
- 12:09:28.288 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:09:28.291 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:09:28.291 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:09:28.669 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:09:28.671 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:09:28.672 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:10:22.855 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:11:39.639 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:11:39.641 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:11:39.641 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:11:40.283 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:11:40.285 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:11:40.285 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:11:50.909 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 12:11:50.911 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [78702890@qq.com]
- 12:11:50.911 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [30eef2cad06482ad06d37731e234c17a]
- 12:11:50.932 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 12:11:50.933 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [337]
- 12:11:50.937 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.203.248]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 12:11:50 EET 2025]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [337]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [337]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [112.254.203.248]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 12:11:50 EET 2025]
- 12:11:50.937 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [景蒙null王]
- 12:11:50.939 [http-nio-8000-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=?
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.116.167]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-06-12 08:52:47.0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [337]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.254.203.248]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 12:11:50 EET 2025]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [337]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-06-12 09:01:14.0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市北区伊春路42号2单元503]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20114]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-06-12 08:58:51.0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1989-09-26 00:00:00.0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500357]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [78702890@qq.com]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [景蒙]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370403198909272747]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.254.203.248]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 12:11:50 EET 2025]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingMeng Wang]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [30eef2cad06482ad06d37731e234c17a]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18505327370]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
- 12:11:50.940 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [337]
- 12:12:08.984 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 12:12:08.986 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [337]
- 12:12:08.986 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057244]
- 12:15:22.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:20:22.858 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:25:22.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:30:22.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:35:22.861 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:40:22.863 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:45:22.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:48:26.507 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:26.513 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:26.513 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:26.616 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:26.618 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:26.618 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:31.820 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:31.821 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:31.821 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:32.634 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:32.636 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:32.636 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:32.842 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:32.844 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:32.844 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:33.839 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:33.841 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:33.841 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:49.248 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 12:48:49.253 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 12:48:49.253 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 12:48:49.295 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 12:48:49.298 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 12:48:49.304 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 12:48:49.304 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.36.117.155]
- 12:48:49.304 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 12:48:49 EET 2025]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [125.36.117.155]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 12:48:49 EET 2025]
- 12:48:49.305 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 12:48:49.307 [http-nio-8000-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=?
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.36.117.155]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 12:48:49 EET 2025]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.36.117.155]
- 12:48:49.309 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 12:48:49 EET 2025]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 12:48:49.310 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 12:48:54.954 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:54.955 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:54.955 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:48:55.532 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:48:55.535 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:48:55.535 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:49:14.059 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 12:49:14.061 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 12:49:14.061 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 12:50:01.451 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 12:50:01.452 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 12:50:01.452 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 12:50:22.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:52:07.116 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:52:07.117 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:52:07.117 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:52:07.261 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 12:52:07.263 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 12:52:07.263 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 12:52:54.322 [http-nio-8000-exec-1] 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_.email=? and custominfo0_.password=? limit ?
- 12:52:54.327 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 12:52:54.327 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 12:52:54.356 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 12:52:54.359 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 12:52:54.363 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 12:52:54.363 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.36.117.155]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 12:52:54 EET 2025]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [125.36.117.155]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 12:52:54 EET 2025]
- 12:52:54.364 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 12:52:54.366 [http-nio-8000-exec-1] 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:52:54.366 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 12:52:54.366 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 12:52:54.366 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 12:52:54.366 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.36.117.155]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 12:52:54 EET 2025]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.36.117.155]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 12:52:54 EET 2025]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 12:52:54.367 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 12:53:14.702 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 12:53:14.703 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 12:53:14.704 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 12:55:22.867 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:00:22.868 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:05:22.869 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:07:19.984 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 13:07:19.987 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [56]
- 13:07:19.987 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057437]
- 13:10:22.871 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:11:10.577 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:11:10.578 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:11:10.578 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:11:10.615 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:11:10.616 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:11:10.616 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:11:42.380 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 13:11:42.382 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 13:11:42.382 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 13:11:42.403 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 13:11:42.405 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 13:11:42.409 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.36.117.155]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 13:11:42 EET 2025]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [125.36.117.155]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 13:11:42 EET 2025]
- 13:11:42.410 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 13:11:42.412 [http-nio-8000-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=?
- 13:11:42.412 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 13:11:42.412 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 13:11:42.412 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.36.117.155]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 13:11:42 EET 2025]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.36.117.155]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 13:11:42 EET 2025]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 13:11:42.413 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 13:12:06.889 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 13:12:06.891 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 13:12:06.891 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 13:14:16.611 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:14:16.612 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:14:16.612 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:14:16.825 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:14:16.826 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:14:16.826 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:15:17.443 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 13:15:17.447 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [382788914@qq.com]
- 13:15:17.447 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e21d57f1d7947af937d977c9b3cc81a8]
- 13:15:17.481 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 13:15:17.483 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [56]
- 13:15:17.486 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [101.44.80.206]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 13:15:17 EET 2025]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [56]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [56]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [101.44.80.206]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 13:15:17 EET 2025]
- 13:15:17.487 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [鑫竹null李]
- 13:15:17.490 [http-nio-8000-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=?
- 13:15:17.490 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.228.253]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-19 07:12:27.0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [56]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [101.44.80.206]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 13:15:17 EET 2025]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [56]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-19 07:35:29.0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [金钟河东街范家房子56号@#天津市南开区东北角艺术公寓A座]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-19 07:35:20.0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1988-03-09 00:00:00.0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500065]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河北]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [382788914@qq.com]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [鑫竹]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120105198803104219]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [101.44.80.206]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 13:15:17 EET 2025]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [XinZhu Li]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e21d57f1d7947af937d977c9b3cc81a8]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920887629]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 13:15:17.491 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [56]
- 13:15:22.872 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:15:30.342 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 13:15:30.344 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [56]
- 13:15:30.344 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057437]
- 13:16:42.249 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:16:42.250 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:16:42.250 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:16:42.317 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 13:16:42.319 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 13:16:42.319 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 13:17:12.988 [http-nio-8000-exec-1] 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_.email=? and custominfo0_.password=? limit ?
- 13:17:12.993 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 13:17:12.993 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 13:17:13.029 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 13:17:13.031 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 13:17:13.036 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.36.117.155]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 13:17:12 EET 2025]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [125.36.117.155]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 13:17:12 EET 2025]
- 13:17:13.036 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 13:17:13.039 [http-nio-8000-exec-1] 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=?
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.36.117.155]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 13:17:12 EET 2025]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:17:13.039 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.36.117.155]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 13:17:12 EET 2025]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 13:17:13.040 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 13:20:22.873 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:25:22.875 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:30:22.876 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:35:22.877 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:40:22.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:45:22.880 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:50:22.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:50:26.175 [http-nio-8000-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:200)
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
- at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
- at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
- at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
- at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
- at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
- at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
- at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 13:50:26.176 [http-nio-8000-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
- com.crm.rely.backend.exception.DataNotFoundException: not found
- at com.crm.rely.backend.controller.NotFoundExceptionController.error(NotFoundExceptionController.java:44)
- at sun.reflect.GeneratedMethodAccessor971.invoke(Unknown Source)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
- at java.lang.reflect.Method.invoke(Unknown Source)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- 13:50:26.177 [http-nio-8000-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.DataNotFoundException: not found
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
- at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
- at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
- at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
- at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
- at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Unknown Source)
- Caused by: com.crm.rely.backend.exception.DataNotFoundException: not found
- at com.crm.rely.backend.controller.NotFoundExceptionController.error(NotFoundExceptionController.java:44)
- at sun.reflect.GeneratedMethodAccessor971.invoke(Unknown Source)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
- at java.lang.reflect.Method.invoke(Unknown Source)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
- ... 25 common frames omitted
- 13:55:22.882 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:00:22.884 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:05:22.885 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:10:22.887 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:15:22.888 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:20:22.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:25:22.890 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:30:22.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:35:22.893 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:40:22.895 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:45:22.897 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:50:22.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:55:22.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:00:22.902 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:01:52.211 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 15:01:52.216 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 15:01:52.216 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 15:01:52.537 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 15:01:52.538 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 15:01:52.538 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 15:05:22.903 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:10:22.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:15:22.906 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:20:22.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:25:22.909 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:30:22.911 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:35:22.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:40:22.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:45:22.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:50:22.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:55:22.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:00:22.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:05:22.920 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:10:22.921 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:15:22.922 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:20:22.924 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:25:22.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:30:22.927 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:35:22.929 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:40:22.930 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:45:22.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:50:22.932 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:55:22.934 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:00:22.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:05:22.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:10:22.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:15:22.939 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:20:22.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:25:22.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:30:22.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:35:22.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:40:22.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:45:22.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:50:22.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:55:22.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:00:22.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:05:22.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:10:22.956 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:15:22.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:20:22.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:25:22.961 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:30:22.962 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:35:22.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:40:22.965 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:45:22.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:49:44.861 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 18:49:44.865 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 18:49:44.865 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 18:50:14.928 [http-nio-8000-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_.email=? and custominfo0_.password=? limit ?
- 18:50:14.932 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3164340453@qq.com]
- 18:50:14.932 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 18:50:14.976 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 18:50:14.979 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 18:50:14.985 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 18:50:14.985 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [125.36.117.155]
- 18:50:14.985 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Feb 19 18:50:14 EET 2025]
- 18:50:14.985 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [706]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [125.36.117.155]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Wed Feb 19 18:50:14 EET 2025]
- 18:50:14.986 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [粉null李]
- 18:50:14.988 [http-nio-8000-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=?
- 18:50:14.989 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
- 18:50:14.989 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-01-09 09:25:46.0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [706]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [125.36.117.155]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Feb 19 18:50:14 EET 2025]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [706]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-01-09 10:04:13.0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [镇雄县柳林村@#镇雄县柳林村]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-01-09 09:35:25.0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-12-14 00:00:00.0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500745]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [昭通]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3164340453@qq.com]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [粉]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [532128200012150561]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [125.36.117.155]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Wed Feb 19 18:50:14 EET 2025]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fen Li]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [aa4bd54d9cac65c6f5e1822c30b05b63]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [19948991383]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [云南]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [657200]
- 18:50:14.990 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [706]
- 18:50:22.968 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:51:04.362 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 18:51:04.363 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [706]
- 18:51:04.363 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057078]
- 18:55:22.968 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:00:22.970 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:05:22.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:10:22.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:15:22.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:20:22.974 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:25:22.976 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:30:22.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:35:22.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:40:22.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:45:22.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:50:22.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:55:22.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:00:22.987 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:05:22.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:10:22.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:15:22.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:20:22.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:25:22.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:30:22.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:35:22.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:40:22.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:45:23.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:50:23.001 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:55:23.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:00:23.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:05:23.006 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:10:23.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:15:23.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:20:23.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:25:23.011 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:30:23.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:35:23.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:40:23.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:45:23.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:50:23.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:55:23.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:00:23.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:05:23.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:10:23.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:15:23.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:20:23.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:25:23.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:30:23.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:35:23.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:40:23.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:45:23.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:50:23.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:55:23.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:00:23.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:05:23.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:10:23.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:15:23.043 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:20:23.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:25:23.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:30:23.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:35:23.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:40:23.052 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:45:23.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:50:23.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:55:23.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
|