logback.2024-09-03.log 340 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. 00:04:21.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:09:21.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:14:21.714 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:19:21.715 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:24:21.717 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:29:21.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:34:21.719 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:39:21.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:44:21.722 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:49:21.723 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:54:21.725 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:59:21.727 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:04:21.728 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:09:21.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:14:21.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:19:21.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:24:21.735 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:29:21.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:34:21.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:39:21.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:44:21.742 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:49:21.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:54:21.746 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:59:21.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:04:21.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:09:21.749 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:14:21.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:19:21.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:24:21.754 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:29:21.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:34:21.757 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:39:21.759 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:44:21.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:49:21.762 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:54:21.764 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:59:21.765 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 03:04:21.767 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 03:09:21.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 03:14:21.770 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 03:19:21.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 03:24:21.773 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 03:29:21.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 03:34:08.291 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.email=? and custominfo0_.password=? limit ?
  44. 03:34:08.294 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1373795303@qq.com]
  45. 03:34:08.294 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d1cefcf6213e3e16d27d9dd9b7804ec0]
  46. 03:34:08.327 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - select customsurv0_.id as id1_43_, customsurv0_.add_ip as add_ip2_43_, customsurv0_.add_time as add_time3_43_, customsurv0_.add_user as add_user4_43_, customsurv0_.modify_ip as modify_i5_43_, customsurv0_.modify_time as modify_t6_43_, customsurv0_.modify_user as modify_u7_43_, customsurv0_.note as note8_43_, customsurv0_.custom_id as custom_i9_43_, customsurv0_.derivative_products as derivat10_43_, customsurv0_.employment_status as employm11_43_, customsurv0_.experience_qualification as experie12_43_, customsurv0_.experience_trading_derivative as experie13_43_, customsurv0_.experience_trading_forex as experie14_43_, customsurv0_.gross_annual_income as gross_a15_43_, customsurv0_.level as level16_43_, customsurv0_.occupation as occupat17_43_, customsurv0_.source_funding as source_18_43_, customsurv0_.total_new_worth as total_n19_43_, customsurv0_.trading_objectives as trading20_43_ from custom_survey customsurv0_ where customsurv0_.custom_id=? limit ?
  47. 03:34:08.328 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [466]
  48. 03:34:08.331 [http-nio-8000-exec-8] DEBUG org.hibernate.SQL - insert into custom_login_history (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, address, custom_id, login_ip, login_time, name) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  49. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.188.157]
  50. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 03:34:08 EEST 2024]
  51. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [466]
  52. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  53. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  54. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  55. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  56. 03:34:08.331 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  57. 03:34:08.332 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [466]
  58. 03:34:08.332 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [223.104.188.157]
  59. 03:34:08.332 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 03:34:08 EEST 2024]
  60. 03:34:08.332 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [诗梁null赵]
  61. 03:34:08.334 [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=?
  62. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.117.32]
  63. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-11-22 04:22:04.0]
  64. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [466]
  65. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [223.104.188.157]
  66. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 03:34:08 EEST 2024]
  67. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [466]
  68. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  69. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  70. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-11-22 04:34:44.0]
  71. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  72. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  73. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [滨湖镇田桥村306号@#山东省青岛市李沧区九水东路130号保利茉莉公馆10-1-1403]
  74. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  75. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  76. 03:34:08.334 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-11-22 04:31:36.0]
  77. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  78. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1992-02-14 00:00:00.0]
  79. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500496]
  80. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  81. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  82. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [枣庄]
  83. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  84. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  85. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  86. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  87. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1373795303@qq.com]
  88. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [诗梁]
  89. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  90. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  91. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  92. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  93. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  94. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370481199102153513]
  95. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  96. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  97. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [223.104.188.157]
  98. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [赵]
  99. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 03:34:08 EEST 2024]
  100. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  101. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ShiLiang Zhao]
  102. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  103. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [d1cefcf6213e3e16d27d9dd9b7804ec0]
  104. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18853253650]
  105. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  106. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  107. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  108. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [277500]
  109. 03:34:08.335 [http-nio-8000-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [466]
  110. 03:34:21.776 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  111. 03:39:21.778 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  112. 03:44:21.779 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  113. 03:49:21.781 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  114. 03:54:21.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  115. 03:59:21.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  116. 04:04:21.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  117. 04:09:21.785 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  118. 04:14:21.787 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  119. 04:19:21.788 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  120. 04:24:21.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  121. 04:29:21.791 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  122. 04:34:21.793 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  123. 04:39:21.794 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  124. 04:44:21.796 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  125. 04:49:21.797 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  126. 04:54:21.799 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  127. 04:59:21.800 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  128. 05:04:21.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  129. 05:09:21.804 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  130. 05:14:21.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  131. 05:19:21.807 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  132. 05:24:21.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  133. 05:29:21.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  134. 05:34:21.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  135. 05:39:21.813 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  136. 05:44:21.814 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  137. 05:49:21.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  138. 05:54:21.818 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  139. 05:59:21.819 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  140. 06:04:21.821 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  141. 06:09:21.822 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  142. 06:14:21.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  143. 06:19:21.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  144. 06:21:53.229 [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 ?
  145. 06:21:53.230 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1528151611@qq.com]
  146. 06:21:53.231 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [da552c903d870b1d9c2da71e0eb94683]
  147. 06:21:53.252 [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 ?
  148. 06:21:53.253 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [544]
  149. 06:21:53.257 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  150. 06:21:53.257 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.225.235.203]
  151. 06:21:53.257 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 06:21:53 EEST 2024]
  152. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [544]
  153. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  154. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  155. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  156. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  157. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  158. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [544]
  159. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [120.225.235.203]
  160. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 06:21:53 EEST 2024]
  161. 06:21:53.258 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [浩源null蓝]
  162. 06:21:53.260 [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=?
  163. 06:21:53.260 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.116.166]
  164. 06:21:53.260 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-17 10:34:48.0]
  165. 06:21:53.260 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [544]
  166. 06:21:53.260 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [120.225.235.203]
  167. 06:21:53.260 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 06:21:53 EEST 2024]
  168. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [544]
  169. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  170. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  171. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-05-17 13:41:19.0]
  172. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  173. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  174. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [山东省青岛市崂山区北宅街道书院村@#山东省青岛市崂山区北宅街道书院村]
  175. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  176. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  177. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-05-17 13:36:15.0]
  178. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  179. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1999-04-26 00:00:00.0]
  180. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500578]
  181. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  182. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  183. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  184. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  185. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  186. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  187. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  188. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1528151611@qq.com]
  189. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [浩源]
  190. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  191. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  192. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  193. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  194. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  195. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370212199904272019]
  196. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  197. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  198. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [120.225.235.203]
  199. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [蓝]
  200. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 06:21:53 EEST 2024]
  201. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  202. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [HaoYuan Lan]
  203. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  204. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [da552c903d870b1d9c2da71e0eb94683]
  205. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18522572038]
  206. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  207. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  208. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  209. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266104]
  210. 06:21:53.261 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [544]
  211. 06:22:34.998 [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=?
  212. 06:22:34.999 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [544]
  213. 06:22:34.999 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057053]
  214. 06:24:21.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  215. 06:29:21.827 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  216. 06:34:21.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  217. 06:39:21.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  218. 06:44:21.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  219. 06:49:21.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  220. 06:54:21.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  221. 06:59:21.835 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  222. 07:04:21.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  223. 07:09:21.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  224. 07:14:21.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  225. 07:19:21.842 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  226. 07:24:21.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  227. 07:29:21.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  228. 07:34:21.845 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  229. 07:39:21.847 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  230. 07:43:09.300 [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
  231. 07:43:09.301 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  232. 07:43:09.301 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  233. 07:43:09.408 [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
  234. 07:43:09.409 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  235. 07:43:09.409 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  236. 07:43:31.857 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  237. 07:43:31.857 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  238. 07:43:55.018 [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 ?
  239. 07:43:55.019 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  240. 07:43:55.019 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  241. 07:43:55.039 [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 ?
  242. 07:43:55.040 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  243. 07:43:55.043 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  244. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [49.140.189.116]
  245. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 07:43:55 EEST 2024]
  246. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  247. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  248. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  249. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  250. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  251. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  252. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [364]
  253. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [49.140.189.116]
  254. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 07:43:55 EEST 2024]
  255. 07:43:55.044 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纪平null张]
  256. 07:43:55.046 [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=?
  257. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.81.114.168]
  258. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-05 04:28:58.0]
  259. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  260. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [49.140.189.116]
  261. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 07:43:55 EEST 2024]
  262. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [364]
  263. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  264. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  265. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-05 04:36:55.0]
  266. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  267. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  268. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [单县黄岗镇]
  269. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  270. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  271. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-05 04:36:32.0]
  272. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  273. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-08-06 00:00:00.0]
  274. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500384]
  275. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  276. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  277. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [菏泽]
  278. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  279. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  280. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  281. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  282. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1932575019@qq.com]
  283. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纪平]
  284. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  285. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  286. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  287. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  288. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  289. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372925199508073378]
  290. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  291. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  292. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [49.140.189.116]
  293. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  294. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 07:43:55 EEST 2024]
  295. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  296. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JiPing Zhang]
  297. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  298. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  299. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17862825413]
  300. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  301. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  302. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  303. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [274300]
  304. 07:43:55.047 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [364]
  305. 07:44:21.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  306. 07:44:27.184 [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=?
  307. 07:44:27.185 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  308. 07:44:27.185 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057340]
  309. 07:44:47.127 [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=?
  310. 07:44:47.128 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  311. 07:44:47.128 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057340]
  312. 07:45:01.740 [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=?
  313. 07:45:01.742 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  314. 07:46:15.519 [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=?
  315. 07:46:15.520 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  316. 07:46:15.520 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057340]
  317. 07:49:21.850 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  318. 07:54:21.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  319. 07:59:21.853 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  320. 08:04:21.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  321. 08:09:21.855 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  322. 08:14:21.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  323. 08:17:47.117 [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 ?
  324. 08:17:47.120 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1455497465@qq.com]
  325. 08:17:47.120 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [9db3580a2b3f7e64cd4213a24abad39d]
  326. 08:17:47.156 [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 ?
  327. 08:17:47.158 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  328. 08:17:47.163 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  329. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.80.82.71]
  330. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 08:17:47 EEST 2024]
  331. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [600]
  332. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  333. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  334. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  335. 08:17:47.163 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  336. 08:17:47.164 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  337. 08:17:47.164 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [600]
  338. 08:17:47.164 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [42.80.82.71]
  339. 08:17:47.164 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 08:17:47 EEST 2024]
  340. 08:17:47.164 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [昊null刘]
  341. 08:17:47.166 [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=?
  342. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.7.17]
  343. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-07-25 09:54:11.0]
  344. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [600]
  345. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [42.80.82.71]
  346. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 08:17:47 EEST 2024]
  347. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [600]
  348. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  349. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  350. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-07-25 10:24:34.0]
  351. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  352. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  353. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [项城市光武办事处2号@#项城市光武办事处2号]
  354. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  355. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  356. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-07-25 09:58:20.0]
  357. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  358. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2000-10-11 00:00:00.0]
  359. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500635]
  360. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  361. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  362. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [周口]
  363. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  364. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  365. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  366. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  367. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1455497465@qq.com]
  368. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [昊]
  369. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  370. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  371. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  372. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  373. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  374. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [412702200010120555]
  375. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  376. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  377. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [42.80.82.71]
  378. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [刘]
  379. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 08:17:47 EEST 2024]
  380. 08:17:47.167 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  381. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Hao Liu]
  382. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  383. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [9db3580a2b3f7e64cd4213a24abad39d]
  384. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17634776774]
  385. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [河南]
  386. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  387. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  388. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [466000]
  389. 08:17:47.168 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [600]
  390. 08:19:21.858 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  391. 08:19:38.664 [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=?
  392. 08:19:38.665 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  393. 08:19:59.829 [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=?
  394. 08:19:59.830 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  395. 08:20:27.170 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  396. 08:20:27.171 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  397. 08:20:27.171 [http-nio-8000-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  398. 08:20:27.172 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URL_BANK_MOBILE_UPLOAD_CONFIG]
  399. 08:23:15.650 [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=? and custombank0_.default_bank=? and custombank0_.type=?
  400. 08:23:15.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  401. 08:23:15.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  402. 08:23:15.650 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  403. 08:23:15.658 [http-nio-8000-exec-1] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  404. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.80.82.71]
  405. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 08:23:15 EEST 2024]
  406. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [600]
  407. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  408. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  409. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  410. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  411. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  412. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  413. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [交通银行天津天津大学海河教育园校区支行]
  414. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6222621210021503469]
  415. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  416. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - []
  417. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国交通银行-CTB]
  418. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [昊 刘]
  419. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [600]
  420. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  421. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  422. 08:23:15.658 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  423. 08:23:15.857 [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=?
  424. 08:23:15.858 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  425. 08:23:52.560 [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=?
  426. 08:23:52.561 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [600]
  427. 08:23:52.561 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057305]
  428. 08:24:21.859 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  429. 08:27:51.054 [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 ?
  430. 08:27:51.056 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1373795303@qq.com]
  431. 08:27:51.056 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [d1cefcf6213e3e16d27d9dd9b7804ec0]
  432. 08:27:51.075 [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 ?
  433. 08:27:51.076 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [466]
  434. 08:27:51.080 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  435. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.7.98.90]
  436. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 08:27:51 EEST 2024]
  437. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [466]
  438. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  439. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  440. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  441. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  442. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  443. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [466]
  444. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [122.7.98.90]
  445. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 08:27:51 EEST 2024]
  446. 08:27:51.080 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [诗梁null赵]
  447. 08:27:51.082 [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=?
  448. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.117.32]
  449. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-11-22 04:22:04.0]
  450. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [466]
  451. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [122.7.98.90]
  452. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 08:27:51 EEST 2024]
  453. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [466]
  454. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  455. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  456. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-11-22 04:34:44.0]
  457. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  458. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  459. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [滨湖镇田桥村306号@#山东省青岛市李沧区九水东路130号保利茉莉公馆10-1-1403]
  460. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  461. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  462. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-11-22 04:31:36.0]
  463. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  464. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1992-02-14 00:00:00.0]
  465. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500496]
  466. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  467. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  468. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [枣庄]
  469. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  470. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  471. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  472. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  473. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1373795303@qq.com]
  474. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [诗梁]
  475. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  476. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  477. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  478. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  479. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  480. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [370481199102153513]
  481. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  482. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  483. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [122.7.98.90]
  484. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [赵]
  485. 08:27:51.083 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 08:27:51 EEST 2024]
  486. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  487. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [ShiLiang Zhao]
  488. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  489. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [d1cefcf6213e3e16d27d9dd9b7804ec0]
  490. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18853253650]
  491. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  492. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  493. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  494. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [277500]
  495. 08:27:51.084 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [466]
  496. 08:29:21.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  497. 08:34:21.862 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  498. 08:39:21.863 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  499. 08:44:21.864 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  500. 08:49:21.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  501. 08:54:21.867 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  502. 08:59:21.868 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  503. 09:04:21.870 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  504. 09:09:21.872 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  505. 09:14:21.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  506. 09:19:21.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  507. 09:24:21.876 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  508. 09:29:21.877 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  509. 09:34:21.879 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  510. 09:39:21.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  511. 09:44:21.883 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  512. 09:49:21.885 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  513. 09:54:21.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  514. 09:59:21.888 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  515. 10:04:21.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  516. 10:09:21.891 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  517. 10:14:21.893 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  518. 10:19:21.894 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  519. 10:24:21.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  520. 10:29:21.898 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  521. 10:34:21.900 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  522. 10:39:21.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  523. 10:44:21.903 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  524. 10:49:21.904 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  525. 10:54:21.905 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  526. 10:59:21.906 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  527. 11:04:21.907 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  528. 11:09:21.909 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  529. 11:14:21.910 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  530. 11:19:21.911 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  531. 11:24:21.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  532. 11:29:21.914 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  533. 11:34:21.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  534. 11:39:21.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  535. 11:44:21.919 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  536. 11:49:21.919 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  537. 11:54:21.921 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  538. 11:59:21.923 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  539. 12:04:21.924 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  540. 12:09:21.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  541. 12:14:21.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  542. 12:19:21.928 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  543. 12:24:21.929 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  544. 12:29:21.930 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  545. 12:34:01.208 [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 ?
  546. 12:34:01.211 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [tomatosc1220@163.com]
  547. 12:34:01.211 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  548. 12:34:01.244 [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 ?
  549. 12:34:01.245 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [305]
  550. 12:34:01.249 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  551. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.131.230.158]
  552. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 12:34:01 EEST 2024]
  553. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [305]
  554. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  555. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  556. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  557. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  558. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  559. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [305]
  560. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [117.131.230.158]
  561. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 12:34:01 EEST 2024]
  562. 12:34:01.249 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [冬null石]
  563. 12:34:01.252 [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=?
  564. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.25.82.211]
  565. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-05-23 05:31:23.0]
  566. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [305]
  567. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [117.131.230.158]
  568. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 12:34:01 EEST 2024]
  569. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [305]
  570. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  571. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  572. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-05-23 05:50:08.0]
  573. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  574. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  575. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [东丽区东丽湖大道很大翡翠华庭]
  576. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  577. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  578. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-05-23 05:36:18.0]
  579. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  580. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1984-09-12 00:00:00.0]
  581. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500320]
  582. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  583. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  584. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [东丽]
  585. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  586. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  587. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  588. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  589. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [tomatosc1220@163.com]
  590. 12:34:01.252 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [冬]
  591. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  592. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  593. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  594. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  595. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  596. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [429006198409133951]
  597. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  598. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  599. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [117.131.230.158]
  600. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [石]
  601. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 12:34:01 EEST 2024]
  602. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  603. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Dong Shi]
  604. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  605. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c84ccc06543d44d7844e1bf160e322b2]
  606. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18910708585]
  607. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  608. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  609. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  610. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300000]
  611. 12:34:01.253 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [305]
  612. 12:34:21.932 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  613. 12:39:21.934 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  614. 12:44:21.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  615. 12:49:21.936 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  616. 12:54:21.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  617. 12:59:21.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  618. 13:04:21.940 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  619. 13:09:21.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  620. 13:14:21.943 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  621. 13:19:21.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  622. 13:24:21.946 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  623. 13:29:21.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  624. 13:34:21.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  625. 13:39:21.951 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  626. 13:44:21.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  627. 13:49:21.954 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  628. 13:51:52.185 [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 is not null) and custominfo0_.email=? limit ?
  629. 13:51:52.193 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [Haochengwork2018@163.com]
  630. 13:51:52.198 [http-nio-8000-exec-9] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"120.225.254.177","addTime":1725360712185,"addUser":566,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FORGET_PASSWORD","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-09-03 14:21:52","V_NAME_V":"丞 郝","V_TOKEN_V":"kOO/1uPcaaJtGpznUTbMHKzzb0XPrfzxeyknBB0NpSSIy5L3hk7ukB3YLpCqHf2jWwf5mwwQPg2lC2TWCxdm3dCOYgsjSrIGUcL2Ixieo6I=","V_DATE_TIME_V":"2024-09-03 13:51:52"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_UPDATE_PASSWORD_SEND_CN","users":"Haochengwork2018@163.com"}
  631. 13:53:45.490 [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 ?
  632. 13:53:45.491 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [haochengwork2018@163.com]
  633. 13:53:45.492 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [1a2fff8f67d6915d5f4046bea59b8ffb]
  634. 13:53:45.514 [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 ?
  635. 13:53:45.515 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [566]
  636. 13:53:45.519 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  637. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.225.254.177]
  638. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 13:53:45 EEST 2024]
  639. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [566]
  640. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  641. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  642. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  643. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  644. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  645. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [566]
  646. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [120.225.254.177]
  647. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 13:53:45 EEST 2024]
  648. 13:53:45.520 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [丞null郝]
  649. 13:53:45.522 [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=?
  650. 13:53:45.522 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.9.40.216]
  651. 13:53:45.522 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-06-11 05:22:50.0]
  652. 13:53:45.522 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [566]
  653. 13:53:45.522 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [120.225.254.177]
  654. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 13:53:45 EEST 2024]
  655. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [566]
  656. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  657. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  658. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-06-11 05:46:45.0]
  659. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  660. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  661. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [青岛市李沧区时代城翡翠赏46号楼@#烟台市海阳市东哲阳安置楼四号]
  662. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20136]
  663. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  664. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-06-11 05:45:28.0]
  665. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  666. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1999-11-26 00:00:00.0]
  667. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500600]
  668. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  669. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  670. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [青岛]
  671. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  672. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  673. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  674. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  675. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [haochengwork2018@163.com]
  676. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [丞]
  677. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  678. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  679. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  680. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  681. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  682. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371481199911277218]
  683. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  684. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  685. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [120.225.254.177]
  686. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [郝]
  687. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 13:53:45 EEST 2024]
  688. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  689. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [Sheng Hao]
  690. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  691. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [1a2fff8f67d6915d5f4046bea59b8ffb]
  692. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18563936903]
  693. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  694. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  695. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  696. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [266041]
  697. 13:53:45.523 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [566]
  698. 13:53:53.854 [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=?
  699. 13:53:53.855 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  700. 13:53:53.857 [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 (? , ? , ?)
  701. 13:53:53.857 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  702. 13:53:53.857 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  703. 13:53:53.857 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  704. 13:54:21.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  705. 13:59:21.957 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  706. 14:04:21.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  707. 14:09:21.960 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  708. 14:14:21.961 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  709. 14:19:21.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  710. 14:24:21.964 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  711. 14:29:21.966 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  712. 14:32:40.817 [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 ?
  713. 14:32:40.819 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15522303831@163.com]
  714. 14:32:40.819 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [a1f6cea9a10a37fd7057fc7faa5f805f]
  715. 14:32:40.840 [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 ?
  716. 14:32:40.841 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  717. 14:32:40.845 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  718. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.235.84]
  719. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:32:40 EEST 2024]
  720. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [254]
  721. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  722. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  723. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  724. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  725. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  726. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [254]
  727. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [221.197.235.84]
  728. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:32:40 EEST 2024]
  729. 14:32:40.845 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [皓翔null杨]
  730. 14:32:40.847 [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=?
  731. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.12.113.32]
  732. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-03-24 04:58:37.0]
  733. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [254]
  734. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [221.197.235.84]
  735. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:32:40 EEST 2024]
  736. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [254]
  737. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  738. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  739. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-03-24 05:07:47.0]
  740. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  741. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  742. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赏园里4号楼3门301]
  743. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  744. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  745. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-03-24 05:04:42.0]
  746. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  747. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-08-03 00:00:00.0]
  748. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500264]
  749. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  750. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  751. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [南开]
  752. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  753. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  754. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  755. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  756. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [15522303831@163.com]
  757. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [皓翔]
  758. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  759. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  760. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  761. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  762. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  763. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120103200108042113]
  764. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  765. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  766. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [221.197.235.84]
  767. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [杨]
  768. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:32:40 EEST 2024]
  769. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  770. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [HaoXiang Yang]
  771. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  772. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [a1f6cea9a10a37fd7057fc7faa5f805f]
  773. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15522303831]
  774. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  775. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  776. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  777. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300074]
  778. 14:32:40.848 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [254]
  779. 14:33:00.605 [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=?
  780. 14:33:00.606 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  781. 14:33:00.607 [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 (? , ? , ?)
  782. 14:33:00.608 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1]
  783. 14:33:00.608 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [2]
  784. 14:33:00.608 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [3]
  785. 14:33:16.946 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  786. 14:33:16.947 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  787. 14:33:16.947 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  788. 14:33:16.948 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select count(accountlev0_.id) as col_0_0_ from account_leverage_change accountlev0_ where accountlev0_.login=? and accountlev0_.status=?
  789. 14:33:16.948 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [9057445]
  790. 14:33:16.948 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  791. 14:33:16.948 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - insert into account_leverage_change (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, c_id, custom_id, leverage_status, login, new_leverage, old_leverage, operation_type, platform, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  792. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.235.84]
  793. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:33:16 EEST 2024]
  794. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [254]
  795. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  796. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  797. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  798. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  799. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  800. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  801. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  802. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  803. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [500264]
  804. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [254]
  805. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  806. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [9057445]
  807. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [INTEGER] - [100]
  808. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [100]
  809. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [null]
  810. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [MT4]
  811. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [LEVERAGE202409031433165524]
  812. 14:33:16.949 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [BIGINT] - [1]
  813. 14:33:16.950 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  814. 14:33:16.952 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  815. 14:33:16.953 [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=?
  816. 14:33:16.954 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [LEVERAGE_EMAIL_NOTICE]
  817. 14:33:16.956 [http-nio-8000-exec-6] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"221.197.235.84","addTime":1725363196956,"addUser":254,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"CUSTOM_APPLY_LEVERAGE","imageFilesMap":null,"map":{"V_C_ID_V":"500264","V_LEVERAGE_V":"100","V_SERIAL_V":"LEVERAGE202409031433165524","V_LEVERAGE_OLD_V":"100","V_LOGIN_V":"9057445","V_DATE_TIME_V":"2024-09-03 14:33:16","V_PLATFORM_V":"MT4","V_NAME_V":"皓翔 杨","V_EMAIL_V":"15522303831@163.com","V_APPLY_TIME_V":"2024-09-03 14:33:16"},"note":null,"sendDate":null,"subject":null,"templateName":"APPLY_LEVERAGE_NOTICE_NAME","users":"mic_partnership@126.com"}
  818. 14:33:32.568 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  819. 14:33:32.570 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  820. 14:33:32.570 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  821. 14:33:32.572 [http-nio-8000-exec-10] DEBUG org.hibernate.SQL - select count(accountdea0_.id) as col_0_0_ from account_deal_password_reset accountdea0_ where accountdea0_.custom_id=? and accountdea0_.login=? and accountdea0_.status=?
  822. 14:33:32.572 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  823. 14:33:32.572 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  824. 14:33:32.572 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  825. 14:33:32.573 [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 ?
  826. 14:33:32.576 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  827. 14:33:32.579 [http-nio-8000-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":null,"addTime":null,"addUser":254,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"DEAL_RESET_PASSWORD_SEND_URL","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-09-03 15:03:32","V_NAME_V":"皓翔 杨","V_TOKEN_V":"9Ge7Fi6yK1mUYynSaDpsrVEl3F+IhK0Hsq406eFKHVVHkY48ZkVJNwefPuwE3IakLvYRpsnaY2tlJQwO4dfJ4A==","V_LOGIN_V":"9057445","V_DATE_TIME_V":"2024-09-03 14:33:32"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_APPLY_DEAL_RESET_PASSWORD_SEND_CN","users":"15522303831@163.com"}
  828. 14:34:13.281 [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=? limit ?
  829. 14:34:13.283 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  830. 14:34:13.283 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  831. 14:34:13.285 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - select count(accountdea0_.id) as col_0_0_ from account_deal_password_reset accountdea0_ where accountdea0_.custom_id=? and accountdea0_.login=? and accountdea0_.status=?
  832. 14:34:13.285 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  833. 14:34:13.285 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  834. 14:34:13.285 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  835. 14:34:13.286 [http-nio-8000-exec-5] DEBUG org.hibernate.SQL - insert into account_deal_password_reset (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, c_id, custom_id, deal_reset_status, login, new_password, operation_type, platform, serial, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  836. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.235.84]
  837. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:34:13 EEST 2024]
  838. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  839. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  840. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  841. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  842. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  843. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  844. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  845. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  846. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  847. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [BIGINT] - [500264]
  848. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [254]
  849. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [null]
  850. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [BIGINT] - [9057445]
  851. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [Dabao2001]
  852. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [null]
  853. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [MT4]
  854. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [INVESTOR202409031434134677]
  855. 14:34:13.287 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1]
  856. 14:34:21.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  857. 14:37:08.857 [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
  858. 14:37:08.857 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  859. 14:37:08.857 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  860. 14:37:08.919 [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
  861. 14:37:08.919 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  862. 14:37:08.919 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  863. 14:38:20.798 [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 ?
  864. 14:38:20.801 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  865. 14:38:20.801 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  866. 14:38:20.833 [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 ?
  867. 14:38:20.834 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  868. 14:38:20.837 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  869. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [49.140.189.88]
  870. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:38:20 EEST 2024]
  871. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  872. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  873. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  874. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  875. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  876. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  877. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [364]
  878. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [49.140.189.88]
  879. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:38:20 EEST 2024]
  880. 14:38:20.837 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纪平null张]
  881. 14:38:20.839 [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=?
  882. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.81.114.168]
  883. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-05 04:28:58.0]
  884. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  885. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [49.140.189.88]
  886. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:38:20 EEST 2024]
  887. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [364]
  888. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  889. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  890. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-05 04:36:55.0]
  891. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  892. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  893. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [单县黄岗镇]
  894. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  895. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  896. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-05 04:36:32.0]
  897. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  898. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-08-06 00:00:00.0]
  899. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500384]
  900. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  901. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  902. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [菏泽]
  903. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  904. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  905. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  906. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  907. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1932575019@qq.com]
  908. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纪平]
  909. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  910. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  911. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  912. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  913. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  914. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372925199508073378]
  915. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  916. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  917. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [49.140.189.88]
  918. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  919. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:38:20 EEST 2024]
  920. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  921. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JiPing Zhang]
  922. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  923. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  924. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17862825413]
  925. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  926. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  927. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  928. 14:38:20.840 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [274300]
  929. 14:38:20.841 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [364]
  930. 14:39:03.575 [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=?
  931. 14:39:03.576 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  932. 14:39:03.576 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057340]
  933. 14:39:21.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  934. 14:44:21.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  935. 14:49:21.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  936. 14:54:21.973 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  937. 14:58:20.262 [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 ?
  938. 14:58:20.265 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  939. 14:58:20.265 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  940. 14:58:20.295 [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 ?
  941. 14:58:20.296 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  942. 14:58:20.301 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  943. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.108.126]
  944. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:58:20 EEST 2024]
  945. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  946. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  947. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  948. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  949. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  950. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  951. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [510]
  952. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.144.108.126]
  953. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:58:20 EEST 2024]
  954. 14:58:20.301 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [茂竹null王]
  955. 14:58:20.303 [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=?
  956. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.232]
  957. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-18 03:07:57.0]
  958. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  959. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.144.108.126]
  960. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:58:20 EEST 2024]
  961. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [510]
  962. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  963. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  964. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-18 03:43:09.0]
  965. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  966. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  967. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [岚山区安东卫街道@#岚山区安东卫街道]
  968. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  969. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  970. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-18 03:33:58.0]
  971. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  972. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2002-11-05 00:00:00.0]
  973. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500541]
  974. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  975. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  976. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [日照]
  977. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  978. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  979. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  980. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  981. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [575288066@qq.com]
  982. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [茂竹]
  983. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  984. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  985. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  986. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  987. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  988. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371102200211063511]
  989. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  990. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  991. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.144.108.126]
  992. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  993. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:58:20 EEST 2024]
  994. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  995. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MaoZhu Wang]
  996. 14:58:20.304 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  997. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  998. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [16226518898]
  999. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1000. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1001. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1002. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [276800]
  1003. 14:58:20.305 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [510]
  1004. 14:58:32.144 [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 ?
  1005. 14:58:32.145 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1006. 14:58:32.145 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1007. 14:58:32.168 [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 ?
  1008. 14:58:32.169 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  1009. 14:58:32.173 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1010. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.108.126]
  1011. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:58:32 EEST 2024]
  1012. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1013. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1014. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1015. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1016. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1017. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1018. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [510]
  1019. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.144.108.126]
  1020. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:58:32 EEST 2024]
  1021. 14:58:32.173 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [茂竹null王]
  1022. 14:58:32.175 [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=?
  1023. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.232]
  1024. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-18 03:07:57.0]
  1025. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1026. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.144.108.126]
  1027. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:58:32 EEST 2024]
  1028. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [510]
  1029. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1030. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1031. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-18 03:43:09.0]
  1032. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1033. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1034. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [岚山区安东卫街道@#岚山区安东卫街道]
  1035. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  1036. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1037. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-18 03:33:58.0]
  1038. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1039. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2002-11-05 00:00:00.0]
  1040. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500541]
  1041. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1042. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1043. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [日照]
  1044. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1045. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1046. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1047. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1048. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [575288066@qq.com]
  1049. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [茂竹]
  1050. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1051. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1052. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1053. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1054. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1055. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371102200211063511]
  1056. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1057. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1058. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.144.108.126]
  1059. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1060. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:58:32 EEST 2024]
  1061. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1062. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MaoZhu Wang]
  1063. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1064. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1065. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [16226518898]
  1066. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1067. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1068. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1069. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [276800]
  1070. 14:58:32.176 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [510]
  1071. 14:58:38.735 [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 ?
  1072. 14:58:38.736 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1073. 14:58:38.736 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1074. 14:58:38.756 [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 ?
  1075. 14:58:38.757 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  1076. 14:58:38.761 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1077. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.108.126]
  1078. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:58:38 EEST 2024]
  1079. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1080. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1081. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1082. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1083. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1084. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1085. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [510]
  1086. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.144.108.126]
  1087. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:58:38 EEST 2024]
  1088. 14:58:38.761 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [茂竹null王]
  1089. 14:58:38.763 [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=?
  1090. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.232]
  1091. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-18 03:07:57.0]
  1092. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1093. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.144.108.126]
  1094. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:58:38 EEST 2024]
  1095. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [510]
  1096. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1097. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1098. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-18 03:43:09.0]
  1099. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1100. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1101. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [岚山区安东卫街道@#岚山区安东卫街道]
  1102. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  1103. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1104. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-18 03:33:58.0]
  1105. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1106. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2002-11-05 00:00:00.0]
  1107. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500541]
  1108. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1109. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1110. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [日照]
  1111. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1112. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1113. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1114. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1115. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [575288066@qq.com]
  1116. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [茂竹]
  1117. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1118. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1119. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1120. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1121. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1122. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371102200211063511]
  1123. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1124. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1125. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.144.108.126]
  1126. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1127. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:58:38 EEST 2024]
  1128. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1129. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MaoZhu Wang]
  1130. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1131. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1132. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [16226518898]
  1133. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1134. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1135. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1136. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [276800]
  1137. 14:58:38.764 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [510]
  1138. 14:59:15.152 [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 ?
  1139. 14:59:15.155 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1140. 14:59:15.155 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1141. 14:59:15.175 [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 ?
  1142. 14:59:15.176 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  1143. 14:59:15.179 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1144. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.108.126]
  1145. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:59:15 EEST 2024]
  1146. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1147. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1148. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1149. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1150. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1151. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1152. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [510]
  1153. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.144.108.126]
  1154. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:59:15 EEST 2024]
  1155. 14:59:15.180 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [茂竹null王]
  1156. 14:59:15.182 [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=?
  1157. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.232]
  1158. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-18 03:07:57.0]
  1159. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1160. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.144.108.126]
  1161. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:59:15 EEST 2024]
  1162. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [510]
  1163. 14:59:15.182 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1164. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1165. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-18 03:43:09.0]
  1166. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1167. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1168. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [岚山区安东卫街道@#岚山区安东卫街道]
  1169. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  1170. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1171. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-18 03:33:58.0]
  1172. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1173. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2002-11-05 00:00:00.0]
  1174. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500541]
  1175. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1176. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1177. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [日照]
  1178. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1179. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1180. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1181. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1182. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [575288066@qq.com]
  1183. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [茂竹]
  1184. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1185. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1186. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1187. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1188. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1189. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371102200211063511]
  1190. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1191. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1192. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.144.108.126]
  1193. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1194. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:59:15 EEST 2024]
  1195. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1196. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MaoZhu Wang]
  1197. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1198. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1199. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [16226518898]
  1200. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1201. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1202. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1203. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [276800]
  1204. 14:59:15.183 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [510]
  1205. 14:59:21.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1206. 14:59:29.101 [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 ?
  1207. 14:59:29.104 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [575288066@qq.com]
  1208. 14:59:29.104 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1209. 14:59:29.123 [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 ?
  1210. 14:59:29.124 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  1211. 14:59:29.128 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1212. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.108.126]
  1213. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 14:59:29 EEST 2024]
  1214. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1215. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1216. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1217. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1218. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1219. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1220. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [510]
  1221. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [39.144.108.126]
  1222. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 14:59:29 EEST 2024]
  1223. 14:59:29.128 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [茂竹null王]
  1224. 14:59:29.130 [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=?
  1225. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.92.232]
  1226. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-03-18 03:07:57.0]
  1227. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [510]
  1228. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [39.144.108.126]
  1229. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 14:59:29 EEST 2024]
  1230. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [510]
  1231. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1232. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1233. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-03-18 03:43:09.0]
  1234. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1235. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1236. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [岚山区安东卫街道@#岚山区安东卫街道]
  1237. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  1238. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1239. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-03-18 03:33:58.0]
  1240. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1241. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2002-11-05 00:00:00.0]
  1242. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500541]
  1243. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1244. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1245. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [日照]
  1246. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1247. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1248. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1249. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1250. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [575288066@qq.com]
  1251. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [茂竹]
  1252. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1253. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1254. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1255. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1256. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1257. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [371102200211063511]
  1258. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1259. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1260. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [39.144.108.126]
  1261. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [王]
  1262. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 14:59:29 EEST 2024]
  1263. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1264. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [MaoZhu Wang]
  1265. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1266. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [b4f7e4223935d677323765727da74bab]
  1267. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [16226518898]
  1268. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1269. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1270. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1271. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [276800]
  1272. 14:59:29.131 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [510]
  1273. 14:59:47.385 [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=?
  1274. 14:59:47.386 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [510]
  1275. 14:59:47.386 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057440]
  1276. 14:59:49.181 [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
  1277. 14:59:49.182 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1278. 14:59:49.182 [http-nio-8000-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1279. 15:00:30.432 [http-nio-8000-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as col_0_0_ from custom_info custominfo0_ where custominfo0_.email=? limit ?
  1280. 15:00:30.432 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  1281. 15:03:38.688 [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 ?
  1282. 15:03:38.690 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  1283. 15:03:38.690 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  1284. 15:03:38.709 [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 ?
  1285. 15:03:38.710 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  1286. 15:03:38.714 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1287. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.224.157.214]
  1288. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 15:03:38 EEST 2024]
  1289. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  1290. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1291. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1292. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1293. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1294. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1295. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [364]
  1296. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [112.224.157.214]
  1297. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 15:03:38 EEST 2024]
  1298. 15:03:38.714 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纪平null张]
  1299. 15:03:38.717 [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=?
  1300. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.81.114.168]
  1301. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-05 04:28:58.0]
  1302. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  1303. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [112.224.157.214]
  1304. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 15:03:38 EEST 2024]
  1305. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [364]
  1306. 15:03:38.717 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1307. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1308. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-05 04:36:55.0]
  1309. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1310. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1311. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [单县黄岗镇]
  1312. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1313. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1314. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-05 04:36:32.0]
  1315. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1316. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-08-06 00:00:00.0]
  1317. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500384]
  1318. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1319. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1320. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [菏泽]
  1321. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1322. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1323. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1324. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1325. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1932575019@qq.com]
  1326. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纪平]
  1327. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1328. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1329. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1330. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1331. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1332. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372925199508073378]
  1333. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1334. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1335. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [112.224.157.214]
  1336. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  1337. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 15:03:38 EEST 2024]
  1338. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1339. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JiPing Zhang]
  1340. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1341. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  1342. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17862825413]
  1343. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1344. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1345. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1346. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [274300]
  1347. 15:03:38.718 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [364]
  1348. 15:04:21.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1349. 15:08:08.821 [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 ?
  1350. 15:08:08.824 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1932575019@qq.com]
  1351. 15:08:08.824 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  1352. 15:08:08.859 [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 ?
  1353. 15:08:08.860 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  1354. 15:08:08.862 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1355. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [49.140.191.75]
  1356. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 15:08:08 EEST 2024]
  1357. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  1358. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1359. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1360. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1361. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1362. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1363. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [364]
  1364. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [49.140.191.75]
  1365. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 15:08:08 EEST 2024]
  1366. 15:08:08.863 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纪平null张]
  1367. 15:08:08.865 [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=?
  1368. 15:08:08.865 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.81.114.168]
  1369. 15:08:08.865 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-05 04:28:58.0]
  1370. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [364]
  1371. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [49.140.191.75]
  1372. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 15:08:08 EEST 2024]
  1373. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [364]
  1374. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1375. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1376. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-05 04:36:55.0]
  1377. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1378. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1379. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [单县黄岗镇]
  1380. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1381. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1382. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-05 04:36:32.0]
  1383. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1384. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1995-08-06 00:00:00.0]
  1385. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500384]
  1386. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1387. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1388. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [菏泽]
  1389. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1390. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1391. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1392. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1393. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1932575019@qq.com]
  1394. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纪平]
  1395. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1396. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1397. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1398. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1399. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1400. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [372925199508073378]
  1401. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1402. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1403. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [49.140.191.75]
  1404. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [张]
  1405. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 15:08:08 EEST 2024]
  1406. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1407. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [JiPing Zhang]
  1408. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1409. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [de57f3908ea864a785f59eac50fb9753]
  1410. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [17862825413]
  1411. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [山东]
  1412. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1413. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1414. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [274300]
  1415. 15:08:08.866 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [364]
  1416. 15:08:31.395 [http-nio-8000-exec-6] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=?
  1417. 15:08:31.396 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [364]
  1418. 15:08:31.397 [http-nio-8000-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057340]
  1419. 15:09:21.977 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1420. 15:14:21.978 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1421. 15:18:58.165 [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
  1422. 15:18:58.165 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1423. 15:18:58.165 [http-nio-8000-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1424. 15:18:58.194 [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
  1425. 15:18:58.195 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1426. 15:18:58.195 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1427. 15:19:14.130 [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 is not null) and custominfo0_.email=? limit ?
  1428. 15:19:14.131 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1483717776@qq.com]
  1429. 15:19:14.136 [http-nio-8000-exec-3] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"124.129.165.246","addTime":1725365954130,"addUser":222,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FORGET_PASSWORD","imageFilesMap":null,"map":{"V_EXPIRE_TIME_V":"2024-09-03 15:49:14","V_NAME_V":"晨阳 王","V_TOKEN_V":"RM4TY7EMV2VS+2DuTgpaY/pWLKmvMQ9OwsojzSzEIzVk/Az3IFas6UvPrR7mmhIy7Qcu+EX3UhAL4se+hLnoLw==","V_DATE_TIME_V":"2024-09-03 15:19:14"},"note":null,"sendDate":null,"subject":null,"templateName":"CUSTOM_UPDATE_PASSWORD_SEND_CN","users":"1483717776@qq.com"}
  1430. 15:19:20.481 [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
  1431. 15:19:20.482 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1432. 15:19:20.482 [http-nio-8000-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1433. 15:19:21.980 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1434. 15:24:21.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1435. 15:29:21.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1436. 15:34:21.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1437. 15:39:21.985 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1438. 15:44:21.986 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1439. 15:49:21.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1440. 15:54:21.990 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1441. 15:59:21.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1442. 16:04:21.993 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1443. 16:09:21.994 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1444. 16:14:21.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1445. 16:19:21.997 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1446. 16:24:21.998 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1447. 16:29:22.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1448. 16:34:22.001 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1449. 16:39:22.002 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1450. 16:44:22.004 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1451. 16:49:22.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1452. 16:54:22.007 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1453. 16:59:22.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1454. 17:04:22.010 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1455. 17:09:22.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1456. 17:14:22.013 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1457. 17:17:47.411 [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 ?
  1458. 17:17:47.412 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [372927847@qq.com]
  1459. 17:17:47.412 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [23d98ba3bf48c09648b78d296eb5eb2a]
  1460. 17:17:47.434 [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 ?
  1461. 17:17:47.435 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [369]
  1462. 17:17:47.439 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1463. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.27.159.121]
  1464. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 17:17:47 EEST 2024]
  1465. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [369]
  1466. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1467. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1468. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1469. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1470. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1471. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [369]
  1472. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [60.27.159.121]
  1473. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 17:17:47 EEST 2024]
  1474. 17:17:47.439 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纬东null梁]
  1475. 17:17:47.442 [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=?
  1476. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.25.85.214]
  1477. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-14 04:36:23.0]
  1478. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [369]
  1479. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [60.27.159.121]
  1480. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 17:17:47 EEST 2024]
  1481. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [369]
  1482. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1483. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1484. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-14 04:48:52.0]
  1485. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1486. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1487. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [城固县董家营镇黄家港]
  1488. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1489. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1490. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-14 04:44:45.0]
  1491. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1492. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1985-09-12 00:00:00.0]
  1493. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500389]
  1494. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1495. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1496. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [汉中]
  1497. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1498. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1499. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1500. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1501. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [372927847@qq.com]
  1502. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纬东]
  1503. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1504. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1505. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1506. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1507. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1508. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [61232219850913341X]
  1509. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1510. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1511. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [60.27.159.121]
  1512. 17:17:47.442 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [梁]
  1513. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 17:17:47 EEST 2024]
  1514. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1515. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [WeiDong Liang]
  1516. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1517. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [23d98ba3bf48c09648b78d296eb5eb2a]
  1518. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18622556941]
  1519. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [陕西]
  1520. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1521. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1522. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [723200]
  1523. 17:17:47.443 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [369]
  1524. 17:18:08.194 [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=?
  1525. 17:18:08.195 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [369]
  1526. 17:18:08.195 [http-nio-8000-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057022]
  1527. 17:19:22.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1528. 17:20:08.514 [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 ?
  1529. 17:20:08.517 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [372927847@qq.com]
  1530. 17:20:08.517 [http-nio-8000-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [6c4fe4a0628736ef9d4b027881984e24]
  1531. 17:20:16.858 [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 ?
  1532. 17:20:16.859 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [372927847@qq.com]
  1533. 17:20:16.859 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [23d98ba3bf48c09648b78d296eb5eb2a]
  1534. 17:20:16.879 [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 ?
  1535. 17:20:16.880 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [369]
  1536. 17:20:16.883 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1537. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.27.159.121]
  1538. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 17:20:16 EEST 2024]
  1539. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [369]
  1540. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1541. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1542. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1543. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1544. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1545. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [369]
  1546. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [60.27.159.121]
  1547. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 17:20:16 EEST 2024]
  1548. 17:20:16.883 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [纬东null梁]
  1549. 17:20:16.885 [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=?
  1550. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.25.85.214]
  1551. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-07-14 04:36:23.0]
  1552. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [369]
  1553. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [60.27.159.121]
  1554. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 17:20:16 EEST 2024]
  1555. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [369]
  1556. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1557. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1558. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-07-14 04:48:52.0]
  1559. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1560. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1561. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [城固县董家营镇黄家港]
  1562. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1563. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1564. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-07-14 04:44:45.0]
  1565. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1566. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [1985-09-12 00:00:00.0]
  1567. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500389]
  1568. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1569. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1570. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [汉中]
  1571. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1572. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1573. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1574. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1575. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [372927847@qq.com]
  1576. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [纬东]
  1577. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1578. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1579. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1580. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1581. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1582. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [61232219850913341X]
  1583. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1584. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1585. 17:20:16.886 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [60.27.159.121]
  1586. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [梁]
  1587. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 17:20:16 EEST 2024]
  1588. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1589. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [WeiDong Liang]
  1590. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1591. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [23d98ba3bf48c09648b78d296eb5eb2a]
  1592. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [18622556941]
  1593. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [陕西]
  1594. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1595. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1596. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [723200]
  1597. 17:20:16.887 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [369]
  1598. 17:24:22.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1599. 17:29:22.018 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1600. 17:34:22.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1601. 17:39:22.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1602. 17:44:22.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1603. 17:49:22.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1604. 17:54:22.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1605. 17:59:22.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1606. 18:04:22.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1607. 18:09:22.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1608. 18:14:22.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1609. 18:19:22.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1610. 18:24:22.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1611. 18:29:22.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1612. 18:34:22.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1613. 18:39:22.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1614. 18:44:22.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1615. 18:49:22.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1616. 18:54:22.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1617. 18:59:22.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1618. 19:04:22.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1619. 19:09:22.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1620. 19:14:22.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1621. 19:19:22.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1622. 19:24:22.048 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1623. 19:26:33.150 [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 ?
  1624. 19:26:33.151 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [15522303831@163.com]
  1625. 19:26:33.151 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [a1f6cea9a10a37fd7057fc7faa5f805f]
  1626. 19:26:33.174 [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 ?
  1627. 19:26:33.175 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  1628. 19:26:33.178 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1629. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.197.235.35]
  1630. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 19:26:33 EEST 2024]
  1631. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [254]
  1632. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1633. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1634. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1635. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1636. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1637. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [254]
  1638. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [221.197.235.35]
  1639. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 19:26:33 EEST 2024]
  1640. 19:26:33.179 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [皓翔null杨]
  1641. 19:26:33.181 [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=?
  1642. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.12.113.32]
  1643. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-03-24 04:58:37.0]
  1644. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [254]
  1645. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [221.197.235.35]
  1646. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 19:26:33 EEST 2024]
  1647. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [254]
  1648. 19:26:33.181 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1649. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1650. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2023-03-24 05:07:47.0]
  1651. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1652. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1653. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [赏园里4号楼3门301]
  1654. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1655. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1656. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2023-03-24 05:04:42.0]
  1657. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1658. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2001-08-03 00:00:00.0]
  1659. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500264]
  1660. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1661. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1662. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [南开]
  1663. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1664. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1665. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1666. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1667. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [15522303831@163.com]
  1668. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [皓翔]
  1669. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1670. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1671. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1672. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1673. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1674. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [120103200108042113]
  1675. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1676. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1677. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [221.197.235.35]
  1678. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [杨]
  1679. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 19:26:33 EEST 2024]
  1680. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1681. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [HaoXiang Yang]
  1682. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1683. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [a1f6cea9a10a37fd7057fc7faa5f805f]
  1684. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [15522303831]
  1685. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [天津]
  1686. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1687. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1688. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [300074]
  1689. 19:26:33.182 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [254]
  1690. 19:26:55.535 [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=?
  1691. 19:26:55.536 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [254]
  1692. 19:26:55.536 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057445]
  1693. 19:29:22.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1694. 19:34:22.050 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1695. 19:39:22.052 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1696. 19:44:22.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1697. 19:49:22.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1698. 19:54:22.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1699. 19:59:22.057 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1700. 20:04:22.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1701. 20:09:22.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1702. 20:14:22.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1703. 20:19:22.063 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1704. 20:24:22.065 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1705. 20:29:22.065 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1706. 20:34:22.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1707. 20:39:22.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1708. 20:44:22.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1709. 20:49:22.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1710. 20:54:22.072 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1711. 20:59:22.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1712. 21:04:22.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1713. 21:09:22.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1714. 21:14:22.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1715. 21:16:13.840 [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
  1716. 21:16:13.844 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1717. 21:16:13.844 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1718. 21:16:13.892 [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
  1719. 21:16:13.893 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [0]
  1720. 21:16:13.893 [http-nio-8000-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1721. 21:16:18.341 [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 ?
  1722. 21:16:18.342 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [1399395164@qq.com]
  1723. 21:16:18.343 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [c7a4eaec1da7ee8303926e092c9ce05e]
  1724. 21:16:18.364 [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 ?
  1725. 21:16:18.365 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [601]
  1726. 21:16:18.369 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1727. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.2.17.98]
  1728. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Sep 03 21:16:18 EEST 2024]
  1729. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [601]
  1730. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1731. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1732. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1733. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1734. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1735. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [601]
  1736. 21:16:18.369 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [111.2.17.98]
  1737. 21:16:18.370 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [TIMESTAMP] - [Tue Sep 03 21:16:18 EEST 2024]
  1738. 21:16:18.370 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [j俊豪null姜]
  1739. 21:16:18.372 [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=?
  1740. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.104.7.17]
  1741. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-07-25 11:10:14.0]
  1742. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [601]
  1743. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [111.2.17.98]
  1744. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Sep 03 21:16:18 EEST 2024]
  1745. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [601]
  1746. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1747. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - []
  1748. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2024-07-25 11:18:59.0]
  1749. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1750. 21:16:18.372 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1751. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [安徽省霍邱县临淮岗乡上姜台村上二组@#安徽省霍邱县临淮岗乡上姜台村上二组]
  1752. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  1753. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [INTEGER] - [2]
  1754. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [TIMESTAMP] - [2024-07-25 11:14:14.0]
  1755. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [86]
  1756. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [TIMESTAMP] - [2003-04-27 00:00:00.0]
  1757. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [BIGINT] - [500636]
  1758. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1759. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [INTEGER] - [null]
  1760. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [六安]
  1761. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [FLOAT] - [20.0]
  1762. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [VARCHAR] - [CN]
  1763. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [VARCHAR] - [China]
  1764. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [中国]
  1765. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [1399395164@qq.com]
  1766. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [j俊豪]
  1767. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [INTEGER] - [1]
  1768. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1769. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [INTEGER] - [0]
  1770. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [null]
  1771. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [INTEGER] - [1]
  1772. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [VARCHAR] - [342423200304288350]
  1773. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [null]
  1774. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - []
  1775. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [111.2.17.98]
  1776. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [姜]
  1777. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [TIMESTAMP] - [Tue Sep 03 21:16:18 EEST 2024]
  1778. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [null]
  1779. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [jJunHao Jiang]
  1780. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [CN]
  1781. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [c7a4eaec1da7ee8303926e092c9ce05e]
  1782. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [13588877403]
  1783. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [安徽]
  1784. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [null]
  1785. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [INTEGER] - [1]
  1786. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [237000]
  1787. 21:16:18.373 [http-nio-8000-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [BIGINT] - [601]
  1788. 21:16:58.470 [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 in (? , ?))
  1789. 21:16:58.470 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [601]
  1790. 21:16:58.471 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057314]
  1791. 21:16:58.471 [http-nio-8000-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [9057379]
  1792. 21:19:22.079 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1793. 21:24:22.081 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1794. 21:29:22.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1795. 21:34:22.084 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1796. 21:39:22.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1797. 21:44:22.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1798. 21:49:22.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1799. 21:54:22.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1800. 21:59:22.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1801. 22:04:22.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1802. 22:09:22.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1803. 22:14:22.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1804. 22:19:22.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1805. 22:24:22.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1806. 22:29:22.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1807. 22:34:22.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1808. 22:39:22.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1809. 22:44:22.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1810. 22:49:22.106 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1811. 22:54:22.108 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1812. 22:59:22.109 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1813. 23:04:22.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1814. 23:09:22.112 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1815. 23:14:22.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1816. 23:19:22.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1817. 23:24:22.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1818. 23:29:22.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1819. 23:34:22.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1820. 23:39:22.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1821. 23:44:22.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1822. 23:49:22.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1823. 23:54:22.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1824. 23:59:22.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration