logback.2025-11-29.log 371 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977
  1. 00:01:59.220 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:06:59.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:11:59.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:16:59.225 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:21:59.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:26:59.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:31:59.230 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:36:59.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:41:59.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:46:59.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:51:59.237 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:56:59.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:01:59.240 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:06:59.242 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:11:59.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:16:59.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:21:59.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:26:59.248 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:31:59.250 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:36:59.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:41:59.253 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:46:59.254 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:51:59.256 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:56:59.258 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:01:59.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:06:59.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:11:59.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:17:02.933 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:22:02.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:27:02.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:32:02.937 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:37:02.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:42:02.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:43:59.081 [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 ?
  35. 02:43:59.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [296076020@qq.com]
  36. 02:43:59.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [67fae96c74fa6cfc12b693abc802d421]
  37. 02:43:59.115 [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 ?
  38. 02:43:59.116 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [690]
  39. 02:43:59.121 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  40. 02:43:59.121 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.77.131.96]
  41. 02:43:59.121 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 02:43:59 EET 2025]
  42. 02:43:59.121 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [690]
  43. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  44. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  45. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  46. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  47. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  48. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [690]
  49. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.77.131.96]
  50. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 02:43:59 EET 2025]
  51. 02:43:59.122 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [柏叁null葛]
  52. 02:43:59.124 [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=?
  53. 02:43:59.124 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.88.150.173]
  54. 02:43:59.124 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-12-07 03:12:49.0]
  55. 02:43:59.124 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [690]
  56. 02:43:59.124 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.77.131.96]
  57. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 02:43:59 EET 2025]
  58. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [690]
  59. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  60. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  61. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-12-07 03:43:45.0]
  62. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  63. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  64. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [胶州胶西号]
  65. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20138]
  66. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  67. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-12-07 03:16:28.0]
  68. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  69. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1991-10-15 00:00:00.0]
  70. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500729]
  71. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  72. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  73. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  74. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  75. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  76. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  77. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  78. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [296076020@qq.com]
  79. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [柏叁]
  80. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  81. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  82. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  83. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  84. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  85. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370281199110164211]
  86. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [cn]
  87. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  88. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.77.131.96]
  89. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [葛]
  90. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 02:43:59 EET 2025]
  91. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  92. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [BaiSan Ge]
  93. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  94. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [67fae96c74fa6cfc12b693abc802d421]
  95. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18669710610]
  96. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  97. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  98. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  99. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  100. 02:43:59.125 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [690]
  101. 02:47:02.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  102. 02:52:02.944 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  103. 02:57:02.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  104. 03:02:02.947 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  105. 03:07:02.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  106. 03:12:02.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  107. 03:17:02.952 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  108. 03:22:02.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  109. 03:27:02.956 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  110. 03:32:02.957 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  111. 03:37:02.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  112. 03:42:02.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  113. 03:47:02.961 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  114. 03:52:02.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  115. 03:57:02.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  116. 04:02:02.965 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  117. 04:07:02.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  118. 04:12:02.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  119. 04:17:02.970 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  120. 04:22:02.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  121. 04:27:02.974 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  122. 04:32:02.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  123. 04:37:02.976 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  124. 04:42:02.978 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  125. 04:47:02.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  126. 04:49:38.980 [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 ?
  127. 04:49:38.983 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [399703255@qq.com]
  128. 04:49:38.983 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [16375ad9002f15c896e8a638c345d6e8]
  129. 04:49:39.007 [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 ?
  130. 04:49:39.009 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [883]
  131. 04:49:39.014 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  132. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.27.28.24]
  133. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 04:49:38 EET 2025]
  134. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [883]
  135. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  136. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  137. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  138. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  139. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  140. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [883]
  141. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [60.27.28.24]
  142. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 04:49:38 EET 2025]
  143. 04:49:39.014 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [洋null于]
  144. 04:49:39.017 [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=?
  145. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  146. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-03 05:32:44.0]
  147. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [883]
  148. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [60.27.28.24]
  149. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 04:49:38 EET 2025]
  150. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [883]
  151. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  152. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  153. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-03 05:40:42.0]
  154. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  155. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  156. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [天津市北辰区红郡大厦1927@#天津市北辰区红郡大厦1927]
  157. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  158. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  159. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-03 05:37:44.0]
  160. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  161. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1983-04-16 00:00:00.0]
  162. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500932]
  163. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  164. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  165. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [北辰]
  166. 04:49:39.017 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  167. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  168. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  169. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  170. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [399703255@qq.com]
  171. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [洋]
  172. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  173. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  174. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  175. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  176. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  177. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [211481198304170225]
  178. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  179. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  180. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [60.27.28.24]
  181. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [于]
  182. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 04:49:38 EET 2025]
  183. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  184. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Yang Yu]
  185. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  186. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [16375ad9002f15c896e8a638c345d6e8]
  187. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18600042227]
  188. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  189. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  190. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  191. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  192. 04:49:39.018 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [883]
  193. 04:50:29.048 [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=?
  194. 04:50:29.050 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [883]
  195. 04:50:29.050 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057355]
  196. 04:52:02.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  197. 04:57:02.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  198. 05:02:02.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  199. 05:04:38.860 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
  200. 05:04:38.862 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  201. 05:04:38.862 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  202. 05:04:38.915 [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
  203. 05:04:38.917 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  204. 05:04:38.917 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  205. 05:07:02.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  206. 05:10:26.389 [http-nio-8000-exec-3] INFO c.c.c.s.impl.CustomInfoServiceImpl - register email:liang851023@126.com,emailCode:liang851023@126.com,agentId:20130,comPoint:20
  207. 05:10:38.304 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  208. 05:10:38.305 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [liang851023@126.com]
  209. 05:10:38.315 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764385838315,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_CODE","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2025-11-29 07:10:38","V_CODE_V":"762095","V_DATE_TIME_V":"2025-11-29 05:10:38"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_SEND_EMAIL_CODE_CN","users":"liang851023@126.com"}
  210. 05:11:32.031 [http-nio-8000-exec-2] INFO c.c.c.s.impl.CustomInfoServiceImpl - register email:liang851023@126.com,emailCode:762095,agentId:20130,comPoint:20
  211. 05:11:32.033 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  212. 05:11:32.033 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [liang851023@126.com]
  213. 05:11:32.055 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  214. 05:11:32.056 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  215. 05:11:32.058 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.code=?
  216. 05:11:32.058 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  217. 05:11:32.079 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - insert into custom_info (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, address_line, agent_id, apply_real_status, apply_real_time, area_code, birth, c_id, check_email, check_phone, city, com_point, country, country_en_name, country_name, email, first_name, gender, head_picture, hide, ib_id, ib_invalid, identity, lang, last_address, last_ip, last_name, last_time, middle, name_en, nationality, password, phone, state, tax_number, valid, zip_code) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  218. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  219. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  220. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  221. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  222. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  223. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  224. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  225. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  226. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  227. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  228. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  229. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  230. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  231. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  232. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  233. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  234. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  235. 05:11:32.080 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  236. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  237. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  238. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  239. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  240. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  241. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  242. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  243. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  244. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  245. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  246. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  247. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  248. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  249. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  250. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  251. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  252. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  253. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  254. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  255. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  256. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  257. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  258. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  259. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  260. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  261. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  262. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  263. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  264. 05:11:32.081 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  265. 05:11:32.090 [http-nio-8000-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764385892090,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE","imageFilesMap":null,"map":{"V_EMAIL_V":"liang851023@126.com","V_C_ID_V":"500956","V_DATE_TIME_V":"2025-11-29 05:11:32"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_REGISTER_COMPLETE_SEND_CN","users":"liang851023@126.com"}
  266. 05:11:32.096 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  267. 05:11:32.097 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [REGISTER_EMAIL_NOTICE]
  268. 05:11:32.097 [http-nio-8000-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764385892097,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"REGISTER_COMPLETE_MANAGER","imageFilesMap":null,"map":{"V_EMAIL_V":"liang851023@126.com","V_C_ID_V":"500956","V_DATE_TIME_V":"2025-11-29 05:11:32"},"note":null,"sendDate":null,"subject":null,"templateName":"REGISTER_COMPLETE_NOTICE_NAME","users":"mactor2020@126.com"}
  269. 05:11:32.100 [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=?
  270. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  271. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  272. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  273. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  274. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  275. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  276. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  277. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  278. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  279. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  280. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  281. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  282. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  283. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  284. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  285. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  286. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  287. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  288. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  289. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  290. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  291. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  292. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  293. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  294. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  295. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  296. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  297. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  298. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  299. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  300. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  301. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  302. 05:11:32.101 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  303. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  304. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [null]
  305. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  306. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  307. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [null]
  308. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  309. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  310. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  311. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  312. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  313. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  314. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  315. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  316. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  317. 05:11:32.102 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  318. 05:11:32.181 [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 ?
  319. 05:11:32.184 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [liang851023@126.com]
  320. 05:11:32.184 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  321. 05:11:32.202 [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 ?
  322. 05:11:32.203 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  323. 05:11:32.210 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  324. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  325. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  326. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  327. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  328. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  329. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  330. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  331. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  332. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [906]
  333. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.33.4.193]
  334. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  335. 05:11:32.210 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [nullnullnull]
  336. 05:11:32.214 [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=?
  337. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  338. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  339. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  340. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  341. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  342. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [906]
  343. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  344. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  345. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  346. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  347. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  348. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  349. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  350. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  351. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  352. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  353. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [null]
  354. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  355. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  356. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  357. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  358. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  359. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  360. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  361. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  362. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  363. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  364. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [null]
  365. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  366. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  367. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  368. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  369. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [null]
  370. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  371. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  372. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  373. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [null]
  374. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 05:11:32 EET 2025]
  375. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  376. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  377. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  378. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  379. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  380. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [null]
  381. 05:11:32.215 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  382. 05:11:32.216 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  383. 05:11:32.216 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  384. 05:11:32.216 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  385. 05:11:38.886 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  386. 05:11:38.887 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  387. 05:11:38.889 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  388. 05:11:38.889 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
  389. 05:11:38.899 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  390. 05:11:38.904 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  391. 05:11:39.009 [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
  392. 05:11:39.010 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  393. 05:11:39.010 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  394. 05:11:39.230 [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
  395. 05:11:39.231 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  396. 05:11:39.231 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  397. 05:12:02.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  398. 05:14:08.975 [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
  399. 05:14:08.978 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  400. 05:14:08.978 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  401. 05:17:02.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  402. 05:19:31.107 [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
  403. 05:19:31.108 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  404. 05:22:02.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  405. 05:25:11.536 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  406. 05:25:11.537 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  407. 05:25:11.537 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  408. 05:25:11.538 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  409. 05:25:11.539 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  410. 05:25:11.539 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  411. 05:25:11.561 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  412. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  413. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:25:11 EET 2025]
  414. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  415. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  416. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  417. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  418. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  419. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  420. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [906]
  421. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/906/info/61e9b5453ba041fbad65a390c5164aaa.jpg]
  422. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  423. 05:25:11.562 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  424. 05:25:17.241 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  425. 05:25:17.242 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  426. 05:25:17.242 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  427. 05:25:17.243 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  428. 05:25:17.243 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  429. 05:25:17.243 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [2]
  430. 05:25:17.265 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  431. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  432. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:25:17 EET 2025]
  433. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  434. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  435. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  436. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  437. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  438. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  439. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [906]
  440. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/906/info/952ce5afbe9e4817a043bff55a1221c4.jpg]
  441. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  442. 05:25:17.266 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [2]
  443. 05:25:40.619 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  444. 05:25:40.621 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  445. 05:27:02.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  446. 05:28:58.673 [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 (? , ?)
  447. 05:28:58.675 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  448. 05:28:58.675 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  449. 05:28:58.677 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? and customfile0_.type=? limit ? for update
  450. 05:28:58.678 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  451. 05:28:58.678 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [3]
  452. 05:28:58.700 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - insert into custom_file (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, again_path, custom_id, path, status, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  453. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  454. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:28:58 EET 2025]
  455. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  456. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  457. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  458. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  459. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  460. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  461. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [906]
  462. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [/file/906/info/e62223e8ed534299bae05bc389b8a7ff.jpg]
  463. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  464. 05:28:58.701 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [3]
  465. 05:29:26.748 [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_.id=? limit ? for update
  466. 05:29:26.753 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  467. 05:29:26.756 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.identity=? limit ?
  468. 05:29:26.756 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120111198510230518]
  469. 05:29:26.765 [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_.code=?
  470. 05:29:26.765 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  471. 05:29:26.774 [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 ? for update
  472. 05:29:26.774 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  473. 05:29:26.779 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - insert into custom_survey (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, custom_id, derivative_products, employment_status, experience_qualification, experience_trading_derivative, experience_trading_forex, gross_annual_income, level, occupation, source_funding, total_new_worth, trading_objectives) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  474. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  475. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:29:26 EET 2025]
  476. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  477. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  478. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  479. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  480. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  481. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [906]
  482. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [INTEGER] - [1]
  483. 05:29:26.779 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [2]
  484. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  485. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  486. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [1]
  487. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [5]
  488. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3]
  489. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  490. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [2]
  491. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [3]
  492. 05:29:26.780 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [4]
  493. 05:29:26.781 [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=?
  494. 05:29:26.782 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  495. 05:29:26.786 [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=?
  496. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  497. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  498. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  499. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  500. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 05:29:26 EET 2025]
  501. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  502. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  503. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  504. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  505. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  506. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  507. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赤峰道津湾广场8号楼4门1312@#赤峰道津湾广场8号楼4门1312]
  508. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  509. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  510. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [null]
  511. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  512. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [Tue Oct 22 18:00:00 EET 1985]
  513. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  514. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  515. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  516. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  517. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  518. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  519. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  520. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  521. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  522. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [友亮]
  523. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  524. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  525. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  526. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  527. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  528. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198510230518]
  529. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  530. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  531. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  532. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [黄]
  533. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  534. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  535. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YouLiang Huang]
  536. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  537. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  538. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  539. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  540. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  541. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  542. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300380]
  543. 05:29:26.787 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  544. 05:29:26.867 [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
  545. 05:29:26.869 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  546. 05:29:26.964 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  547. 05:29:26.967 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  548. 05:29:26.968 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  549. 05:29:26.968 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  550. 05:29:26.968 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  551. 05:29:26.970 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  552. 05:29:26.973 [http-nio-8000-exec-1] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764386966973,"addUser":906,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"SUBMIT_VERIFICATION","imageFilesMap":null,"map":{"V_C_ID_V":"500956","V_P_IB_NO_V":"500956","V_NAME_V":"友亮 黄","V_EMAIL_V":"liang851023@126.com","V_APPLY_TIME_V":"2025-11-29 05:29:26","V_DATE_TIME_V":"2025-11-29 05:29:26"},"note":null,"sendDate":null,"subject":null,"templateName":"SUBMIT_VERIFICATION_NOTICE_NAME","users":"mactor2020@126.com"}
  553. 05:29:26.979 [http-nio-8000-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  554. 05:29:26.980 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  555. 05:29:26.980 [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=?
  556. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  557. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  558. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  559. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  560. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 05:29:26 EET 2025]
  561. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [906]
  562. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  563. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  564. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  565. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  566. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  567. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赤峰道津湾广场8号楼4门1312@#赤峰道津湾广场8号楼4门1312]
  568. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  569. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  570. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [Sat Nov 29 05:29:26 EET 2025]
  571. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  572. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1985-10-22 00:00:00.0]
  573. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  574. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  575. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  576. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  577. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  578. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  579. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  580. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  581. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  582. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [友亮]
  583. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  584. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  585. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  586. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  587. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  588. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198510230518]
  589. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  590. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  591. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  592. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [黄]
  593. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  594. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  595. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YouLiang Huang]
  596. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  597. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  598. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  599. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  600. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  601. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  602. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300380]
  603. 05:29:26.981 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  604. 05:29:27.166 [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
  605. 05:29:27.167 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  606. 05:29:27.167 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  607. 05:29:27.255 [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
  608. 05:29:27.256 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  609. 05:29:27.256 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  610. 05:29:27.339 [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
  611. 05:29:27.340 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  612. 05:29:27.341 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  613. 05:32:02.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  614. 05:33:38.306 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  615. 05:33:38.309 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [shengping20020@163.com]
  616. 05:33:38.309 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7da6feb21d09a73a665c9369588bfe5b]
  617. 05:33:38.330 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
  618. 05:33:38.332 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [665]
  619. 05:33:38.336 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  620. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.30.249.110]
  621. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 05:33:38 EET 2025]
  622. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [665]
  623. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  624. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  625. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  626. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  627. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  628. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [665]
  629. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.30.249.110]
  630. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 05:33:38 EET 2025]
  631. 05:33:38.336 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [晟平null金]
  632. 05:33:38.338 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  633. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.7.14]
  634. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-11-08 07:20:42.0]
  635. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [665]
  636. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.30.249.110]
  637. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 05:33:38 EET 2025]
  638. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [665]
  639. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  640. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  641. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-11-08 07:33:38.0]
  642. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  643. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  644. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [黑龙江省宁安市江南朝鲜族满族乡永胜村@#黑龙江省宁安市江南朝鲜族满族乡永胜村]
  645. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  646. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  647. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-11-08 07:31:16.0]
  648. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  649. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2003-02-02 00:00:00.0]
  650. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500702]
  651. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  652. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  653. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [牡丹江]
  654. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  655. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  656. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  657. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  658. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [shengping20020@163.com]
  659. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [晟平]
  660. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  661. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  662. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  663. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  664. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  665. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [231084200302032014]
  666. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  667. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  668. 05:33:38.339 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.30.249.110]
  669. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [金]
  670. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 05:33:38 EET 2025]
  671. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  672. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ChengPing Jin]
  673. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  674. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [7da6feb21d09a73a665c9369588bfe5b]
  675. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17622390603]
  676. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [黑龙江]
  677. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  678. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  679. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [157499]
  680. 05:33:38.340 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [665]
  681. 05:34:35.298 [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=?
  682. 05:34:35.300 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [665]
  683. 05:34:35.300 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057274]
  684. 05:37:02.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  685. 05:42:02.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  686. 05:47:02.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  687. 05:52:02.999 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  688. 05:57:03.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  689. 06:02:03.001 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  690. 06:07:03.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  691. 06:12:03.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  692. 06:17:03.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  693. 06:22:03.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  694. 06:27:03.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  695. 06:32:03.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  696. 06:37:03.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  697. 06:42:03.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  698. 06:47:03.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  699. 06:52:03.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  700. 06:57:03.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  701. 07:02:03.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  702. 07:07:03.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  703. 07:12:03.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  704. 07:17:03.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  705. 07:22:03.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  706. 07:27:03.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  707. 07:32:03.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  708. 07:36:41.020 [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 ?
  709. 07:36:41.025 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [chensen168@qq.com]
  710. 07:36:41.025 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [9cf0039e877fb29d5cf203c61f54a96a]
  711. 07:36:53.089 [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 ?
  712. 07:36:53.091 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [chensen168@qq.com]
  713. 07:36:53.091 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  714. 07:36:53.114 [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 ?
  715. 07:36:53.116 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  716. 07:36:53.121 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  717. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.212.8.27]
  718. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 07:36:53 EET 2025]
  719. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  720. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  721. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  722. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  723. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  724. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  725. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [897]
  726. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [14.212.8.27]
  727. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 07:36:53 EET 2025]
  728. 07:36:53.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [森null陈]
  729. 07:36:53.123 [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=?
  730. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.252.112.10]
  731. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-17 05:34:53.0]
  732. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  733. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [14.212.8.27]
  734. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 07:36:53 EET 2025]
  735. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [897]
  736. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  737. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  738. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-17 05:47:01.0]
  739. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  740. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  741. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [南庄万科金域时光5座2102@#南庄万科金域时光5座2102]
  742. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20147]
  743. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  744. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-17 05:44:30.0]
  745. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  746. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-10-11 00:00:00.0]
  747. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500946]
  748. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  749. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  750. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  751. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  752. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  753. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  754. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  755. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [chensen168@qq.com]
  756. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [森]
  757. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  758. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  759. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  760. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  761. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  762. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [440882198010126130]
  763. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  764. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  765. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [14.212.8.27]
  766. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [陈]
  767. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 07:36:53 EET 2025]
  768. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  769. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Sen Chen]
  770. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  771. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  772. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18826318678]
  773. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  774. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  775. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  776. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528000]
  777. 07:36:53.124 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [897]
  778. 07:37:03.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  779. 07:40:11.697 [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 ?
  780. 07:40:11.702 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [chensen168@qq.com]
  781. 07:40:11.702 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  782. 07:40:11.745 [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 ?
  783. 07:40:11.747 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  784. 07:40:11.752 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  785. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.212.8.27]
  786. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 07:40:11 EET 2025]
  787. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  788. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  789. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  790. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  791. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  792. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  793. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [897]
  794. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [14.212.8.27]
  795. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 07:40:11 EET 2025]
  796. 07:40:11.753 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [森null陈]
  797. 07:40:11.755 [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=?
  798. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.252.112.10]
  799. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-17 05:34:53.0]
  800. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  801. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [14.212.8.27]
  802. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 07:40:11 EET 2025]
  803. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [897]
  804. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  805. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  806. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-17 05:47:01.0]
  807. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  808. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  809. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [南庄万科金域时光5座2102@#南庄万科金域时光5座2102]
  810. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20147]
  811. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  812. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-17 05:44:30.0]
  813. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  814. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-10-11 00:00:00.0]
  815. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500946]
  816. 07:40:11.757 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  817. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  818. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  819. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  820. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  821. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  822. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  823. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [chensen168@qq.com]
  824. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [森]
  825. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  826. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  827. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  828. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  829. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  830. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [440882198010126130]
  831. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  832. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  833. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [14.212.8.27]
  834. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [陈]
  835. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 07:40:11 EET 2025]
  836. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  837. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Sen Chen]
  838. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  839. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  840. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18826318678]
  841. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  842. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  843. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  844. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528000]
  845. 07:40:11.758 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [897]
  846. 07:42:03.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  847. 07:42:38.056 [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 ?
  848. 07:42:38.061 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [chensen168@qq.com]
  849. 07:42:38.061 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  850. 07:42:38.104 [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 ?
  851. 07:42:38.108 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  852. 07:42:38.114 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  853. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.212.8.27]
  854. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 07:42:38 EET 2025]
  855. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  856. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  857. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  858. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  859. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  860. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  861. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [897]
  862. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [14.212.8.27]
  863. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 07:42:38 EET 2025]
  864. 07:42:38.115 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [森null陈]
  865. 07:42:38.120 [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=?
  866. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.252.112.10]
  867. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-17 05:34:53.0]
  868. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  869. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [14.212.8.27]
  870. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 07:42:38 EET 2025]
  871. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [897]
  872. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  873. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  874. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-17 05:47:01.0]
  875. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  876. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  877. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [南庄万科金域时光5座2102@#南庄万科金域时光5座2102]
  878. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20147]
  879. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  880. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-17 05:44:30.0]
  881. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  882. 07:42:38.121 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-10-11 00:00:00.0]
  883. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500946]
  884. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  885. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  886. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  887. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  888. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  889. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  890. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  891. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [chensen168@qq.com]
  892. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [森]
  893. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  894. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  895. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  896. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  897. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  898. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [440882198010126130]
  899. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  900. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  901. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [14.212.8.27]
  902. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [陈]
  903. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 07:42:38 EET 2025]
  904. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  905. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Sen Chen]
  906. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  907. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  908. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18826318678]
  909. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  910. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  911. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  912. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528000]
  913. 07:42:38.122 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [897]
  914. 07:45:31.764 [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 ?
  915. 07:45:31.769 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [chensen168@qq.com]
  916. 07:45:31.769 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  917. 07:45:31.807 [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 ?
  918. 07:45:31.809 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  919. 07:45:31.815 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  920. 07:45:31.815 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.212.8.27]
  921. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 07:45:31 EET 2025]
  922. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  923. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  924. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  925. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  926. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  927. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  928. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [897]
  929. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [14.212.8.27]
  930. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 07:45:31 EET 2025]
  931. 07:45:31.816 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [森null陈]
  932. 07:45:31.818 [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=?
  933. 07:45:31.819 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.252.112.10]
  934. 07:45:31.819 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-17 05:34:53.0]
  935. 07:45:31.819 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  936. 07:45:31.819 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [14.212.8.27]
  937. 07:45:31.819 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 07:45:31 EET 2025]
  938. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [897]
  939. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  940. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  941. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-17 05:47:01.0]
  942. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  943. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  944. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [南庄万科金域时光5座2102@#南庄万科金域时光5座2102]
  945. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20147]
  946. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  947. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-17 05:44:30.0]
  948. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  949. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1980-10-11 00:00:00.0]
  950. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500946]
  951. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  952. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  953. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  954. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  955. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  956. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  957. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  958. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [chensen168@qq.com]
  959. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [森]
  960. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  961. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  962. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  963. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  964. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  965. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [440882198010126130]
  966. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  967. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  968. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [14.212.8.27]
  969. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [陈]
  970. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 07:45:31 EET 2025]
  971. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  972. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Sen Chen]
  973. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  974. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [7804442cdc3319716f8d6865445881f9]
  975. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18826318678]
  976. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  977. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  978. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  979. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528000]
  980. 07:45:31.820 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [897]
  981. 07:46:19.281 [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=?
  982. 07:46:19.284 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  983. 07:47:03.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  984. 07:48:02.278 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  985. 07:48:02.279 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  986. 07:48:02.281 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  987. 07:48:02.281 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  988. 07:52:03.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  989. 07:52:56.447 [http-nio-8000-exec-10] 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=?
  990. 07:52:56.449 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  991. 07:52:56.449 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  992. 07:52:56.449 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  993. 07:52:56.457 [http-nio-8000-exec-10] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  994. 07:52:56.458 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.212.8.27]
  995. 07:52:56.458 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 07:52:56 EET 2025]
  996. 07:52:56.458 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [897]
  997. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  998. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  999. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1000. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1001. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1002. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1003. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [深圳南新路支行]
  1004. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6230580000279785195]
  1005. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1006. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
  1007. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [平安银行]
  1008. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [森 陈]
  1009. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [897]
  1010. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  1011. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  1012. 07:52:56.459 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1013. 07:52:56.714 [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=?
  1014. 07:52:56.715 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  1015. 07:57:03.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1016. 07:58:22.585 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1017. 07:58:22.588 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1018. 07:58:22.590 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1019. 07:58:22.591 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1020. 07:58:22.591 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1021. 08:00:25.127 [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=?
  1022. 08:00:25.130 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  1023. 08:00:51.669 [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=?
  1024. 08:00:51.671 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [897]
  1025. 08:00:51.671 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057237]
  1026. 08:01:39.314 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1027. 08:01:39.317 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1028. 08:01:39.319 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1029. 08:01:39.319 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1030. 08:01:39.319 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1031. 08:02:03.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1032. 08:07:03.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1033. 08:12:03.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1034. 08:17:03.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1035. 08:22:03.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1036. 08:27:03.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1037. 08:32:03.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1038. 08:37:03.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1039. 08:42:03.052 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1040. 08:47:03.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1041. 08:52:03.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1042. 08:57:03.057 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1043. 09:02:03.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1044. 09:07:03.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1045. 09:12:03.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1046. 09:17:03.063 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1047. 09:18:30.907 [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=?
  1048. 09:18:30.911 [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
  1049. 09:18:30.915 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1050. 09:18:30.916 [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=?
  1051. 09:18:30.917 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_MOBILE_UPLOAD_CONFIG]
  1052. 09:18:30.920 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1053. 09:18:31.054 [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
  1054. 09:18:31.055 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1055. 09:18:31.055 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1056. 09:18:31.199 [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
  1057. 09:18:31.200 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1058. 09:18:31.200 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1059. 09:18:31.319 [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
  1060. 09:18:31.320 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  1061. 09:18:31.320 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1062. 09:18:52.896 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  1063. 09:18:52.898 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1064. 09:18:52.901 [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_.code=?
  1065. 09:18:52.901 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [CN]
  1066. 09:18:52.909 [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 ? for update
  1067. 09:18:52.910 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1068. 09:18:52.915 [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=?
  1069. 09:18:52.915 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1070. 09:18:52.919 [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=?
  1071. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1072. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1073. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1074. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  1075. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 09:18:52 EET 2025]
  1076. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1077. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1078. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1079. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1080. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1081. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1082. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赤峰道津湾广场8号楼4门1312@#赤峰道津湾广场8号楼4门1312]
  1083. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1084. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  1085. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-29 05:29:27.0]
  1086. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1087. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [Tue Oct 22 18:00:00 EET 1985]
  1088. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  1089. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1090. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1091. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  1092. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1093. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1094. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1095. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1096. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  1097. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [友亮]
  1098. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1099. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1100. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1101. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1102. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1103. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198510230518]
  1104. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1105. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1106. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  1107. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [黄]
  1108. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1109. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1110. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YouLiang Huang]
  1111. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1112. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  1113. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  1114. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1115. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1116. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1117. 09:18:52.920 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300380]
  1118. 09:18:52.921 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  1119. 09:18:52.922 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - update custom_survey set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, custom_id=?, derivative_products=?, employment_status=?, experience_qualification=?, experience_trading_derivative=?, experience_trading_forex=?, gross_annual_income=?, level=?, occupation=?, source_funding=?, total_new_worth=?, trading_objectives=? where id=?
  1120. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1121. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:29:27.0]
  1122. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  1123. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  1124. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 09:18:52 EET 2025]
  1125. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1126. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1127. 09:18:52.922 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [BIGINT] - [906]
  1128. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [INTEGER] - [1]
  1129. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [2]
  1130. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1131. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [1]
  1132. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [1]
  1133. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [5]
  1134. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [3]
  1135. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1136. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [2]
  1137. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [3]
  1138. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [4]
  1139. 09:18:52.923 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [851]
  1140. 09:18:53.006 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  1141. 09:18:53.008 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1142. 09:18:53.016 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ? for update
  1143. 09:18:53.018 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1144. 09:18:53.019 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1145. 09:18:53.020 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1146. 09:18:53.020 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1147. 09:18:53.021 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  1148. 09:18:53.024 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764400733024,"addUser":906,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"SUBMIT_VERIFICATION","imageFilesMap":null,"map":{"V_C_ID_V":"500956","V_P_IB_NO_V":"500956","V_NAME_V":"友亮 黄","V_EMAIL_V":"liang851023@126.com","V_APPLY_TIME_V":"2025-11-29 09:18:53","V_DATE_TIME_V":"2025-11-29 09:18:53"},"note":null,"sendDate":null,"subject":null,"templateName":"SUBMIT_VERIFICATION_NOTICE_NAME","users":"mactor2020@126.com"}
  1149. 09:18:53.049 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1150. 09:18:53.050 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1151. 09:18:53.051 [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=?
  1152. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1153. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1154. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1155. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  1156. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 09:18:53 EET 2025]
  1157. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [906]
  1158. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1159. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1160. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1161. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1162. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1163. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赤峰道津湾广场8号楼4门1312@#赤峰道津湾广场8号楼4门1312]
  1164. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1165. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  1166. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [Sat Nov 29 09:18:53 EET 2025]
  1167. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1168. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1985-10-22 00:00:00.0]
  1169. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  1170. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1171. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1172. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  1173. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1174. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1175. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1176. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1177. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  1178. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [友亮]
  1179. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1180. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1181. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1182. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1183. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1184. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198510230518]
  1185. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1186. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1187. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  1188. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [黄]
  1189. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1190. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1191. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YouLiang Huang]
  1192. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1193. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [e9042fb8123f157ec1bdde834c05f594]
  1194. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  1195. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1196. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1197. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1198. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300380]
  1199. 09:18:53.052 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  1200. 09:18:53.221 [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
  1201. 09:18:53.223 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1202. 09:18:53.223 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1203. 09:18:53.310 [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
  1204. 09:18:53.311 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1205. 09:18:53.311 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1206. 09:18:53.394 [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
  1207. 09:18:53.395 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [19]
  1208. 09:18:53.395 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1209. 09:22:03.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1210. 09:27:03.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1211. 09:32:03.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1212. 09:37:03.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1213. 09:37:07.683 [http-nio-8000-exec-6] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failed to invoke @ExceptionHandler method: public java.util.Map com.crm.rely.backend.aspect.ControllerExceptionAdvice.controllerExceptionHandler(java.lang.Exception) throws java.io.IOException
  1214. org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
  1215. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:200)
  1216. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  1217. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  1218. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:113)
  1219. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:384)
  1220. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  1221. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  1222. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
  1223. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1222)
  1224. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1034)
  1225. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:984)
  1226. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1227. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1228. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1229. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1230. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1231. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1232. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1233. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1234. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1235. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1236. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1237. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1238. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1239. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1240. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1241. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1242. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1243. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1244. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1245. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1246. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1247. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1248. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1249. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1250. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1251. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1252. at java.lang.Thread.run(Unknown Source)
  1253. 09:37:07.684 [http-nio-8000-exec-6] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
  1254. com.crm.rely.backend.exception.DataNotFoundException: not found
  1255. at com.crm.rely.backend.controller.NotFoundExceptionController.error(NotFoundExceptionController.java:44)
  1256. at sun.reflect.GeneratedMethodAccessor1012.invoke(Unknown Source)
  1257. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  1258. at java.lang.reflect.Method.invoke(Unknown Source)
  1259. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  1260. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  1261. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
  1262. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  1263. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  1264. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  1265. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
  1266. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1267. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1268. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1269. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1270. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1271. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1272. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1273. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1274. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1275. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1276. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1277. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1278. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1279. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1280. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1281. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1282. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1283. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1284. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1285. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1286. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1287. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1288. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1289. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1290. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1291. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1292. at java.lang.Thread.run(Unknown Source)
  1293. 09:37:07.685 [http-nio-8000-exec-6] ERROR o.a.c.c.C.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error]
  1294. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.crm.rely.backend.exception.DataNotFoundException: not found
  1295. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  1296. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  1297. at javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  1298. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1299. at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  1300. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
  1301. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
  1302. at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:728)
  1303. at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:469)
  1304. at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:392)
  1305. at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
  1306. at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395)
  1307. at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254)
  1308. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177)
  1309. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
  1310. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1311. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
  1312. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:803)
  1313. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1314. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868)
  1315. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459)
  1316. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1317. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  1318. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  1319. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1320. at java.lang.Thread.run(Unknown Source)
  1321. Caused by: com.crm.rely.backend.exception.DataNotFoundException: not found
  1322. at com.crm.rely.backend.controller.NotFoundExceptionController.error(NotFoundExceptionController.java:44)
  1323. at sun.reflect.GeneratedMethodAccessor1012.invoke(Unknown Source)
  1324. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  1325. at java.lang.reflect.Method.invoke(Unknown Source)
  1326. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  1327. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  1328. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
  1329. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  1330. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  1331. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  1332. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
  1333. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
  1334. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1335. ... 25 common frames omitted
  1336. 09:42:03.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1337. 09:43:28.747 [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=?
  1338. 09:43:28.749 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1339. 09:43:28.835 [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
  1340. 09:43:28.836 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1341. 09:43:28.864 [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
  1342. 09:43:28.866 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1343. 09:43:28.866 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1344. 09:43:29.024 [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
  1345. 09:43:29.025 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1346. 09:43:29.025 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1347. 09:43:44.231 [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=?
  1348. 09:43:44.232 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1349. 09:43:44.233 [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=?
  1350. 09:43:44.233 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  1351. 09:47:03.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1352. 09:47:08.523 [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=? and custombank0_.default_bank=? and custombank0_.type=?
  1353. 09:47:08.525 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1354. 09:47:08.525 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1355. 09:47:08.525 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  1356. 09:47:08.533 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - insert into custom_bank (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, custom_id, default_bank, swift_code, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1357. 09:47:08.533 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1358. 09:47:08.533 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 09:47:08 EET 2025]
  1359. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1360. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1361. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1362. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1363. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1364. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1365. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1366. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [天津西青支行]
  1367. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6217000066027307482]
  1368. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1369. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
  1370. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国建设银行-CBC]
  1371. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [友亮 黄]
  1372. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [906]
  1373. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  1374. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  1375. 09:47:08.534 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1376. 09:47:08.612 [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=?
  1377. 09:47:08.614 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1378. 09:47:08.700 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  1379. 09:47:08.701 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1380. 09:49:13.190 [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_.id=? limit ? for update
  1381. 09:49:13.192 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1382. 09:49:13.196 [http-nio-8000-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764402553196,"addUser":906,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FORGET_PASSWORD","imageFilesMap":null,"map":{"V_NAME_V":"友亮 黄","V_DATE_TIME_V":"2025-11-29 09:49:13"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_UPDATE_PASSWORD_COMPLETE_SEND_CN","users":"liang851023@126.com"}
  1383. 09:49:13.201 [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=?
  1384. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1385. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1386. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1387. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.33.4.193]
  1388. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 09:49:13 EET 2025]
  1389. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [906]
  1390. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1391. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1392. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1393. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1394. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1395. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赤峰道津湾广场8号楼4门1312@#赤峰道津湾广场8号楼4门1312]
  1396. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1397. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [1]
  1398. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-29 09:18:53.0]
  1399. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1400. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1985-10-22 00:00:00.0]
  1401. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500956]
  1402. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1403. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1404. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [和平]
  1405. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1406. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1407. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1408. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1409. 09:49:13.202 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [liang851023@126.com]
  1410. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [友亮]
  1411. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1412. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1413. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1414. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1415. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1416. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120111198510230518]
  1417. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1418. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1419. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.33.4.193]
  1420. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [黄]
  1421. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [2025-11-29 05:11:32.0]
  1422. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1423. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [YouLiang Huang]
  1424. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1425. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [d3c33dfeea87199f407dc4bc6bbc8cf2]
  1426. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18002125559]
  1427. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1428. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1429. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1430. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300380]
  1431. 09:49:13.203 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [906]
  1432. 09:51:24.657 [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
  1433. 09:51:24.659 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=?
  1434. 09:51:24.661 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1435. 09:51:24.666 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1436. 09:51:24.785 [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
  1437. 09:51:24.786 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1438. 09:51:24.786 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1439. 09:51:24.983 [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
  1440. 09:51:24.985 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1441. 09:51:24.985 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1442. 09:52:03.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1443. 09:57:03.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1444. 10:00:10.013 [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
  1445. 10:00:10.015 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1446. 10:00:10.065 [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=?
  1447. 10:00:10.066 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1448. 10:00:10.150 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select syscountry0_.id as id1_75_, syscountry0_.calling_code as calling_2_75_, syscountry0_.code as code3_75_, syscountry0_.en_name as en_name4_75_, syscountry0_.name as name5_75_, syscountry0_.pid as pid6_75_, syscountry0_.sort as sort7_75_, syscountry0_.valid_for_started as valid_fo8_75_ from sys_country syscountry0_ where syscountry0_.pid=? and syscountry0_.valid_for_started=? order by syscountry0_.en_name asc
  1449. 10:00:10.151 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1450. 10:00:10.151 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1451. 10:00:10.297 [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
  1452. 10:00:10.298 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1453. 10:00:10.299 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1454. 10:02:03.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1455. 10:02:23.117 [http-nio-8000-exec-10] 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=?
  1456. 10:02:23.117 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  1457. 10:02:23.118 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1458. 10:02:23.119 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1459. 10:02:23.225 [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
  1460. 10:02:23.227 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1461. 10:02:23.227 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1462. 10:02:23.436 [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
  1463. 10:02:23.439 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1464. 10:02:23.439 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1465. 10:03:46.892 [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 (? , ?)
  1466. 10:03:46.894 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1467. 10:03:46.894 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1468. 10:03:53.721 [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=? and (custombank0_.id in (?)) for update
  1469. 10:03:53.724 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1470. 10:03:53.724 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1207]
  1471. 10:03:53.727 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - delete from custom_bank where id=?
  1472. 10:03:53.727 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1207]
  1473. 10:03:53.810 [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=?
  1474. 10:03:53.812 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1475. 10:03:55.904 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1476. 10:03:55.905 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1477. 10:03:55.906 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1478. 10:03:55.907 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  1479. 10:05:48.248 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1480. 10:05:48.249 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UPLOAD_SIZE_MAX]
  1481. 10:05:48.249 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [UPLOAD_REGEX]
  1482. 10:05:52.629 [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=?
  1483. 10:05:52.633 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1484. 10:05:52.633 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1485. 10:05:52.633 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  1486. 10:05:52.643 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1487. 10:05:52.643 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1488. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 10:05:52 EET 2025]
  1489. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1490. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1491. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1492. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1493. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1494. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1495. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1496. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [天津西青支行]
  1497. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6217000066027307482]
  1498. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1499. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [/file/906/bank/bae5ffad90b84d77b96854ea171be0f9.jpg]
  1500. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国建设银行-CBC]
  1501. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [友亮 黄]
  1502. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [906]
  1503. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  1504. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  1505. 10:05:52.644 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1506. 10:05:52.735 [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=?
  1507. 10:05:52.737 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1508. 10:05:52.815 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customfile0_.id as id1_28_, customfile0_.add_ip as add_ip2_28_, customfile0_.add_time as add_time3_28_, customfile0_.add_user as add_user4_28_, customfile0_.modify_ip as modify_i5_28_, customfile0_.modify_time as modify_t6_28_, customfile0_.modify_user as modify_u7_28_, customfile0_.note as note8_28_, customfile0_.again_path as again_pa9_28_, customfile0_.custom_id as custom_10_28_, customfile0_.path as path11_28_, customfile0_.status as status12_28_, customfile0_.type as type13_28_ from custom_file customfile0_ where customfile0_.custom_id=? order by customfile0_.type asc
  1509. 10:05:52.816 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1510. 10:06:59.919 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1511. 10:06:59.921 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1512. 10:06:59.922 [http-nio-8000-exec-2] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1513. 10:06:59.922 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1514. 10:06:59.922 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1515. 10:07:03.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1516. 10:07:21.423 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accountapp0_.id) as col_0_0_ from account_apply accountapp0_ where accountapp0_.custom_id=? and accountapp0_.status=?
  1517. 10:07:21.424 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1518. 10:07:21.424 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1519. 10:07:21.430 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_currency accounttyp0_ where accounttyp0_.currency=? and accounttyp0_.type=?
  1520. 10:07:21.430 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [USD]
  1521. 10:07:21.430 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  1522. 10:07:21.431 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accounttyp0_.id) as col_0_0_ from account_type_leverage accounttyp0_ where accounttyp0_.leverage=? and accounttyp0_.type=?
  1523. 10:07:21.431 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [100]
  1524. 10:07:21.431 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [1]
  1525. 10:07:21.432 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1526. 10:07:21.434 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1527. 10:07:21.435 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - insert into account_apply (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, account_status, agent_id, c_id, com_point, comment, currency, custom_id, group_code, group_type, hide, investor_password, leverage, login, master_password, operation_type, platform, pos, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1528. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.4.193]
  1529. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 10:07:21 EET 2025]
  1530. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  1531. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1532. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1533. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1534. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1535. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1536. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1537. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1538. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1539. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [null]
  1540. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1541. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [BIGINT] - [500956]
  1542. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [FLOAT] - [20.0]
  1543. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1544. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  1545. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [906]
  1546. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [null]
  1547. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  1548. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [INTEGER] - [0]
  1549. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [fT07EH14]
  1550. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [INTEGER] - [100]
  1551. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [BIGINT] - [null]
  1552. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [HzhZym851023]
  1553. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [null]
  1554. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [MT4]
  1555. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [2]
  1556. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [ACCOUNT202511291007211884]
  1557. 10:07:21.436 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1558. 10:07:21.437 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1559. 10:07:21.438 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  1560. 10:07:21.439 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1561. 10:07:21.440 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  1562. 10:07:21.441 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1563. 10:07:21.442 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [APPLY_EMAIL_NOTICE]
  1564. 10:07:21.445 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"111.33.4.193","addTime":1764403641445,"addUser":906,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"ACCOUNT_CREATE_APPLY","imageFilesMap":null,"map":{"V_C_ID_V":"500956","V_LOGIN_TYPE_V":"经典账户","V_LEVERAGE_V":"100","V_DATE_TIME_V":"2025-11-29 10:07:21","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_NAME_V":"友亮 黄","V_CURRENCY_TYPE_V":"USD","V_APPLY_TIME_V":"2025-11-29 10:07:21"},"note":null,"sendDate":null,"subject":null,"templateName":"ACCOUNT_CREATE_APPLY_NOTICE_NAME","users":"mactor2020@126.com"}
  1565. 10:07:34.589 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1566. 10:07:34.591 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1567. 10:07:34.593 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1568. 10:07:34.594 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1569. 10:07:34.594 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1570. 10:08:01.510 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1571. 10:08:01.511 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1572. 10:08:01.513 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1573. 10:08:01.513 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1574. 10:08:01.513 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1575. 10:12:03.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1576. 10:17:03.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1577. 10:22:03.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1578. 10:27:03.081 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1579. 10:32:03.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1580. 10:37:03.084 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1581. 10:42:03.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1582. 10:47:03.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1583. 10:52:03.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1584. 10:57:03.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1585. 11:02:03.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1586. 11:07:03.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1587. 11:12:03.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1588. 11:17:03.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1589. 11:22:03.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1590. 11:27:03.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1591. 11:32:03.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1592. 11:37:03.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1593. 11:42:03.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1594. 11:47:03.105 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1595. 11:52:03.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1596. 11:57:03.108 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1597. 12:01:25.002 [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 ?
  1598. 12:01:25.005 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [fb627@163.com]
  1599. 12:01:25.005 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [5025ba1b06e9732a2a831373516263cf]
  1600. 12:01:25.028 [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 ?
  1601. 12:01:25.030 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1602. 12:01:25.034 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1603. 12:01:25.034 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.165.95.85]
  1604. 12:01:25.034 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 12:01:24 EET 2025]
  1605. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [884]
  1606. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1607. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1608. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1609. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1610. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1611. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [884]
  1612. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.165.95.85]
  1613. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 12:01:24 EET 2025]
  1614. 12:01:25.035 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [斌null冯]
  1615. 12:01:25.037 [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=?
  1616. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1617. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-04 03:41:47.0]
  1618. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [884]
  1619. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.165.95.85]
  1620. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 12:01:24 EET 2025]
  1621. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [884]
  1622. 12:01:25.037 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1623. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1624. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-04 03:47:24.0]
  1625. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1626. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1627. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [瑞光里2-3-604]
  1628. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20097]
  1629. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1630. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-04 03:46:13.0]
  1631. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1632. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-18 00:00:00.0]
  1633. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500933]
  1634. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1635. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1636. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
  1637. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1638. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1639. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1640. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1641. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [fb627@163.com]
  1642. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [斌]
  1643. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1644. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1645. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1646. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1647. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1648. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120105197907194218]
  1649. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1650. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1651. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.165.95.85]
  1652. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [冯]
  1653. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 12:01:24 EET 2025]
  1654. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1655. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Bin Feng]
  1656. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1657. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [5025ba1b06e9732a2a831373516263cf]
  1658. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13820220536]
  1659. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1660. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1661. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1662. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  1663. 12:01:25.038 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [884]
  1664. 12:01:38.220 [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 ?
  1665. 12:01:38.225 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [fb627@163.com]
  1666. 12:01:38.225 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [5025ba1b06e9732a2a831373516263cf]
  1667. 12:01:38.266 [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 ?
  1668. 12:01:38.269 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1669. 12:01:38.275 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1670. 12:01:38.275 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.165.95.85]
  1671. 12:01:38.275 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 12:01:38 EET 2025]
  1672. 12:01:38.275 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [884]
  1673. 12:01:38.275 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1674. 12:01:38.275 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1675. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1676. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1677. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1678. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [884]
  1679. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.165.95.85]
  1680. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 12:01:38 EET 2025]
  1681. 12:01:38.276 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [斌null冯]
  1682. 12:01:38.278 [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=?
  1683. 12:01:38.279 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  1684. 12:01:38.279 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-04 03:41:47.0]
  1685. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [884]
  1686. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.165.95.85]
  1687. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 12:01:38 EET 2025]
  1688. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [884]
  1689. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1690. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1691. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-04 03:47:24.0]
  1692. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1693. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1694. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [瑞光里2-3-604]
  1695. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20097]
  1696. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1697. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-04 03:46:13.0]
  1698. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1699. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1979-07-18 00:00:00.0]
  1700. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500933]
  1701. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1702. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1703. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [河东]
  1704. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1705. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1706. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1707. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1708. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [fb627@163.com]
  1709. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [斌]
  1710. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1711. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1712. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1713. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1714. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1715. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120105197907194218]
  1716. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1717. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1718. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.165.95.85]
  1719. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [冯]
  1720. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 12:01:38 EET 2025]
  1721. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1722. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Bin Feng]
  1723. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1724. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [5025ba1b06e9732a2a831373516263cf]
  1725. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13820220536]
  1726. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1727. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1728. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1729. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [null]
  1730. 12:01:38.280 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [884]
  1731. 12:02:03.109 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1732. 12:03:01.786 [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=?
  1733. 12:03:01.788 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1734. 12:03:01.788 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1735. 12:04:15.361 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
  1736. 12:04:15.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1737. 12:04:15.363 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1738. 12:07:03.111 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1739. 12:07:30.876 [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=?
  1740. 12:07:30.878 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1741. 12:07:30.878 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1742. 12:09:09.339 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
  1743. 12:09:09.341 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1744. 12:09:09.341 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1745. 12:09:49.989 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
  1746. 12:09:49.991 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1747. 12:09:49.991 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1748. 12:12:03.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1749. 12:13:06.792 [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=?
  1750. 12:13:06.794 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [884]
  1751. 12:13:06.794 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057396]
  1752. 12:17:03.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1753. 12:22:03.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1754. 12:27:03.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1755. 12:32:03.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1756. 12:37:03.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1757. 12:42:03.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1758. 12:47:03.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1759. 12:52:03.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1760. 12:57:03.127 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1761. 13:02:03.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1762. 13:07:03.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1763. 13:12:03.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1764. 13:17:03.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1765. 13:22:03.134 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1766. 13:27:03.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1767. 13:32:03.137 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1768. 13:37:03.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1769. 13:42:03.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1770. 13:47:03.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1771. 13:52:03.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1772. 13:57:03.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1773. 14:02:03.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1774. 14:07:03.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1775. 14:12:03.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1776. 14:17:03.150 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1777. 14:22:03.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1778. 14:27:03.153 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1779. 14:32:03.154 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1780. 14:37:03.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1781. 14:42:03.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1782. 14:47:03.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1783. 14:52:03.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1784. 14:57:03.162 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1785. 15:02:03.163 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1786. 15:07:03.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1787. 15:12:03.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1788. 15:17:03.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1789. 15:22:03.169 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1790. 15:27:03.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1791. 15:32:03.172 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1792. 15:37:03.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1793. 15:42:03.175 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1794. 15:47:03.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1795. 15:52:03.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1796. 15:57:03.179 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1797. 16:02:03.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1798. 16:07:03.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1799. 16:12:03.183 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1800. 16:13:36.180 [http-nio-8000-exec-7] ERROR java.lang.RuntimeException - 出错类:com.crm.custom.service.impl.SysCountryServiceImpluccess
  1801. ,出错方法getCodeByIpuccess
  1802. com.maxmind.geoip2.exception.AddressNotFoundException: The address 45.149.92.22 is not in the database.uccess,异常行号:93
  1803. 16:13:59.259 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  1804. 16:13:59.262 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [971335694@qq.com]
  1805. 16:13:59.262 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [601a3f6c032ebbd9a0d6bc5b652c0619]
  1806. 16:13:59.284 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
  1807. 16:13:59.286 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [889]
  1808. 16:13:59.290 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1809. 16:13:59.290 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [45.149.92.22]
  1810. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Sat Nov 29 16:13:59 EET 2025]
  1811. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [889]
  1812. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1813. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1814. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1815. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1816. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1817. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [889]
  1818. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [45.149.92.22]
  1819. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Sat Nov 29 16:13:59 EET 2025]
  1820. 16:13:59.291 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [德林null李]
  1821. 16:13:59.293 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - update custom_info set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address_line=?, agent_id=?, apply_real_status=?, apply_real_time=?, area_code=?, birth=?, c_id=?, check_email=?, check_phone=?, city=?, com_point=?, country=?, country_en_name=?, country_name=?, email=?, first_name=?, gender=?, head_picture=?, hide=?, ib_id=?, ib_invalid=?, identity=?, lang=?, last_address=?, last_ip=?, last_name=?, last_time=?, middle=?, name_en=?, nationality=?, password=?, phone=?, state=?, tax_number=?, valid=?, zip_code=? where id=?
  1822. 16:13:59.293 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [58.252.112.10]
  1823. 16:13:59.293 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2025-11-11 03:57:29.0]
  1824. 16:13:59.293 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [889]
  1825. 16:13:59.293 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [45.149.92.22]
  1826. 16:13:59.293 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Sat Nov 29 16:13:59 EET 2025]
  1827. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [889]
  1828. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1829. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1830. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2025-11-11 04:29:07.0]
  1831. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1832. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1833. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [广东省佛山市南海区九江镇万寿街永昌里36号]
  1834. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20141]
  1835. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1836. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2025-11-11 04:03:15.0]
  1837. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1838. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2003-05-10 00:00:00.0]
  1839. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500938]
  1840. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1841. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1842. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [佛山]
  1843. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1844. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1845. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1846. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1847. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [971335694@qq.com]
  1848. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [德林]
  1849. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1850. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1851. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1852. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1853. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1854. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [450881200305112313]
  1855. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1856. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1857. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [45.149.92.22]
  1858. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [李]
  1859. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Sat Nov 29 16:13:59 EET 2025]
  1860. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1861. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [DeLin Li]
  1862. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1863. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [601a3f6c032ebbd9a0d6bc5b652c0619]
  1864. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15919004606]
  1865. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [广东]
  1866. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1867. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1868. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [528203]
  1869. 16:13:59.294 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [889]
  1870. 16:14:14.732 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1871. 16:14:14.735 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1872. 16:14:14.738 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1873. 16:14:14.738 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1874. 16:14:14.738 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1875. 16:15:06.592 [http-nio-8000-exec-4] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1876. 16:15:06.595 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1877. 16:15:06.597 [http-nio-8000-exec-4] 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 (? , ?)
  1878. 16:15:06.598 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1879. 16:15:06.598 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1880. 16:15:18.518 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_30_, customgrou0_.add_ip as add_ip2_30_, customgrou0_.add_time as add_time3_30_, customgrou0_.add_user as add_user4_30_, customgrou0_.modify_ip as modify_i5_30_, customgrou0_.modify_time as modify_t6_30_, customgrou0_.modify_user as modify_u7_30_, customgrou0_.note as note8_30_, customgrou0_.code as code9_30_, customgrou0_.com_point as com_poi10_30_, customgrou0_.commission_valid as commiss11_30_, customgrou0_.currency as currenc12_30_, customgrou0_.group_type as group_t13_30_, customgrou0_.name as name14_30_, customgrou0_.platform as platfor15_30_, customgrou0_.pos as pos16_30_, customgrou0_.rebate_valid as rebate_17_30_, customgrou0_.type as type18_30_ from custom_group customgrou0_ where customgrou0_.type=?
  1881. 16:15:18.521 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1882. 16:15:18.523 [http-nio-8000-exec-9] DEBUG org.hibernate.SQL - select customgrou0_.id as id1_34_, customgrou0_.add_ip as add_ip2_34_, customgrou0_.add_time as add_time3_34_, customgrou0_.add_user as add_user4_34_, customgrou0_.modify_ip as modify_i5_34_, customgrou0_.modify_time as modify_t6_34_, customgrou0_.modify_user as modify_u7_34_, customgrou0_.note as note8_34_, customgrou0_.group_id as group_id9_34_, customgrou0_.leverage as leverag10_34_ from custom_group_leverage customgrou0_ where customgrou0_.group_id in (? , ?)
  1883. 16:15:18.524 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  1884. 16:15:18.524 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  1885. 16:17:03.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1886. 16:22:03.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1887. 16:27:03.188 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1888. 16:32:03.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1889. 16:37:03.191 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1890. 16:42:03.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1891. 16:47:03.194 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1892. 16:52:03.195 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1893. 16:57:03.197 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1894. 17:02:03.198 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1895. 17:07:03.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1896. 17:12:03.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1897. 17:17:03.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1898. 17:22:03.203 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1899. 17:27:03.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1900. 17:32:03.206 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1901. 17:37:03.208 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1902. 17:42:03.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1903. 17:47:03.211 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1904. 17:52:03.213 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1905. 17:57:03.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1906. 18:02:03.217 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1907. 18:07:03.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1908. 18:12:03.219 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1909. 18:17:03.221 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1910. 18:22:03.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1911. 18:27:03.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1912. 18:32:03.225 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1913. 18:37:03.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1914. 18:42:03.228 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1915. 18:47:03.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1916. 18:52:03.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1917. 18:57:03.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1918. 19:02:03.234 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1919. 19:07:03.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1920. 19:12:03.236 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1921. 19:17:03.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1922. 19:22:03.240 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1923. 19:27:03.242 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1924. 19:32:03.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1925. 19:37:03.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1926. 19:42:03.247 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1927. 19:47:03.249 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1928. 19:52:03.250 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1929. 19:57:03.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1930. 20:02:03.254 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1931. 20:07:03.255 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1932. 20:12:03.256 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1933. 20:17:03.258 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1934. 20:22:03.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1935. 20:27:03.261 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1936. 20:32:03.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1937. 20:37:03.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1938. 20:42:03.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1939. 20:47:03.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1940. 20:52:03.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1941. 20:57:03.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1942. 21:02:03.273 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1943. 21:07:03.275 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1944. 21:12:03.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1945. 21:17:03.277 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1946. 21:22:03.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1947. 21:27:03.281 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1948. 21:32:03.283 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1949. 21:37:03.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1950. 21:42:03.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1951. 21:47:03.287 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1952. 21:52:03.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1953. 21:57:03.290 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1954. 22:02:03.292 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1955. 22:07:03.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1956. 22:12:03.295 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1957. 22:17:03.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1958. 22:22:03.297 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1959. 22:27:03.299 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1960. 22:32:03.300 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1961. 22:37:03.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1962. 22:42:03.304 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1963. 22:47:03.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1964. 22:52:03.308 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1965. 22:57:03.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1966. 23:02:03.311 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1967. 23:07:03.313 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1968. 23:12:03.314 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1969. 23:17:03.316 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1970. 23:22:03.317 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1971. 23:27:03.319 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1972. 23:32:03.321 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1973. 23:37:03.322 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1974. 23:42:03.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1975. 23:47:03.326 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1976. 23:52:03.327 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1977. 23:57:03.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration