| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196 |
- 00:03:45.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:08:45.247 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:13:45.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:18:45.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:23:45.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:28:45.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:33:45.320 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:38:45.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:43:45.349 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:48:45.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:53:45.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 00:58:45.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:03:45.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:08:45.422 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:13:45.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:18:45.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:23:45.466 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:28:45.481 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:33:45.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:38:45.509 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:43:45.524 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:48:45.539 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:53:45.553 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 01:58:45.568 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:03:45.583 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:08:45.597 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:13:45.611 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:18:45.625 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:23:45.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:25:55.612 [http-nio-8000-exec-11] 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=?
- 02:25:55.615 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [759]
- 02:25:55.617 [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 ?
- 02:25:55.618 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 02:25:55.620 [http-nio-8000-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 02:25:55 EET 2024]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [20101]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [500739]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [FLOAT] - [20.0]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [USD]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [700]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [MICBb2]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [1]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [100]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [BIGINT] - [9057049]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [2]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [MT4]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [2]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [1]
- 02:25:55.620 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [INTEGER] - [1]
- 02:25:55.623 [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 ?
- 02:25:55.626 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 02:25:55.628 [http-nio-8000-exec-11] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"103.148.58.88","addTime":1735259155628,"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":"500739","V_MASTER_PASSWORD_V":"zwx2060A","V_LOGIN_V":"9057049","V_DATE_TIME_V":"2024-12-27 02:25:55","V_INVESTOR_PASSWORD_V":"z76DY913","V_PLATFORM_V":"MT4","V_NAME_V":"春娟 卢"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_COMPLETE_SEND_CN","users":"zwx87@126.com"}
- 02:25:55.634 [http-nio-8000-exec-11] 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=?
- 02:25:55.635 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.164.254.8]
- 02:25:55.635 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-26 17:22:23.0]
- 02:25:55.635 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
- 02:25:55.635 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [Fri Dec 27 02:25:55 EET 2024]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500739]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [700]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [MICBb2]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [z76DY913]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [9057049]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [zwx2060A]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [2]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202412261722226872]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
- 02:25:55.636 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [759]
- 02:28:45.655 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:33:45.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:38:45.684 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:43:45.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:48:45.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:53:45.728 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:58:45.741 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 02:59:51.958 [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
- 02:59:51.959 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 02:59:51.959 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 02:59:52.029 [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
- 02:59:52.031 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 02:59:52.031 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 03:00:51.617 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
- 03:00:51.623 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [656160087@qq.com]
- 03:00:51.623 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
- 03:00:51.660 [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 ?
- 03:00:51.661 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
- 03:00:51.665 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.229.197]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 03:00:51 EET 2024]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [671]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.33.229.197]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 03:00:51 EET 2024]
- 03:00:51.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [远null路]
- 03:00:51.668 [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=?
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [116.130.194.98]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-11 08:33:04.0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [671]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.229.197]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 03:00:51 EET 2024]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [671]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-11-11 08:46:31.0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [霸州市@#4供电小区南区南区2号楼1单元101]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-11-11 08:38:07.0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1994-07-01 00:00:00.0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500708]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [廊坊]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [656160087@qq.com]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [远]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [230505199407020517]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.229.197]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [路]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 03:00:51 EET 2024]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Yuan Lu]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e920176b1d34ae23b45394230e6f293f]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18632615690]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [河北]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [065700]
- 03:00:51.669 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [671]
- 03:02:11.226 [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=?
- 03:02:11.228 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [671]
- 03:02:11.228 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057280]
- 03:03:45.756 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:08:45.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:13:45.785 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:14:46.446 [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 ?
- 03:14:46.448 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 03:14:46.448 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 03:14:46.482 [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 ?
- 03:14:46.483 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 03:14:46.487 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 03:14:46 EET 2024]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 03:14:46 EET 2024]
- 03:14:46.488 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 03:14:46.490 [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=?
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 03:14:46 EET 2024]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 03:14:46 EET 2024]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 03:14:46.491 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 03:18:45.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:23:45.814 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:28:45.828 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:33:45.842 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:38:45.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:43:45.871 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:48:45.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:53:45.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 03:58:45.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:02:43.451 [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
- 04:02:43.455 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:02:43.455 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:02:43.539 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 04:02:43.541 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:02:43.541 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:03:17.366 [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_.email=? and custominfo0_.password=? limit ?
- 04:03:17.370 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [zwx87@126.com]
- 04:03:17.370 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [f7102b3bfc62b4d0709eee8e62780460]
- 04:03:17.396 [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 ?
- 04:03:17.398 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:03:17.402 [http-nio-8000-exec-2] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.225.245]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 04:03:17 EET 2024]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [700]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [36.106.225.245]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 04:03:17 EET 2024]
- 04:03:17.402 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [春娟null卢]
- 04:03:17.405 [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=?
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.164.254.8]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-26 17:09:10.0]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.225.245]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 04:03:17 EET 2024]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [700]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-26 17:21:00.0]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [金海湾花园7号楼@#津南区柳景家园4号楼12楼]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-26 17:18:30.0]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-12-17 00:00:00.0]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500739]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 04:03:17.405 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [zwx87@126.com]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [春娟]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [12011219801218164]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [36.106.225.245]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [卢]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 04:03:17 EET 2024]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChunJuan Lu]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [f7102b3bfc62b4d0709eee8e62780460]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13642168765]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 04:03:17.406 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [700]
- 04:03:37.430 [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
- 04:03:37.432 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:03:37.432 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:03:37.682 [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
- 04:03:37.687 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:03:37.687 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:03:45.930 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:04:00.716 [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 ?
- 04:04:00.719 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [88209898@qq.com]
- 04:04:00.719 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [584dfdd48ed9338582dc881246e12e77]
- 04:04:00.740 [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 ?
- 04:04:00.741 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [548]
- 04:04:00.746 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.225.245]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 04:04:00 EET 2024]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [548]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [548]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [36.106.225.245]
- 04:04:00.746 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 04:04:00 EET 2024]
- 04:04:00.747 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [伟null张]
- 04:04:00.749 [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=?
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.81.13]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-21 04:41:46.0]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [548]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [36.106.225.245]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 04:04:00 EET 2024]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [548]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-05-21 05:09:58.0]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [大沽南路金海湾花园7号楼]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-05-21 04:46:08.0]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1981-01-03 00:00:00.0]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500582]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [88209898@qq.com]
- 04:04:00.749 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [伟]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [0]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120103198101045813]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [36.106.225.245]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 04:04:00 EET 2024]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Wei Zhang]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [584dfdd48ed9338582dc881246e12e77]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18502279677]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
- 04:04:00.750 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [548]
- 04:04:31.330 [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
- 04:04:31.331 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:04:31.332 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:04:31.480 [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
- 04:04:31.481 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:04:31.481 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:05:11.697 [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=?
- 04:05:11.699 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:05:11.699 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
- 04:05:56.298 [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=?
- 04:05:56.299 [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=? order by customfile0_.type asc
- 04:05:56.300 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:05:56.300 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:05:56.451 [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
- 04:05:56.453 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:05:56.453 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:05:56.602 [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
- 04:05:56.603 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 04:05:56.603 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:06:01.320 [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=?
- 04:06:01.322 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 04:06:01.323 [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=?
- 04:06:01.323 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 04:07:26.799 [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 (? , ?)
- 04:07:26.801 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
- 04:07:26.801 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
- 04:08:45.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:11:51.819 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=? and custombank0_.default_bank=? and custombank0_.type=?
- 04:11:51.821 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:11:51.821 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:11:51.821 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
- 04:11:51.829 [http-nio-8000-exec-5] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [36.106.225.245]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 04:11:51 EET 2024]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [700]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [天津学苑支行]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6222621210026393312]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国交通银行-CTB]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [春娟 卢]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [700]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
- 04:11:51.830 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 04:11:51.991 [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=?
- 04:11:51.994 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:11:52.131 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
- 04:11:52.134 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:13:02.971 [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=?
- 04:13:02.972 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 04:13:02.972 [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=?
- 04:13:02.973 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 04:13:45.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:15:18.151 [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=?
- 04:15:18.151 [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
- 04:15:18.154 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:15:18.155 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:15:18.270 [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
- 04:15:18.272 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:15:18.272 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:15:18.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
- 04:15:18.409 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 04:15:18.409 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:17:27.591 [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
- 04:17:27.593 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:17:27.593 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:17:28.503 [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
- 04:17:28.504 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 04:17:28.504 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 04:18:45.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:21:06.962 [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=?
- 04:21:06.964 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:21:06.964 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
- 04:21:34.940 [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=?
- 04:21:34.941 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:21:34.941 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
- 04:23:45.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:28:40.818 [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=?
- 04:28:40.820 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [700]
- 04:28:40.820 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057049]
- 04:28:46.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:33:46.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:37:03.077 [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 ?
- 04:37:03.079 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 04:37:03.079 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 04:37:03.102 [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 ?
- 04:37:03.104 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 04:37:03.108 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 04:37:03 EET 2024]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 04:37:03 EET 2024]
- 04:37:03.108 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 04:37:03.111 [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=?
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 04:37:03 EET 2024]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 04:37:03 EET 2024]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 04:37:03.111 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 04:38:46.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:43:46.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:48:46.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:53:46.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 04:58:46.090 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:03:46.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:08:46.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:13:46.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:18:46.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:23:46.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:28:46.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:33:46.191 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:38:46.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:43:46.220 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:48:46.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:53:46.249 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 05:58:46.263 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:03:46.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:08:46.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:13:46.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:18:46.320 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:23:46.335 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:28:46.350 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:33:46.364 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:38:46.379 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:43:46.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:48:46.408 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:53:46.422 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 06:58:46.437 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:03:46.452 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:08:46.467 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:13:46.482 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:18:46.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:23:46.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:28:46.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:33:46.540 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:38:46.556 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:43:46.571 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:48:46.586 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:53:46.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 07:58:46.615 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:03:46.630 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:07:13.605 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
- 08:07:13.607 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 08:07:13.607 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 08:07:13.629 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 08:07:13.631 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 08:07:13.635 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 08:07:13 EET 2024]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 08:07:13 EET 2024]
- 08:07:13.635 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 08:07:13.637 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 08:07:13 EET 2024]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 08:07:13 EET 2024]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 08:07:13.638 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 08:07:13.639 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 08:08:46.645 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:10:37.665 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 08:10:37.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:10:37.666 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:10:37.878 [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
- 08:10:37.879 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:10:37.879 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:11:28.180 [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 ?
- 08:11:28.184 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 08:11:28.184 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 08:11:28.218 [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 ?
- 08:11:28.221 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:11:28.225 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 08:11:28 EET 2024]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 08:11:28 EET 2024]
- 08:11:28.226 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 08:11:28.228 [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=?
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 08:11:28 EET 2024]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 08:11:28.230 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 08:11:28 EET 2024]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 08:11:28.231 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 08:11:41.254 [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=?
- 08:11:41.257 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:11:41.530 [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=?
- 08:11:41.531 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:11:59.890 [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=?
- 08:11:59.891 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 08:11:59.892 [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=?
- 08:11:59.892 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 08:12:23.387 [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=?
- 08:12:23.388 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
- 08:12:23.390 [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=?
- 08:12:23.390 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
- 08:13:04.872 [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=? and custombank0_.default_bank=? and custombank0_.type=?
- 08:13:04.873 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:13:04.873 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:13:04.873 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
- 08:13:04.881 [http-nio-8000-exec-2] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 08:13:04 EET 2024]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [莘县支行]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6228 4800 2872 1389 774]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国农业银行-ABC]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [志洪 邹]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [699]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
- 08:13:04.881 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:13:05.018 [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=?
- 08:13:05.019 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:13:31.008 [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=?
- 08:13:31.010 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:13:31.010 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 08:13:45.655 [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=?
- 08:13:45.658 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:13:45.808 [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
- 08:13:45.809 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:13:45.809 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:13:45.903 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
- 08:13:45.904 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:13:45.971 [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
- 08:13:45.973 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:13:45.973 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:13:46.659 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:15:18.773 [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
- 08:15:18.775 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:15:18.775 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:15:18.928 [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
- 08:15:18.929 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 08:15:18.929 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 08:15:37.220 [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 ?
- 08:15:37.224 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 08:15:37.224 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 08:15:37.257 [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 ?
- 08:15:37.260 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:15:37.264 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 08:15:37 EET 2024]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 08:15:37 EET 2024]
- 08:15:37.265 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 08:15:37.267 [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=?
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 08:15:37 EET 2024]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 08:15:37.269 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 08:15:37 EET 2024]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 08:15:37.270 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 08:16:01.944 [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=?
- 08:16:01.946 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 08:16:01.946 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 08:16:59.753 [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=?
- 08:16:59.754 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:16:59.756 [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 (? , ?)
- 08:16:59.756 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 08:16:59.756 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 08:18:46.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:23:46.688 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:28:46.703 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:33:46.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:38:46.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:43:46.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:48:46.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:53:46.775 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 08:58:46.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:03:46.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:08:46.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:13:46.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:18:46.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:19:30.952 [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
- 09:19:30.956 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:19:30.956 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:19:31.157 [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
- 09:19:31.158 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:19:31.158 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:19:49.377 [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 ?
- 09:19:49.378 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 09:19:49.378 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:19:49.397 [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 ?
- 09:19:49.398 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:19:49.402 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 09:19:49 EET 2024]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 09:19:49 EET 2024]
- 09:19:49.403 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 09:19:49.405 [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=?
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 09:19:49 EET 2024]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 09:19:49.405 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 09:19:49 EET 2024]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 09:19:49.406 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 09:21:52.753 [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
- 09:21:52.754 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:21:52.754 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:21:52.902 [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
- 09:21:52.904 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:21:52.904 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:22:12.707 [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 ?
- 09:22:12.709 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 09:22:12.709 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:22:12.730 [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 ?
- 09:22:12.732 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:22:12.737 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 09:22:12.737 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 09:22:12 EET 2024]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 09:22:12 EET 2024]
- 09:22:12.738 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 09:22:12.740 [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=?
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 09:22:12 EET 2024]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 09:22:12 EET 2024]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 09:22:12.741 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 09:23:46.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:25:45.229 [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
- 09:25:45.231 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:25:45.231 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:25:45.428 [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
- 09:25:45.429 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:25:45.429 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:26:14.749 [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 ?
- 09:26:14.751 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 09:26:14.751 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:26:14.771 [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 ?
- 09:26:14.773 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:26:14.777 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 09:26:14.777 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 09:26:14.777 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 09:26:14 EET 2024]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 09:26:14 EET 2024]
- 09:26:14.778 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 09:26:14.780 [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=?
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 09:26:14 EET 2024]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 09:26:14.780 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 09:26:14 EET 2024]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 09:26:14.781 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 09:26:34.531 [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=?
- 09:26:34.533 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:26:34.533 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 09:26:54.346 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
- 09:26:54.348 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:26:54.399 [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=?
- 09:26:54.400 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 09:26:54.553 [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
- 09:26:54.554 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 09:26:54.554 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:26:54.861 [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
- 09:26:54.863 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 09:26:54.863 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 09:28:46.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:31:24.046 [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 ?
- 09:31:24.050 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 09:31:24.051 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 09:31:24.087 [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 ?
- 09:31:24.090 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 09:31:24.095 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 09:31:24 EET 2024]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 09:31:24 EET 2024]
- 09:31:24.095 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 09:31:24.097 [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=?
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 09:31:24 EET 2024]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 09:31:24 EET 2024]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 09:31:24.098 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 09:33:46.893 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:38:46.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:43:46.923 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:48:46.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:53:46.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 09:58:46.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:03:46.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:08:46.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:13:47.011 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:16:08.903 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
- 10:16:08.907 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:16:08.907 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:16:09.013 [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
- 10:16:09.014 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
- 10:16:09.014 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
- 10:18:47.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:21:04.978 [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 ?
- 10:21:04.981 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 10:21:04.981 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:21:05.004 [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 ?
- 10:21:05.005 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 10:21:05.009 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 10:21:04 EET 2024]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 10:21:04 EET 2024]
- 10:21:05.010 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 10:21:05.012 [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=?
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 10:21:04 EET 2024]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 10:21:04 EET 2024]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 10:21:05.013 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 10:21:37.236 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
- 10:21:37.238 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 10:21:37.239 [http-nio-8000-exec-7] 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 (? , ?)
- 10:21:37.240 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
- 10:21:37.240 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
- 10:23:47.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:28:47.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:33:47.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:38:36.026 [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 ?
- 10:38:36.028 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [2019534300@qq.com]
- 10:38:36.029 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [710a0732811db62baf5ea5705788fa76]
- 10:38:36.061 [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 ?
- 10:38:36.063 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
- 10:38:36.067 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [182.39.137.27]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 10:38:36 EET 2024]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [528]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [182.39.137.27]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 10:38:36 EET 2024]
- 10:38:36.068 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [锦堃null董]
- 10:38:36.070 [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=?
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.238]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-04-22 06:35:37.0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [182.39.137.27]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 10:38:36 EET 2024]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [528]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-04-22 06:55:34.0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省烟台市莱阳市]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-04-22 06:41:30.0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1999-02-11 00:00:00.0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500561]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [烟台]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [2019534300@qq.com]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [锦堃]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370682199902124435]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [182.39.137.27]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [董]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 10:38:36 EET 2024]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Jin Dong]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [710a0732811db62baf5ea5705788fa76]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17762085608]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [265200]
- 10:38:36.071 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [528]
- 10:38:47.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:40:17.812 [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 ?
- 10:40:17.817 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 10:40:17.817 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:40:17.853 [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 ?
- 10:40:17.856 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 10:40:17.860 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 10:40:17 EET 2024]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 10:40:17 EET 2024]
- 10:40:17.860 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 10:40:17.863 [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=?
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 10:40:17 EET 2024]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:40:17.863 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 10:40:17 EET 2024]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 10:40:17.864 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 10:40:40.498 [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=?
- 10:40:40.500 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
- 10:40:40.500 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057454]
- 10:43:47.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:48:05.512 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
- 10:48:05.514 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 10:48:05.515 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:48:05.535 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
- 10:48:05.536 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 10:48:05.540 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 10:48:05 EET 2024]
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 10:48:05.540 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 10:48:05 EET 2024]
- 10:48:05.541 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 10:48:05.543 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 10:48:05 EET 2024]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 10:48:05.543 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 10:48:05 EET 2024]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 10:48:05.544 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 10:48:47.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:53:47.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 10:58:47.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:03:47.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:08:47.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:13:47.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:18:47.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:23:47.220 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:23:59.821 [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 ?
- 11:23:59.826 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 11:23:59.826 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:23:59.860 [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 ?
- 11:23:59.862 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:23:59.867 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.144.173]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 11:23:59 EET 2024]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [112.224.144.173]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 11:23:59 EET 2024]
- 11:23:59.868 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 11:23:59.870 [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=?
- 11:23:59.872 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 11:23:59.872 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 11:23:59.872 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.144.173]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 11:23:59 EET 2024]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.144.173]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 11:23:59 EET 2024]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 11:23:59.873 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 11:28:47.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:31:38.581 [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 ?
- 11:31:38.584 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 11:31:38.584 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:31:38.604 [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 ?
- 11:31:38.605 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:31:38.610 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.178]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 11:31:38 EET 2024]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.228.178]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 11:31:38 EET 2024]
- 11:31:38.610 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 11:31:38.613 [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=?
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.228.178]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 11:31:38 EET 2024]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 11:31:38.613 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.228.178]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 11:31:38 EET 2024]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 11:31:38.614 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 11:31:57.651 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
- 11:31:57.652 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:31:57.652 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 11:33:47.249 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:36:49.315 [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 ?
- 11:36:49.318 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 11:36:49.318 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:36:49.337 [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 ?
- 11:36:49.339 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:36:49.343 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 11:36:49 EET 2024]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 11:36:49 EET 2024]
- 11:36:49.343 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 11:36:49.346 [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=?
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 11:36:49 EET 2024]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 11:36:49.346 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 11:36:49 EET 2024]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 11:36:49.347 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 11:38:47.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:42:08.840 [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 ?
- 11:42:08.845 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [3405883928@qq.com]
- 11:42:08.845 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:42:08.878 [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 ?
- 11:42:08.880 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:42:08.885 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.194.164]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 11:42:08 EET 2024]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [699]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.194.164]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 11:42:08 EET 2024]
- 11:42:08.886 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [志洪null邹]
- 11:42:08.888 [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=?
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.157]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-25 04:18:59.0]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [699]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.194.164]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 11:42:08 EET 2024]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [699]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-25 04:37:30.0]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省莘县莘亭街道小邹家村60号]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20139]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-25 04:23:52.0]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2005-12-10 00:00:00.0]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500738]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [聊城]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 11:42:08.890 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [3405883928@qq.com]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [志洪]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371522200512110817]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.194.164]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [邹]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 11:42:08 EET 2024]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ZhiHong Zou]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [afdd0b4ad2ec172c586e2150770fbf9e]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17616461812]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [252000]
- 11:42:08.891 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [699]
- 11:42:55.059 [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=?
- 11:42:55.061 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [699]
- 11:42:55.061 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057037]
- 11:43:47.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:48:47.292 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:53:47.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 11:56:58.354 [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 ?
- 11:56:58.359 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 11:56:58.359 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 11:56:58.389 [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 ?
- 11:56:58.391 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 11:56:58.395 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 11:56:58 EET 2024]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 11:56:58 EET 2024]
- 11:56:58.396 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 11:56:58.398 [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=?
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 11:56:58 EET 2024]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 11:56:58 EET 2024]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 11:56:58.400 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 11:57:54.697 [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=?
- 11:57:54.700 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 11:58:01.302 [http-nio-8000-exec-1] 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=?
- 11:58:01.305 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 11:58:02.515 [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=?
- 11:58:02.518 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 11:58:47.321 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:03:47.336 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:08:47.350 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:13:47.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:18:47.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:23:47.392 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:28:47.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:33:47.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:38:47.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:43:47.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:48:47.465 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:53:47.479 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 12:58:47.494 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:03:47.508 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:08:47.522 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:13:47.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:18:47.551 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:23:47.565 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:28:47.580 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:33:47.594 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:38:47.609 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:43:47.623 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:45:22.025 [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 ?
- 13:45:22.029 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1793719335@qq.com]
- 13:45:22.029 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 13:45:22.062 [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 ?
- 13:45:22.064 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [519]
- 13:45:22.068 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.40.187]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 13:45:22 EET 2024]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [519]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.40.187]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 13:45:22 EET 2024]
- 13:45:22.068 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [泳宏null郭]
- 13:45:22.070 [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=?
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.228.110]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-27 04:27:25.0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [519]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.40.187]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 13:45:22 EET 2024]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [519]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-27 04:47:08.0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [子牙里]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-27 04:36:55.0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-06-05 00:00:00.0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500550]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [红桥]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1793719335@qq.com]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [泳宏]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [130729200006062912]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.40.187]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郭]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 13:45:22 EET 2024]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YongHong Guo]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [3a329afb53ff8227be7c9dd128ec2a39]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13630876277]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
- 13:45:22.071 [http-nio-8000-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [519]
- 13:48:47.638 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:53:47.653 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 13:58:47.667 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:03:47.681 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:08:47.696 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:13:47.711 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:18:47.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:23:47.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:28:47.754 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:33:47.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:38:47.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:43:47.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:48:47.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:53:47.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 14:58:47.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:03:47.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:08:47.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:13:47.904 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:18:47.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:23:47.933 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:28:47.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:33:47.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:38:47.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:43:47.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:48:48.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:53:48.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 15:58:48.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:03:48.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:08:48.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:12:06.736 [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 ?
- 16:12:06.738 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [438008708@qq.com]
- 16:12:06.738 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 16:12:06.757 [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 ?
- 16:12:06.759 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [476]
- 16:12:06.763 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.31.170.148]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 16:12:06 EET 2024]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [476]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.31.170.148]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 16:12:06 EET 2024]
- 16:12:06.763 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [畅null任]
- 16:12:06.765 [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=?
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.234.253]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-12-29 08:08:59.0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.31.170.148]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 16:12:06 EET 2024]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [476]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-12-29 08:20:48.0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [永安道罗兰花园7号楼@#永安道罗兰花园7号楼]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-12-29 08:15:21.0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1991-12-15 00:00:00.0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500506]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [438008708@qq.com]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [畅]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [320322199112167332]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.31.170.148]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [任]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 16:12:06 EET 2024]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Chang Ren]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15022443136]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [30000]
- 16:12:06.766 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [476]
- 16:12:22.366 [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=?
- 16:12:22.368 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [476]
- 16:12:22.368 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057295]
- 16:13:48.081 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:18:48.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:23:48.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:28:48.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:33:48.139 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:38:48.154 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:43:48.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:48:48.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:53:48.197 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 16:58:48.212 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:03:48.228 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:08:48.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:13:48.257 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:18:48.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:23:48.272 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:28:48.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:33:48.298 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:38:48.312 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:43:48.327 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:48:48.342 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:53:48.358 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 17:58:48.372 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:03:48.387 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:08:48.401 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:13:48.416 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:18:48.430 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:23:48.444 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:28:48.459 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:33:48.474 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:38:48.488 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:43:48.503 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:48:48.518 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:53:48.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 18:58:48.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:03:48.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:08:48.575 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:13:48.590 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:18:48.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:23:48.619 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:28:48.634 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:33:48.648 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:38:48.662 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:43:48.677 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:48:48.692 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:53:48.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 19:58:48.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:00:47.319 [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 ?
- 20:00:47.323 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [438008708@qq.com]
- 20:00:47.323 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 20:00:47.358 [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 ?
- 20:00:47.359 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [476]
- 20:00:47.363 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.31.170.148]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Fri Dec 27 20:00:47 EET 2024]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [476]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.31.170.148]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Fri Dec 27 20:00:47 EET 2024]
- 20:00:47.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [畅null任]
- 20:00:47.365 [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=?
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.234.253]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-12-29 08:08:59.0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [476]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.31.170.148]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Fri Dec 27 20:00:47 EET 2024]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [476]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-12-29 08:20:48.0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [永安道罗兰花园7号楼@#永安道罗兰花园7号楼]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-12-29 08:15:21.0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1991-12-15 00:00:00.0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500506]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河西]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [438008708@qq.com]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [畅]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [320322199112167332]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.31.170.148]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [任]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Fri Dec 27 20:00:47 EET 2024]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Chang Ren]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e6f58479ae4463eb056bef1473434883]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15022443136]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [30000]
- 20:00:47.366 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [476]
- 20:03:48.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:08:48.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:13:48.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:18:48.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:23:48.797 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:28:48.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:33:48.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:38:48.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:43:48.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:48:48.871 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:53:48.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 20:58:48.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:03:48.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:08:48.929 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:13:48.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:18:48.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:23:48.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:28:48.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:33:49.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:38:49.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:43:49.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:48:49.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:53:49.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 21:58:49.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:03:49.090 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:08:49.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:13:49.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:18:49.132 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:23:49.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:28:49.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:33:49.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:38:49.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:43:49.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:48:49.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:53:49.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 22:58:49.248 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:03:49.263 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:08:49.278 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:13:49.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:18:49.308 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:23:49.322 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:28:49.336 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:33:49.351 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:38:49.366 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:43:49.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:48:49.395 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:53:49.410 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
- 23:58:49.424 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
|