logback.2024-12-31.log 619 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183
  1. 00:04:02.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:09:02.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:14:02.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:19:02.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:24:02.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:29:02.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:34:02.108 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:39:02.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:44:02.137 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:49:02.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:54:02.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:59:02.179 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:04:02.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:09:02.208 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:14:02.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:19:02.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:24:02.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:29:02.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:34:02.281 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:39:02.295 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:44:02.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:49:02.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:54:02.339 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:59:02.353 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:04:02.368 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:09:02.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:14:02.397 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:19:02.412 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:24:02.427 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:29:02.441 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:29:08.793 [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 ?
  32. 02:29:08.798 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [280342711@qq.com]
  33. 02:29:08.798 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c93d6c493a6a3283f1eb3c8bec6c3aec]
  34. 02:29:08.843 [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 ?
  35. 02:29:08.845 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  36. 02:29:08.849 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  37. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.167.196.129]
  38. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 02:29:08 EET 2024]
  39. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [571]
  40. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  41. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  42. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  43. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  44. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  45. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [571]
  46. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.167.196.129]
  47. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 02:29:08 EET 2024]
  48. 02:29:08.849 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [倩null李]
  49. 02:29:08.851 [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=?
  50. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.161.185.138]
  51. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-06-24 04:23:03.0]
  52. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [571]
  53. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.167.196.129]
  54. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 02:29:08 EET 2024]
  55. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [571]
  56. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  57. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  58. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-06-30 06:03:10.0]
  59. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  60. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  61. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [凤山道太阳城皓林园]
  62. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  63. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  64. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-06-29 06:38:10.0]
  65. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  66. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1987-02-28 00:00:00.0]
  67. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500605]
  68. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  69. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  70. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
  71. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  72. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  73. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  74. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  75. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [280342711@qq.com]
  76. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [倩]
  77. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  78. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  79. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  80. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  81. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  82. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130322198703014864]
  83. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  84. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  85. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.167.196.129]
  86. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
  87. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 02:29:08 EET 2024]
  88. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  89. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Qing Li]
  90. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  91. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c93d6c493a6a3283f1eb3c8bec6c3aec]
  92. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18920536982]
  93. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  94. 02:29:08.852 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  95. 02:29:08.853 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  96. 02:29:08.853 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  97. 02:29:08.853 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [571]
  98. 02:29:29.773 [http-nio-8000-exec-11] 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=?
  99. 02:29:29.777 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  100. 02:30:16.041 [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=?
  101. 02:30:16.042 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  102. 02:30:16.043 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057171]
  103. 02:34:02.455 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  104. 02:39:02.470 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  105. 02:44:02.485 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  106. 02:49:02.500 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  107. 02:51:58.190 [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
  108. 02:51:58.192 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  109. 02:51:58.192 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  110. 02:51:58.910 [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
  111. 02:51:58.912 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  112. 02:51:58.912 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  113. 02:54:02.515 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  114. 02:57:12.769 [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
  115. 02:57:12.770 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  116. 02:57:12.770 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  117. 02:57:12.811 [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
  118. 02:57:12.813 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  119. 02:57:12.813 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  120. 02:57:31.425 [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 ?
  121. 02:57:31.427 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [993745813@qq.com]
  122. 02:57:31.427 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b1bb655d007cd3c4dd482a01b7e31be0]
  123. 02:57:31.453 [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 ?
  124. 02:57:31.454 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [31]
  125. 02:57:31.458 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  126. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  127. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 02:57:31 EET 2024]
  128. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [31]
  129. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  130. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  131. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  132. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  133. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  134. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [31]
  135. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [117.131.230.158]
  136. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 02:57:31 EET 2024]
  137. 02:57:31.458 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [春亮null马]
  138. 02:57:31.460 [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=?
  139. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
  140. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-19 02:43:55.0]
  141. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [31]
  142. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  143. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 02:57:31 EET 2024]
  144. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [31]
  145. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  146. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  147. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-19 03:05:48.0]
  148. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  149. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  150. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [福东里]
  151. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  152. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  153. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-19 03:04:18.0]
  154. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  155. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1998-02-06 00:00:00.0]
  156. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500040]
  157. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  158. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  159. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
  160. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  161. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  162. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  163. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  164. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [993745813@qq.com]
  165. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [春亮]
  166. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  167. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  168. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  169. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  170. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  171. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130321199802079012]
  172. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  173. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  174. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  175. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [马]
  176. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 02:57:31 EET 2024]
  177. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  178. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChunLiang Ma]
  179. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  180. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b1bb655d007cd3c4dd482a01b7e31be0]
  181. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15230358136]
  182. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  183. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  184. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  185. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  186. 02:57:31.461 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [31]
  187. 02:57:32.769 [http-nio-8000-exec-11] 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
  188. 02:57:32.770 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  189. 02:57:32.771 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  190. 02:57:32.841 [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
  191. 02:57:32.842 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  192. 02:57:32.843 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  193. 02:59:02.530 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  194. 02:59:36.357 [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=?
  195. 02:59:36.359 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [31]
  196. 02:59:36.359 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057443]
  197. 03:04:02.545 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  198. 03:09:02.559 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  199. 03:12:13.410 [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
  200. 03:12:13.411 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  201. 03:12:13.411 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  202. 03:12:13.483 [http-nio-8000-exec-11] 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
  203. 03:12:13.484 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  204. 03:12:13.484 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  205. 03:14:02.574 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  206. 03:15:36.040 [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 ?
  207. 03:15:36.046 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [656160087@qq.com]
  208. 03:15:36.046 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
  209. 03:15:36.069 [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 ?
  210. 03:15:36.071 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
  211. 03:15:36.076 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  212. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.228.111]
  213. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:15:36 EET 2024]
  214. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
  215. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  216. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  217. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  218. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  219. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  220. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [671]
  221. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.33.228.111]
  222. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 03:15:36 EET 2024]
  223. 03:15:36.076 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [远null路]
  224. 03:15:36.080 [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=?
  225. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [116.130.194.98]
  226. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-11 08:33:04.0]
  227. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
  228. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.228.111]
  229. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:15:36 EET 2024]
  230. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [671]
  231. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  232. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  233. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-11-11 08:46:31.0]
  234. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  235. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  236. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [霸州市@#4供电小区南区南区2号楼1单元101]
  237. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  238. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  239. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-11-11 08:38:07.0]
  240. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  241. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1994-07-01 00:00:00.0]
  242. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500708]
  243. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  244. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  245. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [廊坊]
  246. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  247. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  248. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  249. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  250. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [656160087@qq.com]
  251. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [远]
  252. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  253. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  254. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  255. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  256. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  257. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [230505199407020517]
  258. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  259. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  260. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.228.111]
  261. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [路]
  262. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 03:15:36 EET 2024]
  263. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  264. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Yuan Lu]
  265. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  266. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
  267. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18632615690]
  268. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [河北]
  269. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  270. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  271. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [065700]
  272. 03:15:36.081 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [671]
  273. 03:15:50.601 [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=?
  274. 03:15:50.603 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
  275. 03:15:50.603 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057280]
  276. 03:19:02.589 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  277. 03:23:29.275 [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 ?
  278. 03:23:29.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  279. 03:23:29.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c155b8e53073140727b590f6f6f7be60]
  280. 03:23:29.309 [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 ?
  281. 03:23:29.312 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [299]
  282. 03:23:29.315 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  283. 03:23:29.315 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  284. 03:23:29.315 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:23:29 EET 2024]
  285. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [299]
  286. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  287. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  288. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  289. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  290. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  291. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [299]
  292. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  293. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 03:23:29 EET 2024]
  294. 03:23:29.316 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [雷null王]
  295. 03:23:29.318 [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=?
  296. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.245]
  297. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:55:33.0]
  298. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [299]
  299. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  300. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:23:29 EET 2024]
  301. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [299]
  302. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  303. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  304. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-05-19 06:04:03.0]
  305. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  306. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  307. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市北区金华路36号@#市北区金华路36号]
  308. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  309. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  310. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-05-19 06:03:09.0]
  311. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  312. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1984-11-29 00:00:00.0]
  313. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500314]
  314. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  315. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  316. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  317. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  318. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  319. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  320. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  321. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [276929625@qq.com]
  322. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [雷]
  323. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  324. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  325. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  326. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  327. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  328. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370683198411309218]
  329. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  330. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  331. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  332. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  333. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 03:23:29 EET 2024]
  334. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  335. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Lei Wang]
  336. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  337. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c155b8e53073140727b590f6f6f7be60]
  338. 03:23:29.319 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18562585931]
  339. 03:23:29.320 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  340. 03:23:29.320 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  341. 03:23:29.320 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  342. 03:23:29.320 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  343. 03:23:29.320 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [299]
  344. 03:23:51.145 [http-nio-8000-exec-11] 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
  345. 03:23:51.147 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  346. 03:23:51.147 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  347. 03:23:51.148 [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
  348. 03:23:51.153 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  349. 03:23:51.153 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  350. 03:24:02.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  351. 03:24:21.817 [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 ?
  352. 03:24:21.819 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [276929625@qq.com]
  353. 03:24:21.819 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c155b8e53073140727b590f6f6f7be60]
  354. 03:24:21.839 [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 ?
  355. 03:24:21.841 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [299]
  356. 03:24:21.844 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  357. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  358. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:24:21 EET 2024]
  359. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [299]
  360. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  361. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  362. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  363. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  364. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  365. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [299]
  366. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  367. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 03:24:21 EET 2024]
  368. 03:24:21.844 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [雷null王]
  369. 03:24:21.847 [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=?
  370. 03:24:21.847 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.245]
  371. 03:24:21.847 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-19 05:55:33.0]
  372. 03:24:21.847 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [299]
  373. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  374. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:24:21 EET 2024]
  375. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [299]
  376. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  377. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  378. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-05-19 06:04:03.0]
  379. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  380. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  381. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市北区金华路36号@#市北区金华路36号]
  382. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  383. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  384. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-05-19 06:03:09.0]
  385. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  386. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1984-11-29 00:00:00.0]
  387. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500314]
  388. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  389. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  390. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  391. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  392. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  393. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  394. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  395. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [276929625@qq.com]
  396. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [雷]
  397. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  398. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  399. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  400. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  401. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  402. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370683198411309218]
  403. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  404. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  405. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  406. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  407. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 03:24:21 EET 2024]
  408. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  409. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Lei Wang]
  410. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  411. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c155b8e53073140727b590f6f6f7be60]
  412. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18562585931]
  413. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  414. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  415. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  416. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  417. 03:24:21.848 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [299]
  418. 03:24:27.680 [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
  419. 03:24:27.682 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  420. 03:24:27.682 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  421. 03:24:27.801 [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
  422. 03:24:27.803 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  423. 03:24:27.803 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  424. 03:29:02.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  425. 03:29:51.197 [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
  426. 03:29:51.199 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  427. 03:29:51.199 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  428. 03:29:51.391 [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
  429. 03:29:51.392 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  430. 03:29:51.392 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  431. 03:31:11.808 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  432. 03:31:11.808 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  433. 03:31:11.814 [http-nio-8000-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"122.4.123.153","addTime":1735608671814,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-12-31 05:31:11","V_CODE_V":"743929","V_DATE_TIME_V":"2024-12-31 03:31:11"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_SEND_EMAIL_CODE_CN","users":"wjh-email@163.com"}
  434. 03:33:18.298 [http-nio-8000-exec-11] INFO c.c.c.s.impl.CustomInfoServiceImpl - register email:wjh-email@163.com,emailCode:743929,agentId:20117,comPoint:20
  435. 03:33:18.302 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  436. 03:33:18.303 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  437. 03:33:18.305 [http-nio-8000-exec-11] 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 ?
  438. 03:33:18.307 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  439. 03:33:18.308 [http-nio-8000-exec-11] 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=?
  440. 03:33:18.309 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  441. 03:33:18.319 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - insert into custom_info (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) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  442. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  443. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  444. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  445. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  446. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  447. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  448. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  449. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  450. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  451. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  452. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  453. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  454. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  455. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  456. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  457. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  458. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  459. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  460. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  461. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  462. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  463. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  464. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  465. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  466. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  467. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  468. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  469. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  470. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  471. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  472. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  473. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  474. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  475. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  476. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  477. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  478. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  479. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  480. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  481. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  482. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  483. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  484. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  485. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  486. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  487. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  488. 03:33:18.320 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  489. 03:33:18.323 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"122.4.123.153","addTime":1735608798322,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE","imageFilesMap":null,"map":{"V_EMAIL_V":"wjh-email@163.com","V_C_ID_V":"500740","V_DATE_TIME_V":"2024-12-31 03:33:18"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_COMPLETE_SEND_CN","users":"wjh-email@163.com"}
  490. 03:33:18.329 [http-nio-8000-exec-11] 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=?
  491. 03:33:18.329 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  492. 03:33:18.329 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"122.4.123.153","addTime":1735608798329,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE_MANAGER","imageFilesMap":null,"map":{"V_EMAIL_V":"wjh-email@163.com","V_C_ID_V":"500740","V_DATE_TIME_V":"2024-12-31 03:33:18"},"note":null,"sendDate":null,"subject":null,"templateName":"REGISTER_COMPLETE_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  493. 03:33:18.331 [http-nio-8000-exec-11] 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=?
  494. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  495. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  496. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  497. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  498. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  499. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  500. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  501. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  502. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  503. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  504. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  505. 03:33:18.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  506. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  507. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  508. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  509. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  510. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  511. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  512. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  513. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  514. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  515. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  516. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  517. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  518. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  519. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  520. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  521. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  522. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  523. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  524. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  525. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  526. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  527. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  528. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  529. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  530. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  531. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  532. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  533. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  534. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  535. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  536. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  537. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  538. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  539. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  540. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  541. 03:33:18.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  542. 03:33:18.507 [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 ?
  543. 03:33:18.511 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  544. 03:33:18.511 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  545. 03:33:18.545 [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 ?
  546. 03:33:18.547 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  547. 03:33:18.551 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  548. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  549. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  550. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  551. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  552. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  553. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  554. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  555. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  556. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  557. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  558. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  559. 03:33:18.551 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [nullnullnull]
  560. 03:33:18.553 [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=?
  561. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  562. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  563. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  564. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  565. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  566. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  567. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  568. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  569. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  570. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  571. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  572. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  573. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  574. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  575. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  576. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  577. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  578. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  579. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  580. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  581. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  582. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  583. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  584. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  585. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  586. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  587. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  588. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  589. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  590. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  591. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  592. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  593. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  594. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  595. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  596. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  597. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  598. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 03:33:18 EET 2024]
  599. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  600. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  601. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  602. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  603. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  604. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  605. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  606. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  607. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  608. 03:33:18.554 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  609. 03:33:32.102 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  610. 03:33:32.104 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  611. 03:33:32.105 [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
  612. 03:33:32.106 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  613. 03:33:32.107 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  614. 03:33:32.107 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
  615. 03:33:32.303 [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
  616. 03:33:32.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  617. 03:33:32.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  618. 03:33:32.710 [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
  619. 03:33:32.711 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  620. 03:33:32.711 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  621. 03:34:02.633 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  622. 03:36:30.763 [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
  623. 03:36:30.766 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1359]
  624. 03:36:30.766 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  625. 03:39:02.647 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  626. 03:44:02.662 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  627. 03:44:21.587 [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 in (? , ?)
  628. 03:44:21.588 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  629. 03:44:21.588 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  630. 03:44:21.591 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  631. 03:44:21.591 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  632. 03:44:21.591 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  633. 03:44:21.611 [http-nio-8000-exec-7] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  634. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  635. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:44:21 EET 2024]
  636. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  637. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  638. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  639. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  640. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  641. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  642. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  643. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/701/info/6f0e23a22b7a4f12acd241e6966e3601.jpg]
  644. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  645. 03:44:21.612 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  646. 03:44:30.750 [http-nio-8000-exec-11] 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 (? , ?)
  647. 03:44:30.751 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  648. 03:44:30.751 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  649. 03:44:30.754 [http-nio-8000-exec-11] 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
  650. 03:44:30.754 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  651. 03:44:30.754 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [2]
  652. 03:44:30.773 [http-nio-8000-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  653. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  654. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:44:30 EET 2024]
  655. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  656. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  657. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  658. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  659. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  660. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  661. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  662. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/701/info/7b6c69cac6774a2591c700df4f86447c.jpg]
  663. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  664. 03:44:30.774 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  665. 03:44:52.965 [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 in (? , ?)
  666. 03:44:52.967 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  667. 03:44:52.967 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  668. 03:44:52.967 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  669. 03:44:52.968 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  670. 03:44:52.968 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [3]
  671. 03:44:53.029 [http-nio-8000-exec-7] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  672. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  673. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:44:52 EET 2024]
  674. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  675. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  676. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  677. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  678. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  679. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  680. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  681. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/701/info/f0a438ba99004014af0b017491755409.jpg]
  682. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  683. 03:44:53.030 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  684. 03:44:59.439 [http-nio-8000-exec-2] 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
  685. 03:44:59.442 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  686. 03:44:59.444 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.identity=? limit ?
  687. 03:44:59.444 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [370125197907175932]
  688. 03:44:59.450 [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_.code=?
  689. 03:44:59.450 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  690. 03:44:59.458 [http-nio-8000-exec-2] 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
  691. 03:44:59.458 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  692. 03:44:59.462 [http-nio-8000-exec-2] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  693. 03:44:59.462 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  694. 03:44:59.462 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:44:59 EET 2024]
  695. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  696. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  697. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  698. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  699. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  700. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [701]
  701. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [INTEGER] - [1]
  702. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [1]
  703. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  704. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  705. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [1]
  706. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [1]
  707. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3]
  708. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  709. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [1]
  710. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [1]
  711. 03:44:59.463 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [1]
  712. 03:44:59.464 [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=?
  713. 03:44:59.464 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  714. 03:44:59.465 [http-nio-8000-exec-2] 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=?
  715. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  716. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  717. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  718. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  719. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:44:59 EET 2024]
  720. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  721. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  722. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  723. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  724. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  725. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  726. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  727. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  728. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  729. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  730. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  731. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [Mon Jul 16 18:00:00 EET 1979]
  732. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  733. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  734. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  735. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  736. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  737. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  738. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  739. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  740. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  741. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  742. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  743. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  744. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  745. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  746. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  747. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  748. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  749. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  750. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  751. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  752. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2024-12-31 03:33:19.0]
  753. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  754. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  755. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  756. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  757. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  758. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  759. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  760. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  761. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  762. 03:44:59.466 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  763. 03:44:59.585 [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
  764. 03:44:59.586 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  765. 03:44:59.818 [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_.id=? limit ? for update
  766. 03:44:59.820 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  767. 03:44:59.821 [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=?
  768. 03:44:59.821 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  769. 03:44:59.822 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  770. 03:44:59.823 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  771. 03:44:59.826 [http-nio-8000-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"122.4.123.153","addTime":1735609499826,"addUser":701,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"SUBMIT_VERIFICATION","imageFilesMap":null,"map":{"V_C_ID_V":"500740","V_P_IB_NO_V":"500740","V_NAME_V":"敬华 王","V_EMAIL_V":"wjh-email@163.com","V_APPLY_TIME_V":"2024-12-31 03:44:59","V_DATE_TIME_V":"2024-12-31 03:44:59"},"note":null,"sendDate":null,"subject":null,"templateName":"SUBMIT_VERIFICATION_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  772. 03:44:59.831 [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=?
  773. 03:44:59.832 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  774. 03:44:59.832 [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=?
  775. 03:44:59.832 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  776. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  777. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  778. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  779. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 03:44:59 EET 2024]
  780. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  781. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  782. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  783. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  784. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  785. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  786. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  787. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  788. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  789. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [Tue Dec 31 03:44:59 EET 2024]
  790. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  791. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-16 00:00:00.0]
  792. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  793. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  794. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  795. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  796. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  797. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  798. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  799. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  800. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  801. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  802. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  803. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  804. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  805. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  806. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  807. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  808. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  809. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  810. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  811. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  812. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2024-12-31 03:33:19.0]
  813. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  814. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  815. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  816. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  817. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  818. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  819. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  820. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  821. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  822. 03:44:59.833 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  823. 03:45:00.107 [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
  824. 03:45:00.108 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  825. 03:45:00.108 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  826. 03:45:00.267 [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
  827. 03:45:00.270 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  828. 03:45:00.270 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  829. 03:45:00.401 [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
  830. 03:45:00.402 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1359]
  831. 03:45:00.402 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  832. 03:45:16.397 [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_.custom_id=? order by customfile0_.type asc
  833. 03:45:16.399 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  834. 03:45:16.528 [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=?
  835. 03:45:16.530 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  836. 03:45:16.534 [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
  837. 03:45:16.535 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  838. 03:45:16.535 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  839. 03:45:16.774 [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
  840. 03:45:16.775 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  841. 03:45:16.775 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  842. 03:45:21.087 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  843. 03:45:21.088 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  844. 03:45:21.090 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  845. 03:45:21.090 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  846. 03:46:49.218 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  847. 03:46:49.220 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  848. 03:46:49.220 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  849. 03:48:55.502 [http-nio-8000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  850. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  851. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 03:48:55 EET 2024]
  852. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  853. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  854. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  855. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  856. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  857. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  858. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  859. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [交通银行青岛支行]
  860. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6222621010014185849]
  861. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  862. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [/file/701/bank/4db0f83b118f49dd938001bd13a8fe07.jpg]
  863. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国交通银行-CTB]
  864. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [敬华 王]
  865. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [701]
  866. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
  867. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  868. 03:48:55.503 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  869. 03:48:55.674 [http-nio-8000-exec-11] 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=?
  870. 03:48:55.677 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  871. 03:48:55.813 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  872. 03:48:55.814 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  873. 03:49:02.677 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  874. 03:54:02.691 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  875. 03:59:02.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  876. 04:01:20.722 [http-nio-8000-exec-5] 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=?
  877. 04:01:20.724 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  878. 04:01:20.726 [http-nio-8000-exec-5] 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 (? , ?)
  879. 04:01:20.727 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  880. 04:01:20.727 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  881. 04:02:14.559 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select count(accountapp0_.id) as col_0_0_ from account_apply accountapp0_ where accountapp0_.custom_id=? and accountapp0_.status=?
  882. 04:02:14.560 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  883. 04:02:14.560 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  884. 04:02:14.565 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_currency accounttyp0_ where accounttyp0_.currency=? and accounttyp0_.type=?
  885. 04:02:14.565 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [USD]
  886. 04:02:14.565 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  887. 04:02:14.566 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_leverage accounttyp0_ where accounttyp0_.leverage=? and accounttyp0_.type=?
  888. 04:02:14.567 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [100]
  889. 04:02:14.567 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  890. 04:02:14.568 [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_.id=? limit ?
  891. 04:02:14.570 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  892. 04:02:14.572 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into account_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, account_status, agent_id, c_id, com_point, comment, currency, custom_id, group_code, group_type, hide, investor_password, leverage, login, master_password, operation_type, platform, pos, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  893. 04:02:14.572 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  894. 04:02:14.572 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:02:14 EET 2024]
  895. 04:02:14.572 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  896. 04:02:14.572 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  897. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  898. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  899. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  900. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  901. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  902. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  903. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  904. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [null]
  905. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  906. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500740]
  907. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  908. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  909. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  910. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [701]
  911. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  912. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  913. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  914. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [qy6jovD2]
  915. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  916. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  917. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [Wjh19790717]
  918. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [null]
  919. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  920. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  921. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412310402146126]
  922. 04:02:14.573 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  923. 04:02:14.574 [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_.id=? limit ?
  924. 04:02:14.575 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  925. 04:02:14.575 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  926. 04:02:14.576 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  927. 04:02:14.577 [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=?
  928. 04:02:14.578 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  929. 04:02:14.580 [http-nio-8000-exec-6] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"122.4.123.153","addTime":1735610534580,"addUser":701,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_APPLY","imageFilesMap":null,"map":{"V_C_ID_V":"500740","V_LOGIN_TYPE_V":"经典账户","V_LEVERAGE_V":"100","V_DATE_TIME_V":"2024-12-31 04:02:14","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0125","V_NAME_V":"敬华 王","V_CURRENCY_TYPE_V":"USD","V_APPLY_TIME_V":"2024-12-31 04:02:14"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_APPLY_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  930. 04:04:02.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  931. 04:09:02.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  932. 04:14:02.750 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  933. 04:19:02.765 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  934. 04:21:00.792 [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
  935. 04:21:00.793 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  936. 04:21:00.794 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  937. 04:21:01.060 [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
  938. 04:21:01.061 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  939. 04:21:01.061 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  940. 04:22:06.291 [http-nio-8000-exec-11] 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
  941. 04:22:06.293 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  942. 04:22:06.293 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  943. 04:22:06.535 [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
  944. 04:22:06.536 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  945. 04:22:06.536 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  946. 04:22:47.247 [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 ?
  947. 04:22:47.249 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  948. 04:22:47.249 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  949. 04:22:47.270 [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 ?
  950. 04:22:47.272 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  951. 04:22:47.274 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  952. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.27.158.145]
  953. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:22:47 EET 2024]
  954. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  955. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  956. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  957. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  958. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  959. 04:22:47.274 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  960. 04:22:47.275 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  961. 04:22:47.275 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [60.27.158.145]
  962. 04:22:47.275 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 04:22:47 EET 2024]
  963. 04:22:47.275 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  964. 04:22:47.277 [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=?
  965. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  966. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  967. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  968. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [60.27.158.145]
  969. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:22:47 EET 2024]
  970. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  971. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  972. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  973. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  974. 04:22:47.277 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  975. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  976. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  977. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  978. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  979. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  980. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  981. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  982. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  983. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  984. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  985. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  986. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  987. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  988. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  989. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  990. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  991. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  992. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  993. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  994. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  995. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  996. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  997. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  998. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  999. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1000. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [60.27.158.145]
  1001. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  1002. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 04:22:47 EET 2024]
  1003. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1004. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  1005. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1006. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  1007. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  1008. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1009. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1010. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1011. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  1012. 04:22:47.278 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  1013. 04:24:02.779 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1014. 04:24:17.455 [http-nio-8000-exec-10] 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=?
  1015. 04:24:17.456 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1016. 04:24:17.458 [http-nio-8000-exec-10] 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 (? , ?)
  1017. 04:24:17.458 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1018. 04:24:17.458 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1019. 04:26:36.890 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1020. 04:26:36.892 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1021. 04:26:36.893 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1022. 04:26:36.894 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1023. 04:26:36.894 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1024. 04:29:02.794 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1025. 04:32:27.548 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select accountapp0_.id as id1_0_0_, accountapp0_.add_ip as add_ip2_0_0_, accountapp0_.add_time as add_time3_0_0_, accountapp0_.add_user as add_user4_0_0_, accountapp0_.modify_ip as modify_i5_0_0_, accountapp0_.modify_time as modify_t6_0_0_, accountapp0_.modify_user as modify_u7_0_0_, accountapp0_.note as note8_0_0_, accountapp0_.approve_desc as approve_9_0_0_, accountapp0_.approve_time as approve10_0_0_, accountapp0_.approve_user as approve11_0_0_, accountapp0_.status as status12_0_0_, accountapp0_.account_status as account13_0_0_, accountapp0_.agent_id as agent_i14_0_0_, accountapp0_.c_id as c_id15_0_0_, accountapp0_.com_point as com_poi16_0_0_, accountapp0_.comment as comment17_0_0_, accountapp0_.currency as currenc18_0_0_, accountapp0_.custom_id as custom_19_0_0_, accountapp0_.group_code as group_c20_0_0_, accountapp0_.group_type as group_t21_0_0_, accountapp0_.hide as hide22_0_0_, accountapp0_.investor_password as investo23_0_0_, accountapp0_.leverage as leverag24_0_0_, accountapp0_.login as login25_0_0_, accountapp0_.master_password as master_26_0_0_, accountapp0_.operation_type as operati27_0_0_, accountapp0_.platform as platfor28_0_0_, accountapp0_.pos as pos29_0_0_, accountapp0_.serial as serial30_0_0_, accountapp0_.type as type31_0_0_ from account_apply accountapp0_ where accountapp0_.id=?
  1026. 04:32:27.550 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [761]
  1027. 04:32:27.553 [http-nio-8000-exec-2] 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 ?
  1028. 04:32:27.554 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1029. 04:32:27.556 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - insert into custom_login (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, c_id, close_functions, com_point, comment, currency, custom_id, group_code, group_type, hide, leverage, login, login_status, login_status_number, platform, pos, `type`, valid) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1030. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  1031. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:32:27 EET 2024]
  1032. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1033. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1034. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1035. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1036. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1037. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20117]
  1038. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [500740]
  1039. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [null]
  1040. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [20.0]
  1041. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1042. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [USD]
  1043. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [701]
  1044. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [MICBb2]
  1045. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [1]
  1046. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
  1047. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [100]
  1048. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [9057052]
  1049. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [2]
  1050. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  1051. 04:32:27.556 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [MT4]
  1052. 04:32:27.557 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [2]
  1053. 04:32:27.557 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [1]
  1054. 04:32:27.557 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [1]
  1055. 04:32:27.559 [http-nio-8000-exec-2] 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 ?
  1056. 04:32:27.561 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1057. 04:32:27.563 [http-nio-8000-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1735612347563,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_COMPLETE","imageFilesMap":null,"map":{"V_LOGIN_TYPE_V":"classic","V_C_ID_V":"500740","V_MASTER_PASSWORD_V":"Wjh19790717","V_LOGIN_V":"9057052","V_DATE_TIME_V":"2024-12-31 04:32:27","V_INVESTOR_PASSWORD_V":"qy6jovD2","V_PLATFORM_V":"MT4","V_NAME_V":"敬华 王"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_COMPLETE_SEND_CN","users":"wjh-email@163.com"}
  1058. 04:32:27.568 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - update account_apply set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, account_status=?, agent_id=?, c_id=?, com_point=?, comment=?, currency=?, custom_id=?, group_code=?, group_type=?, hide=?, investor_password=?, leverage=?, login=?, master_password=?, operation_type=?, platform=?, pos=?, serial=?, type=? where id=?
  1059. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1060. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 04:02:15.0]
  1061. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  1062. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1063. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1064. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1065. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1066. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1067. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Dec 31 04:32:27 EET 2024]
  1068. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1069. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1070. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1071. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1072. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500740]
  1073. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  1074. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1075. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  1076. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [701]
  1077. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [MICBb2]
  1078. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  1079. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  1080. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [qy6jovD2]
  1081. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  1082. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [9057052]
  1083. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [Wjh19790717]
  1084. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [2]
  1085. 04:32:27.570 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  1086. 04:32:27.571 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1087. 04:32:27.571 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412310402146126]
  1088. 04:32:27.571 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1089. 04:32:27.571 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [761]
  1090. 04:34:02.808 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1091. 04:35:51.222 [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
  1092. 04:35:51.223 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1093. 04:35:51.223 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1094. 04:35:51.464 [http-nio-8000-exec-11] 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
  1095. 04:35:51.466 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1096. 04:35:51.466 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1097. 04:35:56.328 [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
  1098. 04:35:56.329 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1099. 04:35:56.329 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1100. 04:35:57.408 [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
  1101. 04:35:57.409 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1102. 04:35:57.409 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1103. 04:38:47.621 [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 ?
  1104. 04:38:47.623 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  1105. 04:38:47.623 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  1106. 04:38:47.643 [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 ?
  1107. 04:38:47.645 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1108. 04:38:47.649 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1109. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1110. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:38:47 EET 2024]
  1111. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  1112. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1113. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1114. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1115. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1116. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1117. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  1118. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  1119. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 04:38:47 EET 2024]
  1120. 04:38:47.649 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [敬华null王]
  1121. 04:38:47.652 [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=?
  1122. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1123. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  1124. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  1125. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  1126. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:38:47 EET 2024]
  1127. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  1128. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1129. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1130. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-31 03:46:07.0]
  1131. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1132. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1133. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  1134. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1135. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1136. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-31 03:45:00.0]
  1137. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1138. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-16 00:00:00.0]
  1139. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  1140. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1141. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1142. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1143. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1144. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1145. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1146. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1147. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  1148. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  1149. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1150. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1151. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1152. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1153. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1154. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  1155. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1156. 04:38:47.652 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1157. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  1158. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1159. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 04:38:47 EET 2024]
  1160. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1161. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  1162. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1163. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  1164. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  1165. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1166. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1167. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1168. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  1169. 04:38:47.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  1170. 04:39:02.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1171. 04:40:35.824 [http-nio-8000-exec-6] 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=?
  1172. 04:40:35.825 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1173. 04:41:37.085 [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=?
  1174. 04:41:37.086 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1175. 04:41:37.086 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057052]
  1176. 04:42:04.533 [http-nio-8000-exec-11] 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
  1177. 04:42:04.534 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1178. 04:42:04.534 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1179. 04:42:04.951 [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
  1180. 04:42:04.953 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1181. 04:42:04.953 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1182. 04:43:34.132 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  1183. 04:43:34.133 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [657179908@qq.com]
  1184. 04:43:34.142 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1735613014142,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-12-31 06:43:34","V_CODE_V":"676863","V_DATE_TIME_V":"2024-12-31 04:43:34"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_SEND_EMAIL_CODE_CN","users":"657179908@qq.com"}
  1185. 04:44:02.838 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1186. 04:49:02.014 [http-nio-8000-exec-11] INFO c.c.c.s.impl.CustomInfoServiceImpl - register email:657179908@qq.com,emailCode:676863,agentId:20098,comPoint:20
  1187. 04:49:02.016 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  1188. 04:49:02.016 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [657179908@qq.com]
  1189. 04:49:02.018 [http-nio-8000-exec-11] 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 ?
  1190. 04:49:02.019 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20098]
  1191. 04:49:02.020 [http-nio-8000-exec-11] 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=?
  1192. 04:49:02.021 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  1193. 04:49:02.031 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - insert into custom_info (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) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1194. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1195. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1196. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1197. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1198. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1199. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1200. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1201. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1202. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1203. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1204. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1205. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1206. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1207. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  1208. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  1209. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1210. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  1211. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500741]
  1212. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1213. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1214. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1215. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1216. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1217. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1218. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1219. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [657179908@qq.com]
  1220. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1221. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  1222. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1223. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1224. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1225. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1226. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  1227. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1228. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  1229. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1230. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  1231. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  1232. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1233. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  1234. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  1235. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1236. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622922027]
  1237. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  1238. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1239. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1240. 04:49:02.032 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  1241. 04:49:02.035 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1735613342035,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE","imageFilesMap":null,"map":{"V_EMAIL_V":"657179908@qq.com","V_C_ID_V":"500741","V_DATE_TIME_V":"2024-12-31 04:49:02"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_COMPLETE_SEND_CN","users":"657179908@qq.com"}
  1242. 04:49:02.039 [http-nio-8000-exec-11] 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=?
  1243. 04:49:02.039 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  1244. 04:49:02.040 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1735613342040,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE_MANAGER","imageFilesMap":null,"map":{"V_EMAIL_V":"657179908@qq.com","V_C_ID_V":"500741","V_DATE_TIME_V":"2024-12-31 04:49:02"},"note":null,"sendDate":null,"subject":null,"templateName":"REGISTER_COMPLETE_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  1245. 04:49:02.042 [http-nio-8000-exec-11] 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=?
  1246. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1247. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1248. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1249. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1250. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1251. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1252. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1253. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1254. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1255. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1256. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1257. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1258. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1259. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  1260. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  1261. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1262. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  1263. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500741]
  1264. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1265. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1266. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1267. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1268. 04:49:02.042 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1269. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1270. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1271. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [657179908@qq.com]
  1272. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1273. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  1274. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1275. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1276. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1277. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1278. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  1279. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1280. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  1281. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1282. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  1283. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  1284. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1285. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  1286. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  1287. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1288. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622922027]
  1289. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  1290. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1291. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1292. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  1293. 04:49:02.043 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [702]
  1294. 04:49:02.614 [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 ?
  1295. 04:49:02.616 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [657179908@qq.com]
  1296. 04:49:02.616 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1297. 04:49:02.633 [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 ?
  1298. 04:49:02.634 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1299. 04:49:02.638 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1300. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1301. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1302. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1303. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1304. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1305. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1306. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1307. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1308. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [702]
  1309. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [117.131.230.158]
  1310. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1311. 04:49:02.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [nullnullnull]
  1312. 04:49:02.641 [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=?
  1313. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1314. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 04:49:02.0]
  1315. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1316. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1317. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1318. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [702]
  1319. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1320. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1321. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1322. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1323. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1324. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1325. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1326. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  1327. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  1328. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1329. 04:49:02.641 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  1330. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500741]
  1331. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1332. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1333. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  1334. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1335. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1336. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1337. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1338. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [657179908@qq.com]
  1339. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1340. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  1341. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1342. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1343. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1344. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1345. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  1346. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1347. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1348. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  1349. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  1350. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 04:49:02 EET 2024]
  1351. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1352. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  1353. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  1354. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1355. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622922027]
  1356. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  1357. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1358. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1359. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  1360. 04:49:02.642 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [702]
  1361. 04:49:02.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1362. 04:49:10.428 [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
  1363. 04:49:10.430 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1364. 04:49:10.436 [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=?
  1365. 04:49:10.440 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1366. 04:49:10.441 [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=?
  1367. 04:49:10.441 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
  1368. 04:49:10.872 [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
  1369. 04:49:10.874 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1370. 04:49:10.874 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1371. 04:49:11.662 [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
  1372. 04:49:11.664 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1373. 04:49:11.664 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1374. 04:49:14.975 [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 ?
  1375. 04:49:14.977 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [798488781@qq.com]
  1376. 04:49:14.977 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [051859ed71dbffde365ffe513a7bd1ac]
  1377. 04:49:14.996 [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 ?
  1378. 04:49:14.998 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [310]
  1379. 04:49:15.001 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1380. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1381. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:49:14 EET 2024]
  1382. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [310]
  1383. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1384. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1385. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1386. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1387. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1388. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [310]
  1389. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  1390. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 04:49:14 EET 2024]
  1391. 04:49:15.001 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [焕庭null刘]
  1392. 04:49:15.004 [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=?
  1393. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.245]
  1394. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-25 04:35:46.0]
  1395. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [310]
  1396. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  1397. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:49:14 EET 2024]
  1398. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [310]
  1399. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1400. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1401. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-05-25 04:46:07.0]
  1402. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1403. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1404. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [市北区西吴路海泊人家]
  1405. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  1406. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1407. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-05-25 04:40:10.0]
  1408. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1409. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-05-30 00:00:00.0]
  1410. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500325]
  1411. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1412. 04:49:15.004 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1413. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1414. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1415. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1416. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1417. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1418. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [798488781@qq.com]
  1419. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [焕庭]
  1420. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1421. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1422. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1423. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1424. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1425. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [37050219950531641X]
  1426. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1427. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1428. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  1429. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [刘]
  1430. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 04:49:14 EET 2024]
  1431. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1432. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [HuanTing Liu]
  1433. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1434. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [051859ed71dbffde365ffe513a7bd1ac]
  1435. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17667839012]
  1436. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1437. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1438. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1439. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  1440. 04:49:15.005 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [310]
  1441. 04:49:29.171 [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=?
  1442. 04:49:29.173 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [310]
  1443. 04:49:40.178 [http-nio-8000-exec-2] 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=?
  1444. 04:49:40.179 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [310]
  1445. 04:50:03.838 [http-nio-8000-exec-5] 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=?
  1446. 04:50:03.840 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [310]
  1447. 04:50:03.840 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057358]
  1448. 04:50:24.737 [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
  1449. 04:50:24.739 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  1450. 04:50:24.740 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1451. 04:51:59.718 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1452. 04:51:59.720 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1453. 04:51:59.720 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1454. 04:51:59.721 [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=? and customfile0_.type=? limit ? for update
  1455. 04:51:59.721 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1456. 04:51:59.721 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1457. 04:51:59.739 [http-nio-8000-exec-1] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1458. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1459. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:51:59 EET 2024]
  1460. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1461. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1462. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1463. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1464. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1465. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1466. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [702]
  1467. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/702/info/d6a515fc7820491a848ed4e8e3b7b033.jpg]
  1468. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1469. 04:51:59.740 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  1470. 04:52:12.369 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1471. 04:52:12.370 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1472. 04:52:12.370 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1473. 04:52:12.371 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  1474. 04:52:12.371 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1475. 04:52:12.371 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [2]
  1476. 04:52:12.388 [http-nio-8000-exec-4] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1477. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1478. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:52:12 EET 2024]
  1479. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1480. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1481. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1482. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1483. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1484. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1485. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [702]
  1486. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/702/info/dec0b5728525404da8ffccb363b0da64.jpg]
  1487. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1488. 04:52:12.389 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1489. 04:52:21.366 [http-nio-8000-exec-11] 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 (? , ?)
  1490. 04:52:21.367 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1491. 04:52:21.367 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1492. 04:52:21.368 [http-nio-8000-exec-11] 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
  1493. 04:52:21.368 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1494. 04:52:21.368 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [2]
  1495. 04:52:21.388 [http-nio-8000-exec-11] 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=?
  1496. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1497. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:52:21 EET 2024]
  1498. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1499. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1500. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:52:21 EET 2024]
  1501. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [702]
  1502. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1503. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1504. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [702]
  1505. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/702/info/c71c3c34572c45a6953003f493969171.jpg]
  1506. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1507. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  1508. 04:52:21.389 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [1877]
  1509. 04:52:33.924 [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 in (? , ?)
  1510. 04:52:33.925 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1511. 04:52:33.925 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1512. 04:52:33.926 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  1513. 04:52:33.926 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1514. 04:52:33.926 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [3]
  1515. 04:52:33.944 [http-nio-8000-exec-7] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1516. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1517. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:52:33 EET 2024]
  1518. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1519. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1520. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1521. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1522. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1523. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1524. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [702]
  1525. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/702/info/b431d5508a9c4873aef395e391679ab2.jpg]
  1526. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1527. 04:52:33.945 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  1528. 04:52:34.405 [http-nio-8000-exec-11] 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
  1529. 04:52:34.410 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1530. 04:52:34.412 [http-nio-8000-exec-11] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.identity=? limit ?
  1531. 04:52:34.413 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120106198603016528]
  1532. 04:52:34.420 [http-nio-8000-exec-11] 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=?
  1533. 04:52:34.420 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  1534. 04:52:34.428 [http-nio-8000-exec-11] 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
  1535. 04:52:34.429 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1536. 04:52:34.432 [http-nio-8000-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1537. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1538. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 04:52:34 EET 2024]
  1539. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1540. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1541. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1542. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1543. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1544. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [702]
  1545. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [INTEGER] - [1]
  1546. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [1]
  1547. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1548. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  1549. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  1550. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [5]
  1551. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3]
  1552. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1553. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [1]
  1554. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [4]
  1555. 04:52:34.433 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [4]
  1556. 04:52:34.434 [http-nio-8000-exec-11] 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=?
  1557. 04:52:34.435 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1558. 04:52:34.435 [http-nio-8000-exec-11] 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=?
  1559. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1560. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 04:49:02.0]
  1561. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1562. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1563. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:52:34 EET 2024]
  1564. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1565. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1566. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1567. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1568. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1569. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1570. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市红桥区教军场大街复兴花局胡同]
  1571. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1572. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  1573. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  1574. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1575. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [Fri Feb 28 18:00:00 EET 1986]
  1576. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500741]
  1577. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1578. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1579. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
  1580. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1581. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1582. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1583. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1584. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [657179908@qq.com]
  1585. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丽娜]
  1586. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1587. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1588. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1589. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1590. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1591. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120106198603016528]
  1592. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1593. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1594. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  1595. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [苏]
  1596. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2024-12-31 04:49:03.0]
  1597. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1598. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [LiNa Su]
  1599. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1600. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1601. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622922027]
  1602. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1603. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1604. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1605. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  1606. 04:52:34.436 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [702]
  1607. 04:52:34.522 [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
  1608. 04:52:34.523 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1609. 04:52:34.655 [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_.id=? limit ? for update
  1610. 04:52:34.657 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1611. 04:52:34.658 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1612. 04:52:34.658 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1613. 04:52:34.659 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1614. 04:52:34.659 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20098]
  1615. 04:52:34.663 [http-nio-8000-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1735613554663,"addUser":702,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"SUBMIT_VERIFICATION","imageFilesMap":null,"map":{"V_C_ID_V":"500741","V_P_IB_NO_V":"500741","V_NAME_V":"丽娜 苏","V_EMAIL_V":"657179908@qq.com","V_APPLY_TIME_V":"2024-12-31 04:52:34","V_DATE_TIME_V":"2024-12-31 04:52:34"},"note":null,"sendDate":null,"subject":null,"templateName":"SUBMIT_VERIFICATION_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  1616. 04:52:34.668 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1617. 04:52:34.668 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1618. 04:52:34.669 [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=?
  1619. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1620. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 04:49:02.0]
  1621. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1622. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1623. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 04:52:34 EET 2024]
  1624. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [702]
  1625. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1626. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1627. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1628. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1629. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1630. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市红桥区教军场大街复兴花局胡同]
  1631. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1632. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  1633. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [Tue Dec 31 04:52:34 EET 2024]
  1634. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1635. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1986-02-28 00:00:00.0]
  1636. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500741]
  1637. 04:52:34.669 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1638. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1639. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
  1640. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1641. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1642. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1643. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1644. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [657179908@qq.com]
  1645. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丽娜]
  1646. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1647. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1648. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1649. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1650. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1651. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120106198603016528]
  1652. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1653. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1654. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  1655. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [苏]
  1656. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2024-12-31 04:49:03.0]
  1657. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1658. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [LiNa Su]
  1659. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1660. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1661. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622922027]
  1662. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1663. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1664. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1665. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  1666. 04:52:34.670 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [702]
  1667. 04:52:34.905 [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
  1668. 04:52:34.906 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1669. 04:52:34.906 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1670. 04:52:35.004 [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
  1671. 04:52:35.005 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1672. 04:52:35.005 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1673. 04:52:35.097 [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
  1674. 04:52:35.098 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  1675. 04:52:35.098 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1676. 04:54:02.867 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1677. 04:59:02.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1678. 05:04:02.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1679. 05:06:37.907 [http-nio-8000-exec-11] 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=?
  1680. 05:06:37.908 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1681. 05:06:37.910 [http-nio-8000-exec-11] 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 (? , ?)
  1682. 05:06:37.910 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1683. 05:06:37.910 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1684. 05:06:49.429 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accountapp0_.id) as col_0_0_ from account_apply accountapp0_ where accountapp0_.custom_id=? and accountapp0_.status=?
  1685. 05:06:49.430 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1686. 05:06:49.430 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1687. 05:06:49.431 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_currency accounttyp0_ where accounttyp0_.currency=? and accounttyp0_.type=?
  1688. 05:06:49.431 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [USD]
  1689. 05:06:49.431 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  1690. 05:06:49.432 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_leverage accounttyp0_ where accounttyp0_.leverage=? and accounttyp0_.type=?
  1691. 05:06:49.432 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [100]
  1692. 05:06:49.432 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  1693. 05:06:49.433 [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_.id=? limit ?
  1694. 05:06:49.434 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1695. 05:06:49.436 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - insert into account_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, account_status, agent_id, c_id, com_point, comment, currency, custom_id, group_code, group_type, hide, investor_password, leverage, login, master_password, operation_type, platform, pos, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1696. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1697. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 05:06:49 EET 2024]
  1698. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  1699. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1700. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1701. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1702. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1703. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1704. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1705. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1706. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1707. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [null]
  1708. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1709. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500741]
  1710. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  1711. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1712. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  1713. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [702]
  1714. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  1715. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  1716. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  1717. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [91zQS9T4]
  1718. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  1719. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1720. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [Aa123456]
  1721. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [null]
  1722. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  1723. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1724. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412310506490579]
  1725. 05:06:49.437 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1726. 05:06:49.438 [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_.id=? limit ?
  1727. 05:06:49.440 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1728. 05:06:49.441 [http-nio-8000-exec-10] 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 ?
  1729. 05:06:49.441 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20098]
  1730. 05:06:49.443 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1731. 05:06:49.443 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1732. 05:06:49.445 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.131.230.158","addTime":1735614409445,"addUser":702,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_APPLY","imageFilesMap":null,"map":{"V_C_ID_V":"500741","V_LOGIN_TYPE_V":"经典账户","V_LEVERAGE_V":"100","V_DATE_TIME_V":"2024-12-31 05:06:49","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"04","V_NAME_V":"丽娜 苏","V_CURRENCY_TYPE_V":"USD","V_APPLY_TIME_V":"2024-12-31 05:06:49"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_APPLY_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  1733. 05:08:32.544 [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
  1734. 05:08:32.545 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1735. 05:08:32.545 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1736. 05:08:32.639 [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
  1737. 05:08:32.641 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1738. 05:08:32.641 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1739. 05:08:52.626 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  1740. 05:08:52.628 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [zwx87@126.com]
  1741. 05:08:52.628 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [f7102b3bfc62b4d0709eee8e62780460]
  1742. 05:08:52.648 [http-nio-8000-exec-8] 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 ?
  1743. 05:08:52.649 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
  1744. 05:08:52.653 [http-nio-8000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1745. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.253.245]
  1746. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 05:08:52 EET 2024]
  1747. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
  1748. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1749. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1750. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1751. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1752. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1753. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [700]
  1754. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [36.106.253.245]
  1755. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 05:08:52 EET 2024]
  1756. 05:08:52.654 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [春娟null卢]
  1757. 05:08:52.656 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1758. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.164.254.8]
  1759. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-26 17:09:10.0]
  1760. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
  1761. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.253.245]
  1762. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 05:08:52 EET 2024]
  1763. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [700]
  1764. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1765. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1766. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-26 17:21:00.0]
  1767. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1768. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1769. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [金海湾花园7号楼@#津南区柳景家园4号楼12楼]
  1770. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1771. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1772. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-26 17:18:30.0]
  1773. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1774. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-12-17 00:00:00.0]
  1775. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500739]
  1776. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1777. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1778. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
  1779. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1780. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1781. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1782. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1783. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [zwx87@126.com]
  1784. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [春娟]
  1785. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1786. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1787. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1788. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1789. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1790. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [12011219801218164]
  1791. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1792. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1793. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [36.106.253.245]
  1794. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [卢]
  1795. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 05:08:52 EET 2024]
  1796. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1797. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChunJuan Lu]
  1798. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1799. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [f7102b3bfc62b4d0709eee8e62780460]
  1800. 05:08:52.657 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13642168765]
  1801. 05:08:52.658 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1802. 05:08:52.658 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1803. 05:08:52.658 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1804. 05:08:52.658 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  1805. 05:08:52.658 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [700]
  1806. 05:08:53.668 [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
  1807. 05:08:53.669 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1808. 05:08:53.669 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1809. 05:08:54.498 [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
  1810. 05:08:54.500 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1811. 05:08:54.500 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1812. 05:09:02.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1813. 05:11:01.596 [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
  1814. 05:11:01.597 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1815. 05:11:01.597 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1816. 05:11:01.617 [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
  1817. 05:11:01.618 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1818. 05:11:01.618 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1819. 05:11:36.442 [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
  1820. 05:11:36.444 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1821. 05:11:36.444 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1822. 05:11:49.794 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1823. 05:11:49.797 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1824. 05:11:49.799 [http-nio-8000-exec-6] 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 (? , ?)
  1825. 05:11:49.800 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1826. 05:11:49.800 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1827. 05:12:17.743 [http-nio-8000-exec-6] 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=?
  1828. 05:12:17.745 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
  1829. 05:12:17.745 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
  1830. 05:12:19.169 [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 ?
  1831. 05:12:19.171 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
  1832. 05:12:19.171 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1833. 05:12:19.191 [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 ?
  1834. 05:12:19.192 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
  1835. 05:12:19.196 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1836. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1837. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 05:12:19 EET 2024]
  1838. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
  1839. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1840. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1841. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1842. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1843. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1844. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
  1845. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [117.131.230.158]
  1846. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 05:12:19 EET 2024]
  1847. 05:12:19.196 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
  1848. 05:12:19.198 [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=?
  1849. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
  1850. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
  1851. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
  1852. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  1853. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 05:12:19 EET 2024]
  1854. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
  1855. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1856. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1857. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
  1858. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1859. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1860. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
  1861. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
  1862. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1863. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
  1864. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1865. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
  1866. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
  1867. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1868. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1869. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
  1870. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1871. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1872. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1873. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1874. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
  1875. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
  1876. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1877. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1878. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1879. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1880. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1881. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
  1882. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1883. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1884. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  1885. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
  1886. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 05:12:19 EET 2024]
  1887. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1888. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
  1889. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1890. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  1891. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
  1892. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1893. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1894. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1895. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
  1896. 05:12:19.199 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
  1897. 05:12:52.170 [http-nio-8000-exec-6] 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=?
  1898. 05:12:52.172 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
  1899. 05:12:52.172 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
  1900. 05:13:59.798 [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=?
  1901. 05:13:59.800 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
  1902. 05:13:59.800 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
  1903. 05:14:02.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1904. 05:19:02.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1905. 05:24:02.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1906. 05:29:02.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1907. 05:34:02.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1908. 05:39:02.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1909. 05:42:10.233 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  1910. 05:42:10.238 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  1911. 05:42:10.238 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  1912. 05:42:10.261 [http-nio-8000-exec-8] 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 ?
  1913. 05:42:10.262 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1914. 05:42:10.266 [http-nio-8000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1915. 05:42:10.266 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1916. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 05:42:10 EET 2024]
  1917. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  1918. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1919. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1920. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1921. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1922. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1923. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  1924. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.4.123.153]
  1925. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 05:42:10 EET 2024]
  1926. 05:42:10.267 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [敬华null王]
  1927. 05:42:10.269 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1928. 05:42:10.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  1929. 05:42:10.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  1930. 05:42:10.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  1931. 05:42:10.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.4.123.153]
  1932. 05:42:10.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 05:42:10 EET 2024]
  1933. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  1934. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1935. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1936. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-31 03:46:07.0]
  1937. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1938. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1939. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  1940. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1941. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1942. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-31 03:45:00.0]
  1943. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1944. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-16 00:00:00.0]
  1945. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  1946. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1947. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1948. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  1949. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1950. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1951. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1952. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1953. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  1954. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  1955. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1956. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1957. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1958. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1959. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1960. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  1961. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1962. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1963. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.4.123.153]
  1964. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1965. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 05:42:10 EET 2024]
  1966. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1967. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  1968. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1969. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  1970. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  1971. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1972. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1973. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1974. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  1975. 05:42:10.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  1976. 05:42:48.543 [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=?
  1977. 05:42:48.545 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  1978. 05:42:48.545 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057052]
  1979. 05:44:03.011 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1980. 05:49:03.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1981. 05:50:41.173 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select accountapp0_.id as id1_0_0_, accountapp0_.add_ip as add_ip2_0_0_, accountapp0_.add_time as add_time3_0_0_, accountapp0_.add_user as add_user4_0_0_, accountapp0_.modify_ip as modify_i5_0_0_, accountapp0_.modify_time as modify_t6_0_0_, accountapp0_.modify_user as modify_u7_0_0_, accountapp0_.note as note8_0_0_, accountapp0_.approve_desc as approve_9_0_0_, accountapp0_.approve_time as approve10_0_0_, accountapp0_.approve_user as approve11_0_0_, accountapp0_.status as status12_0_0_, accountapp0_.account_status as account13_0_0_, accountapp0_.agent_id as agent_i14_0_0_, accountapp0_.c_id as c_id15_0_0_, accountapp0_.com_point as com_poi16_0_0_, accountapp0_.comment as comment17_0_0_, accountapp0_.currency as currenc18_0_0_, accountapp0_.custom_id as custom_19_0_0_, accountapp0_.group_code as group_c20_0_0_, accountapp0_.group_type as group_t21_0_0_, accountapp0_.hide as hide22_0_0_, accountapp0_.investor_password as investo23_0_0_, accountapp0_.leverage as leverag24_0_0_, accountapp0_.login as login25_0_0_, accountapp0_.master_password as master_26_0_0_, accountapp0_.operation_type as operati27_0_0_, accountapp0_.platform as platfor28_0_0_, accountapp0_.pos as pos29_0_0_, accountapp0_.serial as serial30_0_0_, accountapp0_.type as type31_0_0_ from account_apply accountapp0_ where accountapp0_.id=?
  1982. 05:50:41.176 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [762]
  1983. 05:50:41.177 [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 ?
  1984. 05:50:41.179 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  1985. 05:50:41.180 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - insert into custom_login (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, agent_id, c_id, close_functions, com_point, comment, currency, custom_id, group_code, group_type, hide, leverage, login, login_status, login_status_number, platform, pos, `type`, valid) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1986. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  1987. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 05:50:41 EET 2024]
  1988. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1989. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1990. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1991. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1992. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1993. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20098]
  1994. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [500741]
  1995. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [null]
  1996. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [20.0]
  1997. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1998. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [USD]
  1999. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [702]
  2000. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [MICBb2]
  2001. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [1]
  2002. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
  2003. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [100]
  2004. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [9057053]
  2005. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [2]
  2006. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  2007. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [MT4]
  2008. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [2]
  2009. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [1]
  2010. 05:50:41.181 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [1]
  2011. 05:50:41.183 [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 ?
  2012. 05:50:41.185 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2013. 05:50:41.188 [http-nio-8000-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1735617041188,"addUser":20090,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_COMPLETE","imageFilesMap":null,"map":{"V_LOGIN_TYPE_V":"classic","V_C_ID_V":"500741","V_MASTER_PASSWORD_V":"Aa123456","V_LOGIN_V":"9057053","V_DATE_TIME_V":"2024-12-31 05:50:41","V_INVESTOR_PASSWORD_V":"91zQS9T4","V_PLATFORM_V":"MT4","V_NAME_V":"丽娜 苏"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_COMPLETE_SEND_CN","users":"657179908@qq.com"}
  2014. 05:50:41.194 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - update account_apply set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, account_status=?, agent_id=?, c_id=?, com_point=?, comment=?, currency=?, custom_id=?, group_code=?, group_type=?, hide=?, investor_password=?, leverage=?, login=?, master_password=?, operation_type=?, platform=?, pos=?, serial=?, type=? where id=?
  2015. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2016. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 05:06:49.0]
  2017. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  2018. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2019. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2020. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2021. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2022. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2023. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Tue Dec 31 05:50:41 EET 2024]
  2024. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2025. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2026. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  2027. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  2028. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500741]
  2029. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  2030. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2031. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  2032. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [702]
  2033. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [MICBb2]
  2034. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  2035. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  2036. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [91zQS9T4]
  2037. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  2038. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [9057053]
  2039. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [Aa123456]
  2040. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [2]
  2041. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  2042. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  2043. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412310506490579]
  2044. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  2045. 05:50:41.195 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [762]
  2046. 05:54:03.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2047. 05:59:03.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2048. 06:04:03.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2049. 06:09:03.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2050. 06:14:03.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2051. 06:19:03.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2052. 06:24:03.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2053. 06:25:57.095 [http-nio-8000-exec-10] 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=?
  2054. 06:25:57.096 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2055. 06:25:57.098 [http-nio-8000-exec-10] 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 (? , ?)
  2056. 06:25:57.098 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2057. 06:25:57.098 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  2058. 06:27:03.177 [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=?
  2059. 06:27:03.179 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2060. 06:27:03.179 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057053]
  2061. 06:29:03.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2062. 06:29:20.233 [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
  2063. 06:29:20.235 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2064. 06:29:20.235 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2065. 06:29:20.514 [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
  2066. 06:29:20.515 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2067. 06:29:20.515 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2068. 06:30:13.717 [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 ?
  2069. 06:30:13.719 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [su.liyuan@qq.com]
  2070. 06:30:13.719 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  2071. 06:30:13.739 [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 ?
  2072. 06:30:13.740 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [616]
  2073. 06:30:13.744 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2074. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [211.94.251.57]
  2075. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 06:30:13 EET 2024]
  2076. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [616]
  2077. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2078. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2079. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2080. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2081. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2082. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [616]
  2083. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [211.94.251.57]
  2084. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 06:30:13 EET 2024]
  2085. 06:30:13.745 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [丽媛null苏]
  2086. 06:30:13.747 [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=?
  2087. 06:30:13.747 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2088. 06:30:13.747 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-09-11 04:40:38.0]
  2089. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [616]
  2090. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [211.94.251.57]
  2091. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 06:30:13 EET 2024]
  2092. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [616]
  2093. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2094. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2095. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-09-11 05:53:34.0]
  2096. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2097. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2098. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市津南区南开大学]
  2099. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  2100. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2101. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-09-11 04:45:34.0]
  2102. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2103. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-08-12 00:00:00.0]
  2104. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500651]
  2105. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2106. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2107. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
  2108. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2109. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2110. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2111. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2112. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [su.liyuan@qq.com]
  2113. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丽媛]
  2114. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  2115. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2116. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2117. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2118. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2119. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120106199508136542]
  2120. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2121. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2122. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [211.94.251.57]
  2123. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [苏]
  2124. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 06:30:13 EET 2024]
  2125. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2126. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [LiYuan Su]
  2127. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2128. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
  2129. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18622918850]
  2130. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2131. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2132. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2133. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2134. 06:30:13.748 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [616]
  2135. 06:30:55.647 [http-nio-8000-exec-1] 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=?
  2136. 06:30:55.648 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2137. 06:30:55.650 [http-nio-8000-exec-1] 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 (? , ?)
  2138. 06:30:55.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2139. 06:30:55.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  2140. 06:34:03.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2141. 06:39:03.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2142. 06:44:03.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2143. 06:49:03.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2144. 06:54:03.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2145. 06:58:49.917 [http-nio-8000-exec-5] 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=?
  2146. 06:58:49.919 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2147. 06:58:49.919 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057053]
  2148. 06:59:03.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2149. 07:04:03.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2150. 07:06:05.948 [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 ?
  2151. 07:06:05.952 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [xf13012232538@163.com]
  2152. 07:06:05.952 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [a31fff5bdae2c58089c4f2dce816e5d7]
  2153. 07:06:05.982 [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 ?
  2154. 07:06:05.984 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [692]
  2155. 07:06:05.988 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2156. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.234.188]
  2157. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 07:06:05 EET 2024]
  2158. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [692]
  2159. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2160. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2161. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2162. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2163. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2164. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [692]
  2165. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.234.188]
  2166. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 07:06:05 EET 2024]
  2167. 07:06:05.989 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [凡null夏]
  2168. 07:06:05.991 [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=?
  2169. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.1.157]
  2170. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-09 04:18:28.0]
  2171. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [692]
  2172. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.234.188]
  2173. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 07:06:05 EET 2024]
  2174. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [692]
  2175. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2176. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2177. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-09 04:30:04.0]
  2178. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2179. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2180. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市南开区川府新村]
  2181. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20097]
  2182. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2183. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-09 04:24:18.0]
  2184. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2185. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1997-08-02 00:00:00.0]
  2186. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500731]
  2187. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2188. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2189. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [南开]
  2190. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2191. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2192. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2193. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2194. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [xf13012232538@163.com]
  2195. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [凡]
  2196. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2197. 07:06:05.992 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2198. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2199. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2200. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2201. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [12010419970803381X]
  2202. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2203. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2204. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.234.188]
  2205. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [夏]
  2206. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 07:06:05 EET 2024]
  2207. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2208. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Fan Xia]
  2209. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2210. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [a31fff5bdae2c58089c4f2dce816e5d7]
  2211. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13012232538]
  2212. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2213. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2214. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2215. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2216. 07:06:05.993 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [692]
  2217. 07:06:19.110 [http-nio-8000-exec-2] 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=?
  2218. 07:06:19.113 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [692]
  2219. 07:09:03.257 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2220. 07:09:19.058 [http-nio-8000-exec-8] 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=?
  2221. 07:09:19.060 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2222. 07:09:23.866 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  2223. 07:09:23.869 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  2224. 07:09:23.869 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  2225. 07:09:23.870 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  2226. 07:09:38.705 [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 in (? , ?)
  2227. 07:09:38.706 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  2228. 07:09:38.706 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  2229. 07:10:29.497 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  2230. 07:10:29.499 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  2231. 07:10:29.499 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  2232. 07:11:30.182 [http-nio-8000-exec-11] 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=?
  2233. 07:11:30.185 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2234. 07:11:30.185 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2235. 07:11:30.185 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  2236. 07:11:30.193 [http-nio-8000-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2237. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  2238. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 07:11:30 EET 2024]
  2239. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [702]
  2240. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2241. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2242. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2243. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2244. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2245. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  2246. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [中国银行常州道支行]
  2247. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6217900200004532108]
  2248. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  2249. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [/file/702/bank/ef41d634b91945aaa8c5e6d9a48b4cb7.jpg]
  2250. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国银行-BC]
  2251. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [丽娜 苏]
  2252. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [702]
  2253. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  2254. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  2255. 07:11:30.193 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2256. 07:11:30.409 [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=?
  2257. 07:11:30.411 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [702]
  2258. 07:11:31.930 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  2259. 07:11:31.935 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  2260. 07:11:31.935 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  2261. 07:11:31.966 [http-nio-8000-exec-8] 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 ?
  2262. 07:11:31.967 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  2263. 07:11:31.971 [http-nio-8000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2264. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.80.52.191]
  2265. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 07:11:31 EET 2024]
  2266. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  2267. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2268. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2269. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2270. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2271. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2272. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  2273. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.80.52.191]
  2274. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 07:11:31 EET 2024]
  2275. 07:11:31.972 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [敬华null王]
  2276. 07:11:31.974 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  2277. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  2278. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  2279. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  2280. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.80.52.191]
  2281. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 07:11:31 EET 2024]
  2282. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  2283. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2284. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2285. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-31 03:46:07.0]
  2286. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2287. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2288. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  2289. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  2290. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2291. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-31 03:45:00.0]
  2292. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2293. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-16 00:00:00.0]
  2294. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  2295. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2296. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2297. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  2298. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2299. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2300. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2301. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2302. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  2303. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  2304. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2305. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2306. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2307. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2308. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2309. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  2310. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2311. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2312. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.80.52.191]
  2313. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  2314. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 07:11:31 EET 2024]
  2315. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2316. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  2317. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2318. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  2319. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  2320. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  2321. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2322. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2323. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  2324. 07:11:31.975 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  2325. 07:12:16.940 [http-nio-8000-exec-5] 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=?
  2326. 07:12:16.942 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  2327. 07:12:16.942 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057052]
  2328. 07:14:03.272 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2329. 07:19:03.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2330. 07:24:03.300 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2331. 07:29:03.315 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2332. 07:34:03.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2333. 07:39:03.344 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2334. 07:44:03.359 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2335. 07:49:03.373 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2336. 07:54:03.387 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2337. 07:59:03.402 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2338. 08:04:03.417 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2339. 08:09:03.432 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2340. 08:14:03.445 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2341. 08:19:03.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2342. 08:24:03.474 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2343. 08:25:22.683 [http-nio-8000-exec-11] 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 ?
  2344. 08:25:22.685 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [wjh-email@163.com]
  2345. 08:25:22.685 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  2346. 08:25:22.708 [http-nio-8000-exec-11] 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 ?
  2347. 08:25:22.709 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  2348. 08:25:22.713 [http-nio-8000-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2349. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.80.52.191]
  2350. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 08:25:22 EET 2024]
  2351. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  2352. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2353. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2354. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2355. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2356. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2357. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [701]
  2358. 08:25:22.713 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.80.52.191]
  2359. 08:25:22.714 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 08:25:22 EET 2024]
  2360. 08:25:22.714 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [敬华null王]
  2361. 08:25:22.716 [http-nio-8000-exec-11] 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=?
  2362. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.123.153]
  2363. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-31 03:33:18.0]
  2364. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [701]
  2365. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.80.52.191]
  2366. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 08:25:22 EET 2024]
  2367. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [701]
  2368. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2369. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2370. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-31 03:46:07.0]
  2371. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2372. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2373. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [崂山区辽阳东路16号@#崂山区辽阳东路16号]
  2374. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  2375. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2376. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-31 03:45:00.0]
  2377. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2378. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-16 00:00:00.0]
  2379. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500740]
  2380. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2381. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2382. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  2383. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2384. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2385. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2386. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2387. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [wjh-email@163.com]
  2388. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [敬华]
  2389. 08:25:22.716 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2390. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2391. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2392. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2393. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2394. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370125197907175932]
  2395. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2396. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2397. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.80.52.191]
  2398. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  2399. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 08:25:22 EET 2024]
  2400. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2401. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JingHua Wang]
  2402. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2403. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b999a66399ed1e42c1117a2968cc8f3b]
  2404. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15853222567]
  2405. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  2406. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2407. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2408. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266000]
  2409. 08:25:22.717 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [701]
  2410. 08:25:50.937 [http-nio-8000-exec-11] 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=?
  2411. 08:25:50.939 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  2412. 08:25:50.939 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057052]
  2413. 08:29:03.489 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2414. 08:34:03.504 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2415. 08:38:02.501 [http-nio-8000-exec-2] 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=?
  2416. 08:38:02.504 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [701]
  2417. 08:39:03.518 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2418. 08:44:03.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2419. 08:49:03.548 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2420. 08:54:03.563 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2421. 08:59:03.578 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2422. 09:01:01.790 [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
  2423. 09:01:01.791 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2424. 09:01:01.791 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2425. 09:01:01.897 [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
  2426. 09:01:01.898 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2427. 09:01:01.898 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2428. 09:04:03.593 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2429. 09:09:03.608 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2430. 09:14:03.624 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2431. 09:19:03.638 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2432. 09:24:03.651 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2433. 09:29:03.665 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2434. 09:34:03.680 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2435. 09:39:03.695 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2436. 09:44:03.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2437. 09:49:03.725 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2438. 09:54:03.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2439. 09:59:03.754 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2440. 10:04:03.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2441. 10:09:03.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2442. 10:14:03.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2443. 10:19:03.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2444. 10:24:03.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2445. 10:29:03.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2446. 10:34:03.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2447. 10:39:03.868 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2448. 10:44:03.882 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2449. 10:49:03.897 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2450. 10:54:03.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2451. 10:59:03.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2452. 11:04:03.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2453. 11:09:03.956 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2454. 11:14:03.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2455. 11:19:03.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2456. 11:24:04.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2457. 11:29:04.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2458. 11:34:04.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2459. 11:39:04.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2460. 11:44:04.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2461. 11:49:04.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2462. 11:54:04.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2463. 11:59:04.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2464. 12:04:04.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2465. 12:09:04.132 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2466. 12:14:04.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2467. 12:19:04.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2468. 12:24:04.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2469. 12:29:04.190 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2470. 12:34:04.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2471. 12:39:04.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2472. 12:44:04.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2473. 12:49:04.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2474. 12:54:04.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2475. 12:59:04.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2476. 13:04:04.288 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2477. 13:09:04.303 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2478. 13:14:04.317 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2479. 13:19:04.331 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2480. 13:24:04.345 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2481. 13:29:04.359 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2482. 13:34:04.374 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2483. 13:39:04.389 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2484. 13:44:04.404 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2485. 13:49:04.418 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2486. 13:54:04.433 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2487. 13:59:04.448 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2488. 14:04:04.462 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2489. 14:09:04.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2490. 14:14:04.492 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2491. 14:19:04.506 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2492. 14:24:04.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2493. 14:29:04.535 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2494. 14:34:04.549 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2495. 14:39:04.564 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2496. 14:44:04.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2497. 14:49:04.594 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2498. 14:54:04.609 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2499. 14:59:04.624 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2500. 15:04:04.639 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2501. 15:09:04.653 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2502. 15:14:04.668 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2503. 15:19:04.682 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2504. 15:24:04.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2505. 15:29:04.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2506. 15:34:04.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2507. 15:39:04.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2508. 15:44:04.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2509. 15:49:04.773 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2510. 15:54:04.787 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2511. 15:59:04.801 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2512. 16:03:40.954 [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
  2513. 16:03:40.958 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2514. 16:03:40.958 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2515. 16:03:41.154 [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
  2516. 16:03:41.155 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2517. 16:03:41.155 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2518. 16:04:04.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2519. 16:04:21.516 [http-nio-8000-exec-11] 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 is not null) and custominfo0_.email=? limit ?
  2520. 16:04:21.518 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2521. 16:04:21.522 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.30.197.127","addTime":1735653861516,"addUser":79,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FORGET_PASSWORD","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-12-31 16:34:21","V_NAME_V":"江 朱","V_TOKEN_V":"hCSJgMCeSaz6GL8bjeKZKHTKqCBGDiqWMOB/WjaVowkh0fPfUc3wGT7YmoQtFcMn0Pf402bMrGeJjBckPqojVA==","V_DATE_TIME_V":"2024-12-31 16:04:21"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_UPDATE_PASSWORD_SEND_CN","users":"191885050@qq.com"}
  2522. 16:05:40.802 [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
  2523. 16:05:40.804 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2524. 16:05:40.809 [http-nio-8000-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.30.197.127","addTime":1735653940809,"addUser":79,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FORGET_PASSWORD","imageFilesMap":null,"map":{"V_NAME_V":"江 朱","V_DATE_TIME_V":"2024-12-31 16:05:40"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_UPDATE_PASSWORD_COMPLETE_SEND_CN","users":"191885050@qq.com"}
  2525. 16:05:40.813 [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=?
  2526. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2527. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2528. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2529. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2530. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:05:40 EET 2024]
  2531. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2532. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2533. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2534. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2535. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2536. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2537. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2538. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2539. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2540. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2541. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2542. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2543. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2544. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2545. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2546. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2547. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2548. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2549. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2550. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2551. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2552. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2553. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2554. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2555. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2556. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2557. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2558. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  2559. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2560. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2561. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [60.27.158.145]
  2562. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  2563. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2024-12-31 04:22:47.0]
  2564. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2565. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  2566. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2567. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2568. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  2569. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2570. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2571. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2572. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2573. 16:05:40.814 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  2574. 16:05:58.549 [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 ?
  2575. 16:05:58.551 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2576. 16:05:58.551 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2577. 16:05:58.574 [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 ?
  2578. 16:05:58.575 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2579. 16:05:58.578 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2580. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2581. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:05:58 EET 2024]
  2582. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2583. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2584. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2585. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2586. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2587. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2588. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  2589. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.197.127]
  2590. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 16:05:58 EET 2024]
  2591. 16:05:58.578 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  2592. 16:05:58.580 [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=?
  2593. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2594. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2595. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2596. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2597. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:05:58 EET 2024]
  2598. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2599. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2600. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2601. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2602. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2603. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2604. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2605. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2606. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2607. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2608. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2609. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2610. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2611. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2612. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2613. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2614. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2615. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2616. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2617. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2618. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2619. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2620. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2621. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2622. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2623. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2624. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2625. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  2626. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2627. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2628. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.197.127]
  2629. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  2630. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 16:05:58 EET 2024]
  2631. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2632. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  2633. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2634. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2635. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  2636. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2637. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2638. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2639. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2640. 16:05:58.581 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  2641. 16:06:51.543 [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 ?
  2642. 16:06:51.546 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2643. 16:06:51.546 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2644. 16:06:51.566 [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 ?
  2645. 16:06:51.567 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2646. 16:06:51.570 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2647. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2648. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:06:51 EET 2024]
  2649. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2650. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2651. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2652. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2653. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2654. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2655. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  2656. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.197.127]
  2657. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 16:06:51 EET 2024]
  2658. 16:06:51.570 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  2659. 16:06:51.572 [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=?
  2660. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2661. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2662. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2663. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2664. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:06:51 EET 2024]
  2665. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2666. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2667. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2668. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2669. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2670. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2671. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2672. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2673. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2674. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2675. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2676. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2677. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2678. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2679. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2680. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2681. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2682. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2683. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2684. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2685. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2686. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2687. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2688. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2689. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2690. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2691. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2692. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  2693. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2694. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2695. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.197.127]
  2696. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  2697. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 16:06:51 EET 2024]
  2698. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2699. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  2700. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2701. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2702. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  2703. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2704. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2705. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2706. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2707. 16:06:51.573 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  2708. 16:07:08.389 [http-nio-8000-exec-11] 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=?
  2709. 16:07:08.390 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2710. 16:07:08.391 [http-nio-8000-exec-11] 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 (? , ?)
  2711. 16:07:08.392 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2712. 16:07:08.392 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  2713. 16:07:32.177 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select count(accountapp0_.id) as col_0_0_ from account_apply accountapp0_ where accountapp0_.custom_id=? and accountapp0_.status=?
  2714. 16:07:32.178 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2715. 16:07:32.178 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2716. 16:07:32.183 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_currency accounttyp0_ where accounttyp0_.currency=? and accounttyp0_.type=?
  2717. 16:07:32.184 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [USD]
  2718. 16:07:32.184 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  2719. 16:07:32.185 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_leverage accounttyp0_ where accounttyp0_.leverage=? and accounttyp0_.type=?
  2720. 16:07:32.185 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [100]
  2721. 16:07:32.185 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  2722. 16:07:32.186 [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_.id=? limit ?
  2723. 16:07:32.188 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2724. 16:07:32.190 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into account_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, account_status, agent_id, c_id, com_point, comment, currency, custom_id, group_code, group_type, hide, investor_password, leverage, login, master_password, operation_type, platform, pos, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2725. 16:07:32.190 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2726. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:07:32 EET 2024]
  2727. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2728. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2729. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2730. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2731. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2732. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2733. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2734. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2735. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2736. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [null]
  2737. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2738. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500088]
  2739. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  2740. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2741. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  2742. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [79]
  2743. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  2744. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  2745. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  2746. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [7WjCnFhE]
  2747. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  2748. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  2749. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [654321Zj]
  2750. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [null]
  2751. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  2752. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  2753. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412311607326725]
  2754. 16:07:32.191 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  2755. 16:07:32.192 [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_.id=? limit ?
  2756. 16:07:32.193 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2757. 16:07:32.193 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  2758. 16:07:32.194 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20099]
  2759. 16:07:32.195 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  2760. 16:07:32.196 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  2761. 16:07:32.198 [http-nio-8000-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.30.197.127","addTime":1735654052198,"addUser":79,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_APPLY","imageFilesMap":null,"map":{"V_C_ID_V":"500088","V_LOGIN_TYPE_V":"经典账户","V_LEVERAGE_V":"100","V_DATE_TIME_V":"2024-12-31 16:07:32","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"05","V_NAME_V":"江 朱","V_CURRENCY_TYPE_V":"USD","V_APPLY_TIME_V":"2024-12-31 16:07:32"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_APPLY_NOTICE_NAME","users":"brunsdons_partens@126.com"}
  2762. 16:09:04.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2763. 16:10:28.637 [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
  2764. 16:10:28.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2765. 16:10:28.638 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2766. 16:10:28.679 [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
  2767. 16:10:28.681 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  2768. 16:10:28.681 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2769. 16:10:54.112 [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 ?
  2770. 16:10:54.115 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2771. 16:10:54.115 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2772. 16:10:54.138 [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 ?
  2773. 16:10:54.140 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2774. 16:10:54.142 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2775. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2776. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:10:54 EET 2024]
  2777. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2778. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2779. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2780. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2781. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2782. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2783. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  2784. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.197.127]
  2785. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 16:10:54 EET 2024]
  2786. 16:10:54.143 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  2787. 16:10:54.145 [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=?
  2788. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2789. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2790. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2791. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2792. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:10:54 EET 2024]
  2793. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2794. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2795. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2796. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2797. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2798. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2799. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2800. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2801. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2802. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2803. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2804. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2805. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2806. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2807. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2808. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2809. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2810. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2811. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2812. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2813. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2814. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2815. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2816. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2817. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2818. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2819. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2820. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  2821. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2822. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2823. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.197.127]
  2824. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  2825. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 16:10:54 EET 2024]
  2826. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2827. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  2828. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2829. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2830. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  2831. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2832. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2833. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2834. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2835. 16:10:54.146 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  2836. 16:14:04.845 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2837. 16:17:34.233 [http-nio-8000-exec-11] 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=?
  2838. 16:17:34.235 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2839. 16:17:34.236 [http-nio-8000-exec-11] 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 (? , ?)
  2840. 16:17:34.237 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2841. 16:17:34.237 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  2842. 16:18:19.620 [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 ?
  2843. 16:18:19.622 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2844. 16:18:19.622 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2845. 16:18:19.646 [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 ?
  2846. 16:18:19.647 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2847. 16:18:19.650 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2848. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2849. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:18:19 EET 2024]
  2850. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2851. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2852. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2853. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2854. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2855. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2856. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  2857. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.197.127]
  2858. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 16:18:19 EET 2024]
  2859. 16:18:19.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  2860. 16:18:19.653 [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=?
  2861. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2862. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2863. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2864. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2865. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:18:19 EET 2024]
  2866. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2867. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2868. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2869. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2870. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2871. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2872. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2873. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2874. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2875. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2876. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2877. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2878. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2879. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2880. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2881. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2882. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2883. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2884. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2885. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2886. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2887. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2888. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  2889. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2890. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  2891. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  2892. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  2893. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  2894. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  2895. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  2896. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.197.127]
  2897. 16:18:19.653 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  2898. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 16:18:19 EET 2024]
  2899. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  2900. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  2901. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  2902. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2903. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  2904. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  2905. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  2906. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  2907. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  2908. 16:18:19.654 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  2909. 16:19:04.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2910. 16:21:40.568 [http-nio-8000-exec-1] 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=?
  2911. 16:21:40.570 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2912. 16:21:40.571 [http-nio-8000-exec-1] 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 (? , ?)
  2913. 16:21:40.572 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  2914. 16:21:40.572 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  2915. 16:21:49.860 [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=? limit ?
  2916. 16:21:49.862 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2917. 16:21:49.862 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057036]
  2918. 16:21:49.864 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accountdea0_.id) as col_0_0_ from account_deal_password_reset accountdea0_ where accountdea0_.custom_id=? and accountdea0_.login=? and accountdea0_.status=?
  2919. 16:21:49.864 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2920. 16:21:49.864 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057036]
  2921. 16:21:49.864 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  2922. 16:21:49.867 [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_.id=? limit ?
  2923. 16:21:49.868 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2924. 16:21:49.870 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":null,"addTime":null,"addUser":79,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"DEAL_RESET_PASSWORD_SEND_URL","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-12-31 16:51:49","V_NAME_V":"江 朱","V_TOKEN_V":"hCSJgMCeSaz6GL8bjeKZKNoex3mAyLahvbE3Ij+JD3Y9DZJ3+U4QoLuNRrq/+5EYtB7wFXwOWa5J6f+tQIVKAA==","V_LOGIN_V":"9057036","V_DATE_TIME_V":"2024-12-31 16:21:49"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_APPLY_DEAL_RESET_PASSWORD_SEND_CN","users":"191885050@qq.com"}
  2925. 16:22:23.947 [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=? limit ?
  2926. 16:22:23.950 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2927. 16:22:23.950 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057036]
  2928. 16:22:23.953 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select count(accountdea0_.id) as col_0_0_ from account_deal_password_reset accountdea0_ where accountdea0_.custom_id=? and accountdea0_.login=? and accountdea0_.status=?
  2929. 16:22:23.954 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2930. 16:22:23.954 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057036]
  2931. 16:22:23.954 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  2932. 16:22:23.957 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - insert into account_deal_password_reset (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, c_id, custom_id, deal_reset_status, login, new_password, operation_type, platform, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2933. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2934. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:22:23 EET 2024]
  2935. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  2936. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2937. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2938. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2939. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2940. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2941. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2942. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2943. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2944. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [500088]
  2945. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [79]
  2946. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  2947. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [9057036]
  2948. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [654321Zj]
  2949. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [null]
  2950. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [MT4]
  2951. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [INVESTOR202412311622231954]
  2952. 16:22:23.958 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  2953. 16:22:39.463 [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 ?
  2954. 16:22:39.467 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [191885050@qq.com]
  2955. 16:22:39.467 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  2956. 16:22:39.503 [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 ?
  2957. 16:22:39.505 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [79]
  2958. 16:22:39.507 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2959. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.127]
  2960. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 16:22:39 EET 2024]
  2961. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2962. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2963. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2964. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2965. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2966. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2967. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [79]
  2968. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.197.127]
  2969. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 16:22:39 EET 2024]
  2970. 16:22:39.508 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [江null朱]
  2971. 16:22:39.510 [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=?
  2972. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.197.231]
  2973. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-20 16:51:58.0]
  2974. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [79]
  2975. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.197.127]
  2976. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 16:22:39 EET 2024]
  2977. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [79]
  2978. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2979. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  2980. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-20 22:05:31.0]
  2981. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2982. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  2983. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [气象台路]
  2984. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  2985. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  2986. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-20 17:13:10.0]
  2987. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  2988. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-10-30 00:00:00.0]
  2989. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500088]
  2990. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  2991. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  2992. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  2993. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  2994. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  2995. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  2996. 16:22:39.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  2997. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [191885050@qq.com]
  2998. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [江]
  2999. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  3000. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3001. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  3002. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  3003. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  3004. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120101198310313551]
  3005. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  3006. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  3007. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.197.127]
  3008. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [朱]
  3009. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 16:22:39 EET 2024]
  3010. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  3011. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jiang Zhu]
  3012. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  3013. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [6d52285233b5822f6e276ec778ef8a4e]
  3014. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13920387672]
  3015. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  3016. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  3017. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  3018. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  3019. 16:22:39.512 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [79]
  3020. 16:24:04.875 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3021. 16:29:04.890 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3022. 16:34:04.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3023. 16:39:04.919 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3024. 16:44:04.934 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3025. 16:49:04.949 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3026. 16:54:04.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3027. 16:59:04.978 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3028. 17:04:04.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3029. 17:09:05.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3030. 17:14:05.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3031. 17:19:05.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3032. 17:24:05.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3033. 17:29:05.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3034. 17:34:05.083 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3035. 17:39:05.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3036. 17:44:05.112 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3037. 17:49:05.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3038. 17:54:05.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3039. 17:59:05.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3040. 18:04:05.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3041. 18:09:05.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3042. 18:14:05.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3043. 18:19:05.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3044. 18:24:05.230 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3045. 18:29:05.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3046. 18:34:05.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3047. 18:39:05.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3048. 18:41:22.393 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  3049. 18:41:22.396 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [993745813@qq.com]
  3050. 18:41:22.396 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b1bb655d007cd3c4dd482a01b7e31be0]
  3051. 18:41:22.418 [http-nio-8000-exec-8] 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 ?
  3052. 18:41:22.420 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [31]
  3053. 18:41:22.422 [http-nio-8000-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3054. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.232.182]
  3055. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Dec 31 18:41:22 EET 2024]
  3056. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [31]
  3057. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3058. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3059. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3060. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3061. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  3062. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [31]
  3063. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.232.182]
  3064. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Dec 31 18:41:22 EET 2024]
  3065. 18:41:22.422 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [春亮null马]
  3066. 18:41:22.425 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  3067. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.158.58]
  3068. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2022-07-19 02:43:55.0]
  3069. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [31]
  3070. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.232.182]
  3071. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Dec 31 18:41:22 EET 2024]
  3072. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [31]
  3073. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3074. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  3075. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2022-07-19 03:05:48.0]
  3076. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3077. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  3078. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [福东里]
  3079. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  3080. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  3081. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2022-07-19 03:04:18.0]
  3082. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  3083. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1998-02-06 00:00:00.0]
  3084. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500040]
  3085. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  3086. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  3087. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
  3088. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  3089. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  3090. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  3091. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  3092. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [993745813@qq.com]
  3093. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [春亮]
  3094. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  3095. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3096. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  3097. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  3098. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  3099. 18:41:22.425 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130321199802079012]
  3100. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  3101. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  3102. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.232.182]
  3103. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [马]
  3104. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Dec 31 18:41:22 EET 2024]
  3105. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  3106. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChunLiang Ma]
  3107. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  3108. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b1bb655d007cd3c4dd482a01b7e31be0]
  3109. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15230358136]
  3110. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  3111. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  3112. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  3113. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  3114. 18:41:22.426 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [31]
  3115. 18:41:46.848 [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=?
  3116. 18:41:46.849 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [31]
  3117. 18:42:24.431 [http-nio-8000-exec-6] 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=?
  3118. 18:42:24.433 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [31]
  3119. 18:42:24.433 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057443]
  3120. 18:44:05.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3121. 18:49:05.304 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3122. 18:54:05.319 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3123. 18:59:05.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3124. 19:04:05.349 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3125. 19:09:05.364 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3126. 19:14:05.379 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3127. 19:19:05.394 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3128. 19:24:05.408 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3129. 19:29:05.423 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3130. 19:34:05.437 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3131. 19:39:05.452 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3132. 19:44:05.467 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3133. 19:49:05.482 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3134. 19:54:05.497 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3135. 19:59:05.512 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3136. 20:04:05.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3137. 20:09:05.540 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3138. 20:14:05.555 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3139. 20:19:05.570 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3140. 20:24:05.585 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3141. 20:29:05.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3142. 20:34:05.615 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3143. 20:39:05.630 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3144. 20:44:05.644 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3145. 20:49:05.659 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3146. 20:54:05.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3147. 20:59:05.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3148. 21:04:05.701 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3149. 21:09:05.716 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3150. 21:14:05.731 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3151. 21:19:05.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3152. 21:24:05.760 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3153. 21:29:05.775 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3154. 21:34:05.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3155. 21:39:05.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3156. 21:44:05.819 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3157. 21:49:05.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3158. 21:54:05.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3159. 21:59:05.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3160. 22:04:05.877 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3161. 22:09:05.892 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3162. 22:14:05.907 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3163. 22:19:05.922 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3164. 22:24:05.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3165. 22:29:05.951 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3166. 22:34:05.965 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3167. 22:39:05.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3168. 22:44:05.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3169. 22:49:06.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3170. 22:54:06.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3171. 22:59:06.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3172. 23:04:06.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3173. 23:09:06.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3174. 23:14:06.084 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3175. 23:19:06.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3176. 23:24:06.112 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3177. 23:29:06.127 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3178. 23:34:06.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3179. 23:39:06.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3180. 23:44:06.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3181. 23:49:06.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3182. 23:54:06.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3183. 23:59:06.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration