logback.2026-02-10.log 413 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013
  1. 00:00:03.014 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:05:03.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:10:03.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:15:03.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:20:03.022 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:25:03.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:30:03.025 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:35:03.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:40:03.028 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:45:03.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:50:03.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:55:03.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:00:03.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:05:03.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:10:03.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:15:03.038 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:20:03.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:25:03.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:30:03.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:35:03.043 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:40:03.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:45:03.046 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:50:03.048 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:55:03.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:00:03.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:05:03.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:10:03.054 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:15:03.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:20:03.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:25:03.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:30:03.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:35:03.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:40:03.062 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:45:03.063 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:50:03.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:55:03.066 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 03:00:03.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 03:05:03.069 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 03:10:03.071 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 03:13:12.241 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financewit0_.id as id1_53_, financewit0_.add_ip as add_ip2_53_, financewit0_.add_time as add_time3_53_, financewit0_.add_user as add_user4_53_, financewit0_.modify_ip as modify_i5_53_, financewit0_.modify_time as modify_t6_53_, financewit0_.modify_user as modify_u7_53_, financewit0_.note as note8_53_, financewit0_.approve_desc as approve_9_53_, financewit0_.approve_time as approve10_53_, financewit0_.approve_user as approve11_53_, financewit0_.status as status12_53_, financewit0_.address as address13_53_, financewit0_.agent_id as agent_i14_53_, financewit0_.amount as amount15_53_, financewit0_.bank_addr as bank_ad16_53_, financewit0_.bank_back as bank_ba17_53_, financewit0_.bank_branch_name as bank_br18_53_, financewit0_.bank_card_num as bank_ca19_53_, financewit0_.bank_code as bank_co20_53_, financewit0_.bank_front as bank_fr21_53_, financewit0_.bank_name as bank_na22_53_, financewit0_.bank_uname as bank_un23_53_, financewit0_.c_id as c_id24_53_, financewit0_.callback_status as callbac25_53_, financewit0_.channel_serial as channel26_53_, financewit0_.currency as currenc27_53_, financewit0_.custom_bank_code as custom_28_53_, financewit0_.custom_id as custom_29_53_, financewit0_.login as login30_53_, financewit0_.login_type as login_t31_53_, financewit0_.message as message32_53_, financewit0_.name as name33_53_, financewit0_.operation_type as operati34_53_, financewit0_.pay_type as pay_typ35_53_, financewit0_.platform as platfor36_53_, financewit0_.rate as rate37_53_, financewit0_.remit_channel_code as remit_c38_53_, financewit0_.remit_channel_currency as remit_c39_53_, financewit0_.remit_channel_en_icon as remit_c40_53_, financewit0_.remit_channel_en_introduce as remit_c41_53_, financewit0_.remit_channel_en_name as remit_c42_53_, financewit0_.remit_channel_icon as remit_c43_53_, financewit0_.remit_channel_introduce as remit_c44_53_, financewit0_.remit_channel_name as remit_c45_53_, financewit0_.remit_channel_request_url as remit_c46_53_, financewit0_.remit_channel_type as remit_c47_53_, financewit0_.serial as serial48_53_, financewit0_.swift_code as swift_c49_53_, financewit0_.transform_amount as transfo50_53_, financewit0_.transform_currency as transfo51_53_, financewit0_.withdraw_amount as withdra52_53_, financewit0_.withdraw_currency as withdra53_53_, financewit0_.withdraw_status as withdra54_53_, financewit0_.withdraw_ticket as withdra55_53_ from finance_withdraw financewit0_ where financewit0_.id=? limit ? for update
  41. 03:13:12.247 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1890]
  42. 03:13:12.253 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - insert into finance_withdraw_refund (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, amount, custom_id, login, login_type, platform, refund_status, serial, withdraw_currency, withdraw_id, withdraw_refund_currency, withdraw_refund_ticket, withdraw_serial, withdraw_ticket) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  43. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [103.148.58.88]
  44. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 03:13:12 EET 2026]
  45. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [null]
  46. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  47. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  48. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  49. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  50. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [NUMERIC] - [33.7300000000]
  51. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [BIGINT] - [957]
  52. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [9057670]
  53. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [BIGINT] - [1]
  54. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [MT4]
  55. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [INTEGER] - [0]
  56. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [PWR202602100313121228]
  57. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [USD]
  58. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [1890]
  59. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [USD]
  60. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  61. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [PW202602061327418461]
  62. 03:13:12.254 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [73913641]
  63. 03:13:12.256 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - update finance_withdraw set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address=?, agent_id=?, amount=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, c_id=?, callback_status=?, channel_serial=?, currency=?, custom_bank_code=?, custom_id=?, login=?, login_type=?, message=?, name=?, operation_type=?, pay_type=?, platform=?, rate=?, remit_channel_code=?, remit_channel_currency=?, remit_channel_en_icon=?, remit_channel_en_introduce=?, remit_channel_en_name=?, remit_channel_icon=?, remit_channel_introduce=?, remit_channel_name=?, remit_channel_request_url=?, remit_channel_type=?, serial=?, swift_code=?, transform_amount=?, transform_currency=?, withdraw_amount=?, withdraw_currency=?, withdraw_status=?, withdraw_ticket=? where id=?
  64. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  65. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-06 13:27:42.0]
  66. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [957]
  67. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  68. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 03:13:12 EET 2026]
  69. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  70. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  71. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [100]
  72. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-02-06 13:27:45.0]
  73. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  74. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  75. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [TXbcY584E2wJzT3eGqjsXscvZkJduTikiN]
  76. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20141]
  77. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [33.7300000000]
  78. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  79. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  80. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [null]
  81. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  82. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [BTC]
  83. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  84. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [null]
  85. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [null]
  86. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [501010]
  87. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [2]
  88. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  89. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  90. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  91. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [957]
  92. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057670]
  93. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  94. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  95. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [义熔 黄]
  96. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  97. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  98. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  99. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [null]
  100. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [DIGITAL_CURRENCY_REMIT]
  101. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  102. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/digital_currency.png]
  103. 03:13:12.259 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  104. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  105. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 25 EUR / GBP / USD.</span></p>
  106. <p style="line-height: 2;"><span style="font-size: 10pt;">3. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  107. <p style="line-height: 2;"><span style="font-size: 10pt;">4. The currency rate of digital currency depends on the digital currency market. You may exchange your own currencies according to the exchange rate policy of your own digital currency exchange.</span></p>
  108. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  109. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that CWG shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  110. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG Markets reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>]
  111. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [Digital Currency]
  112. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/513e0bba165b41c7ad45323fd70fba5d.png]
  113. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  114. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到CWG交易帐户持有人的银行帐户。</span></p>
  115. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是25 EUR/GBP/USD。</span></p>
  116. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD / EUR / GBP 的汇率。</span></p>
  117. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  118. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  119. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下CWG都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  120. <p style="line-height: 2;"><span style="font-size: 10pt;">7. CWG有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>]
  121. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [数字货币]
  122. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/digital/currency]
  123. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [DIGITAL_CURRENCY]
  124. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602061327418461]
  125. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  126. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [null]
  127. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [BTC]
  128. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [33.7300000000]
  129. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  130. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  131. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [73913641]
  132. 03:13:12.260 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [1890]
  133. 03:13:55.289 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select financewit0_.id as id1_53_, financewit0_.add_ip as add_ip2_53_, financewit0_.add_time as add_time3_53_, financewit0_.add_user as add_user4_53_, financewit0_.modify_ip as modify_i5_53_, financewit0_.modify_time as modify_t6_53_, financewit0_.modify_user as modify_u7_53_, financewit0_.note as note8_53_, financewit0_.approve_desc as approve_9_53_, financewit0_.approve_time as approve10_53_, financewit0_.approve_user as approve11_53_, financewit0_.status as status12_53_, financewit0_.address as address13_53_, financewit0_.agent_id as agent_i14_53_, financewit0_.amount as amount15_53_, financewit0_.bank_addr as bank_ad16_53_, financewit0_.bank_back as bank_ba17_53_, financewit0_.bank_branch_name as bank_br18_53_, financewit0_.bank_card_num as bank_ca19_53_, financewit0_.bank_code as bank_co20_53_, financewit0_.bank_front as bank_fr21_53_, financewit0_.bank_name as bank_na22_53_, financewit0_.bank_uname as bank_un23_53_, financewit0_.c_id as c_id24_53_, financewit0_.callback_status as callbac25_53_, financewit0_.channel_serial as channel26_53_, financewit0_.currency as currenc27_53_, financewit0_.custom_bank_code as custom_28_53_, financewit0_.custom_id as custom_29_53_, financewit0_.login as login30_53_, financewit0_.login_type as login_t31_53_, financewit0_.message as message32_53_, financewit0_.name as name33_53_, financewit0_.operation_type as operati34_53_, financewit0_.pay_type as pay_typ35_53_, financewit0_.platform as platfor36_53_, financewit0_.rate as rate37_53_, financewit0_.remit_channel_code as remit_c38_53_, financewit0_.remit_channel_currency as remit_c39_53_, financewit0_.remit_channel_en_icon as remit_c40_53_, financewit0_.remit_channel_en_introduce as remit_c41_53_, financewit0_.remit_channel_en_name as remit_c42_53_, financewit0_.remit_channel_icon as remit_c43_53_, financewit0_.remit_channel_introduce as remit_c44_53_, financewit0_.remit_channel_name as remit_c45_53_, financewit0_.remit_channel_request_url as remit_c46_53_, financewit0_.remit_channel_type as remit_c47_53_, financewit0_.serial as serial48_53_, financewit0_.swift_code as swift_c49_53_, financewit0_.transform_amount as transfo50_53_, financewit0_.transform_currency as transfo51_53_, financewit0_.withdraw_amount as withdra52_53_, financewit0_.withdraw_currency as withdra53_53_, financewit0_.withdraw_status as withdra54_53_, financewit0_.withdraw_ticket as withdra55_53_ from finance_withdraw financewit0_ where financewit0_.id=? limit ? for update
  134. 03:13:55.295 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1891]
  135. 03:13:55.298 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - update finance_withdraw set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address=?, agent_id=?, amount=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, c_id=?, callback_status=?, channel_serial=?, currency=?, custom_bank_code=?, custom_id=?, login=?, login_type=?, message=?, name=?, operation_type=?, pay_type=?, platform=?, rate=?, remit_channel_code=?, remit_channel_currency=?, remit_channel_en_icon=?, remit_channel_en_introduce=?, remit_channel_en_name=?, remit_channel_icon=?, remit_channel_introduce=?, remit_channel_name=?, remit_channel_request_url=?, remit_channel_type=?, serial=?, swift_code=?, transform_amount=?, transform_currency=?, withdraw_amount=?, withdraw_currency=?, withdraw_status=?, withdraw_ticket=? where id=?
  136. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.80.52.223]
  137. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-08 07:20:43.0]
  138. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [336]
  139. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  140. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 03:13:55 EET 2026]
  141. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  142. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  143. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  144. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-02-08 07:20:44.0]
  145. 03:13:55.298 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  146. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  147. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  148. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  149. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [6000.0000000000]
  150. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  151. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  152. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [青岛劲松七路支行]
  153. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6214835466098082]
  154. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  155. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/336/bank/a4cfca3221c04c7d8435cb77a66b7f2e.jpg]
  156. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国招商银行-CMB]
  157. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [钰 舒]
  158. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500356]
  159. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  160. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  161. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  162. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  163. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [336]
  164. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057256]
  165. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  166. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  167. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [钰 舒]
  168. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  169. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  170. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  171. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  172. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  173. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  174. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  175. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  176. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  177. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  178. <p style="line-height: 2;"><span style="font-size: 10pt;">3. The exchange rate is based on the RMB exchange rate of the Bank of China to USD&nbsp;</span></p>
  179. <p style="line-height: 2;"><span style="font-size: 10pt;">4. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  180. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  181. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that MIC shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  182. <p style="line-height: 2;"><span style="font-size: 10pt;">7. MIC reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>
  183. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">8.&nbsp;Cash out handling fee: the first cash out of each account in the current month is free of handling fee, and the second and above cash out will be charged 5USD each time.</span></span></p>
  184. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">9.The time limit for accepting the payment is 1-3 working days.</span></span></p>]
  185. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  186. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  187. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  188. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  189. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  190. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  191. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  192. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  193. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  194. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  195. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  196. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  197. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  198. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  199. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  200. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602080720420710]
  201. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  202. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [42000.0000000000]
  203. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  204. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [6000.0000000000]
  205. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  206. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  207. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [73932588]
  208. 03:13:55.299 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [1891]
  209. 03:14:37.719 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financewit0_.id as id1_53_, financewit0_.add_ip as add_ip2_53_, financewit0_.add_time as add_time3_53_, financewit0_.add_user as add_user4_53_, financewit0_.modify_ip as modify_i5_53_, financewit0_.modify_time as modify_t6_53_, financewit0_.modify_user as modify_u7_53_, financewit0_.note as note8_53_, financewit0_.approve_desc as approve_9_53_, financewit0_.approve_time as approve10_53_, financewit0_.approve_user as approve11_53_, financewit0_.status as status12_53_, financewit0_.address as address13_53_, financewit0_.agent_id as agent_i14_53_, financewit0_.amount as amount15_53_, financewit0_.bank_addr as bank_ad16_53_, financewit0_.bank_back as bank_ba17_53_, financewit0_.bank_branch_name as bank_br18_53_, financewit0_.bank_card_num as bank_ca19_53_, financewit0_.bank_code as bank_co20_53_, financewit0_.bank_front as bank_fr21_53_, financewit0_.bank_name as bank_na22_53_, financewit0_.bank_uname as bank_un23_53_, financewit0_.c_id as c_id24_53_, financewit0_.callback_status as callbac25_53_, financewit0_.channel_serial as channel26_53_, financewit0_.currency as currenc27_53_, financewit0_.custom_bank_code as custom_28_53_, financewit0_.custom_id as custom_29_53_, financewit0_.login as login30_53_, financewit0_.login_type as login_t31_53_, financewit0_.message as message32_53_, financewit0_.name as name33_53_, financewit0_.operation_type as operati34_53_, financewit0_.pay_type as pay_typ35_53_, financewit0_.platform as platfor36_53_, financewit0_.rate as rate37_53_, financewit0_.remit_channel_code as remit_c38_53_, financewit0_.remit_channel_currency as remit_c39_53_, financewit0_.remit_channel_en_icon as remit_c40_53_, financewit0_.remit_channel_en_introduce as remit_c41_53_, financewit0_.remit_channel_en_name as remit_c42_53_, financewit0_.remit_channel_icon as remit_c43_53_, financewit0_.remit_channel_introduce as remit_c44_53_, financewit0_.remit_channel_name as remit_c45_53_, financewit0_.remit_channel_request_url as remit_c46_53_, financewit0_.remit_channel_type as remit_c47_53_, financewit0_.serial as serial48_53_, financewit0_.swift_code as swift_c49_53_, financewit0_.transform_amount as transfo50_53_, financewit0_.transform_currency as transfo51_53_, financewit0_.withdraw_amount as withdra52_53_, financewit0_.withdraw_currency as withdra53_53_, financewit0_.withdraw_status as withdra54_53_, financewit0_.withdraw_ticket as withdra55_53_ from finance_withdraw financewit0_ where financewit0_.id=? limit ? for update
  210. 03:14:37.726 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1892]
  211. 03:14:37.728 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - update finance_withdraw set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address=?, agent_id=?, amount=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, c_id=?, callback_status=?, channel_serial=?, currency=?, custom_bank_code=?, custom_id=?, login=?, login_type=?, message=?, name=?, operation_type=?, pay_type=?, platform=?, rate=?, remit_channel_code=?, remit_channel_currency=?, remit_channel_en_icon=?, remit_channel_en_introduce=?, remit_channel_en_name=?, remit_channel_icon=?, remit_channel_introduce=?, remit_channel_name=?, remit_channel_request_url=?, remit_channel_type=?, serial=?, swift_code=?, transform_amount=?, transform_currency=?, withdraw_amount=?, withdraw_currency=?, withdraw_status=?, withdraw_ticket=? where id=?
  212. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.80.52.223]
  213. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-09 06:38:12.0]
  214. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [336]
  215. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  216. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 03:14:37 EET 2026]
  217. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  218. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  219. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  220. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-02-09 06:38:13.0]
  221. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  222. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  223. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  224. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  225. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000.0000000000]
  226. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  227. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  228. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [青岛劲松七路支行]
  229. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6214835466098082]
  230. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  231. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/336/bank/a4cfca3221c04c7d8435cb77a66b7f2e.jpg]
  232. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国招商银行-CMB]
  233. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [钰 舒]
  234. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500356]
  235. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  236. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  237. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  238. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  239. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [336]
  240. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057256]
  241. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  242. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  243. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [钰 舒]
  244. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  245. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  246. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  247. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  248. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  249. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  250. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  251. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  252. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  253. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  254. <p style="line-height: 2;"><span style="font-size: 10pt;">3. The exchange rate is based on the RMB exchange rate of the Bank of China to USD&nbsp;</span></p>
  255. <p style="line-height: 2;"><span style="font-size: 10pt;">4. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  256. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  257. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that MIC shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  258. <p style="line-height: 2;"><span style="font-size: 10pt;">7. MIC reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>
  259. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">8.&nbsp;Cash out handling fee: the first cash out of each account in the current month is free of handling fee, and the second and above cash out will be charged 5USD each time.</span></span></p>
  260. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">9.The time limit for accepting the payment is 1-3 working days.</span></span></p>]
  261. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  262. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  263. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  264. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  265. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  266. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  267. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  268. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  269. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  270. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  271. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  272. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  273. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  274. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  275. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  276. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602090638115391]
  277. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  278. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  279. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  280. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [7000.0000000000]
  281. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  282. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  283. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [73949990]
  284. 03:14:37.729 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [1892]
  285. 03:15:03.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  286. 03:15:23.615 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financewit0_.id as id1_53_, financewit0_.add_ip as add_ip2_53_, financewit0_.add_time as add_time3_53_, financewit0_.add_user as add_user4_53_, financewit0_.modify_ip as modify_i5_53_, financewit0_.modify_time as modify_t6_53_, financewit0_.modify_user as modify_u7_53_, financewit0_.note as note8_53_, financewit0_.approve_desc as approve_9_53_, financewit0_.approve_time as approve10_53_, financewit0_.approve_user as approve11_53_, financewit0_.status as status12_53_, financewit0_.address as address13_53_, financewit0_.agent_id as agent_i14_53_, financewit0_.amount as amount15_53_, financewit0_.bank_addr as bank_ad16_53_, financewit0_.bank_back as bank_ba17_53_, financewit0_.bank_branch_name as bank_br18_53_, financewit0_.bank_card_num as bank_ca19_53_, financewit0_.bank_code as bank_co20_53_, financewit0_.bank_front as bank_fr21_53_, financewit0_.bank_name as bank_na22_53_, financewit0_.bank_uname as bank_un23_53_, financewit0_.c_id as c_id24_53_, financewit0_.callback_status as callbac25_53_, financewit0_.channel_serial as channel26_53_, financewit0_.currency as currenc27_53_, financewit0_.custom_bank_code as custom_28_53_, financewit0_.custom_id as custom_29_53_, financewit0_.login as login30_53_, financewit0_.login_type as login_t31_53_, financewit0_.message as message32_53_, financewit0_.name as name33_53_, financewit0_.operation_type as operati34_53_, financewit0_.pay_type as pay_typ35_53_, financewit0_.platform as platfor36_53_, financewit0_.rate as rate37_53_, financewit0_.remit_channel_code as remit_c38_53_, financewit0_.remit_channel_currency as remit_c39_53_, financewit0_.remit_channel_en_icon as remit_c40_53_, financewit0_.remit_channel_en_introduce as remit_c41_53_, financewit0_.remit_channel_en_name as remit_c42_53_, financewit0_.remit_channel_icon as remit_c43_53_, financewit0_.remit_channel_introduce as remit_c44_53_, financewit0_.remit_channel_name as remit_c45_53_, financewit0_.remit_channel_request_url as remit_c46_53_, financewit0_.remit_channel_type as remit_c47_53_, financewit0_.serial as serial48_53_, financewit0_.swift_code as swift_c49_53_, financewit0_.transform_amount as transfo50_53_, financewit0_.transform_currency as transfo51_53_, financewit0_.withdraw_amount as withdra52_53_, financewit0_.withdraw_currency as withdra53_53_, financewit0_.withdraw_status as withdra54_53_, financewit0_.withdraw_ticket as withdra55_53_ from finance_withdraw financewit0_ where financewit0_.id=? limit ? for update
  287. 03:15:23.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1893]
  288. 03:15:23.624 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - update finance_withdraw set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, address=?, agent_id=?, amount=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, c_id=?, callback_status=?, channel_serial=?, currency=?, custom_bank_code=?, custom_id=?, login=?, login_type=?, message=?, name=?, operation_type=?, pay_type=?, platform=?, rate=?, remit_channel_code=?, remit_channel_currency=?, remit_channel_en_icon=?, remit_channel_en_introduce=?, remit_channel_en_name=?, remit_channel_icon=?, remit_channel_introduce=?, remit_channel_name=?, remit_channel_request_url=?, remit_channel_type=?, serial=?, swift_code=?, transform_amount=?, transform_currency=?, withdraw_amount=?, withdraw_currency=?, withdraw_status=?, withdraw_ticket=? where id=?
  289. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.48.77.179]
  290. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-09 15:54:20.0]
  291. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [924]
  292. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  293. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 03:15:23 EET 2026]
  294. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  295. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  296. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  297. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-02-09 15:54:21.0]
  298. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  299. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  300. 03:15:23.625 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  301. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  302. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [203.3400000000]
  303. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  304. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  305. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [交通银行厦门开元支行]
  306. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6222620790012055943]
  307. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  308. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/924/bank/1d6db5e0670f4d70ba236a0b92d99bc1.jpg]
  309. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国交通银行-CTB]
  310. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [国文 温]
  311. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500976]
  312. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  313. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  314. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  315. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  316. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [924]
  317. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057640]
  318. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  319. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  320. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [国文 温]
  321. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  322. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  323. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  324. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  325. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  326. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  327. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  328. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  329. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  330. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  331. <p style="line-height: 2;"><span style="font-size: 10pt;">3. The exchange rate is based on the RMB exchange rate of the Bank of China to USD&nbsp;</span></p>
  332. <p style="line-height: 2;"><span style="font-size: 10pt;">4. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  333. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  334. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that MIC shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  335. <p style="line-height: 2;"><span style="font-size: 10pt;">7. MIC reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>
  336. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">8.&nbsp;Cash out handling fee: the first cash out of each account in the current month is free of handling fee, and the second and above cash out will be charged 5USD each time.</span></span></p>
  337. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">9.The time limit for accepting the payment is 1-3 working days.</span></span></p>]
  338. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  339. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  340. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  341. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  342. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  343. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  344. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  345. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  346. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  347. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  348. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  349. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  350. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  351. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  352. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  353. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602091554195921]
  354. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  355. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [1423.3800000000]
  356. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  357. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [203.3400000000]
  358. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  359. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  360. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [73976484]
  361. 03:15:23.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [1893]
  362. 03:20:03.074 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  363. 03:25:03.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  364. 03:30:03.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  365. 03:35:03.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  366. 03:40:03.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  367. 03:45:03.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  368. 03:50:03.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  369. 03:55:03.083 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  370. 03:59:49.878 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  371. 03:59:49.885 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  372. 03:59:49.887 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  373. 03:59:49.887 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  374. 03:59:49.887 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  375. 03:59:49.887 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  376. 03:59:49.888 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  377. 03:59:49.888 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  378. 03:59:49.888 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  379. 03:59:49.893 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  380. 03:59:49.897 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  381. 03:59:49.898 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  382. 03:59:49.899 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  383. 03:59:49.899 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  384. 03:59:49.899 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  385. 03:59:49.900 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  386. 03:59:49.900 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  387. 03:59:49.900 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  388. 03:59:52.327 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  389. 03:59:52.332 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  390. 03:59:52.334 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  391. 03:59:52.334 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  392. 03:59:52.334 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  393. 03:59:52.336 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  394. 03:59:52.336 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  395. 03:59:52.336 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  396. 03:59:52.336 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  397. 03:59:52.338 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  398. 03:59:52.339 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  399. 03:59:52.340 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  400. 03:59:52.340 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  401. 03:59:52.340 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  402. 03:59:52.341 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  403. 03:59:52.346 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  404. 03:59:52.346 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  405. 03:59:52.346 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  406. 03:59:56.374 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code=? and syschannel0_.valid=? order by syschannel0_.sub_index asc
  407. 03:59:56.378 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  408. 03:59:56.378 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  409. 04:00:03.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  410. 04:03:26.384 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  411. 04:03:26.389 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  412. 04:03:26.391 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  413. 04:03:26.391 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  414. 04:03:26.391 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  415. 04:03:26.393 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  416. 04:03:26.393 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  417. 04:03:26.393 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  418. 04:03:26.393 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  419. 04:03:26.459 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  420. 04:03:26.464 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  421. 04:03:26.464 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  422. 04:03:26.465 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  423. 04:03:26.465 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  424. 04:03:26.465 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  425. 04:03:26.466 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  426. 04:03:26.466 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  427. 04:03:26.466 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  428. 04:03:29.089 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code=? and syschannel0_.valid=? order by syschannel0_.sub_index asc
  429. 04:03:29.094 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  430. 04:03:29.094 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  431. 04:03:39.518 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  432. 04:03:39.522 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  433. 04:03:39.524 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  434. 04:03:39.525 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  435. 04:03:39.525 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  436. 04:03:39.529 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.code=? and syschannel0_.channel_code=? and syschannel0_.valid=? limit ?
  437. 04:03:39.529 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [TRC20]
  438. 04:03:39.529 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  439. 04:03:39.529 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  440. 04:03:39.531 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  441. 04:03:39.535 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [948]
  442. 04:03:39.538 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  443. 04:03:39.538 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [948]
  444. 04:03:39.538 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057659]
  445. 04:03:39.539 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  446. 04:03:39.539 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  447. 04:03:39.539 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [USDT]
  448. 04:03:39.539 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  449. 04:03:39.540 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  450. 04:03:39.541 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  451. 04:03:39.541 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  452. 04:03:39.541 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  453. 04:03:39.541 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  454. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.249.28.59]
  455. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:03:39 EET 2026]
  456. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [948]
  457. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  458. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  459. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  460. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  461. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  462. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  463. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  464. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  465. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  466. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  467. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2001]
  468. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [TRC20]
  469. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  470. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501001]
  471. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  472. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  473. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  474. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14407.2000000000]
  475. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  476. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [948]
  477. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2001]
  478. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  479. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  480. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  481. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:03:39 EET 2026]
  482. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  483. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057659]
  484. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  485. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [沐榕 刘]
  486. 04:03:39.542 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  487. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  488. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  489. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  490. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [1.0000000000]
  491. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  492. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  493. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  494. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  495. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [数字货币Exlink]
  496. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/e5c022d0146844fa8badaa1a9804bc83.png]
  497. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  498. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [数字货币Exlink]
  499. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  500. "uid":"1886778",
  501. "accessKey":"D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe",
  502. "baseUrl":"https://api.exlinked.com",
  503. "callbackKey":"FeYI59OVnPg4qqkoatvvsMr6dZcjWje8",
  504. "digitalPayUrl":"/coin/pay/order/coin/checkout/counter"
  505. }]
  506. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/exlink/digital/pay]
  507. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100403392900]
  508. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [2001.0000000000]
  509. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [USDT]
  510. 04:03:39.543 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  511. 04:03:39.546 [http-nio-8004-exec-1] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - 支付请求加密处理--请求orderNo:PD202602100403392900_9057659,加密字符串为:amount=2001&coinName=USDT&orderId=PD202602100403392900_9057659&protocol=TRC20&uid=1886778&uniqueCode=948&key=D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe,加密结果sign:bb8f1e1e3dc43d778810f0277fb6b406
  512. 04:03:39.776 [http-nio-8004-exec-1] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - url:https://api.exlinked.com/coin/pay/order/coin/checkout/counter,json:{"uid":"1886778","uniqueCode":"948","protocol":"TRC20","coinName":"USDT","orderId":"PD202602100403392900_9057659","amount":"2001","signature":"bb8f1e1e3dc43d778810f0277fb6b406"},body:{"code":1,"message":"成功","data":"https://syt.wfdymy.com/coinOrderCreated/?data=ZHjj4HulbuyoiwhOjIE55Ld7X5Ad7EhPsWoy8TZoxfCMaXxWjcSX6YA7dX90uO4GVLLeVfVZPeSwjZyn%2FGod1I4BF3YgHZVQKzoQXszhfUTfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D","success":true}
  513. 04:03:39.776 [http-nio-8004-exec-1] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - 支付请求,请求orderNo:PD202602100403392900_9057659,请求url:https://syt.wfdymy.com/coinOrderCreated/?data=ZHjj4HulbuyoiwhOjIE55Ld7X5Ad7EhPsWoy8TZoxfCMaXxWjcSX6YA7dX90uO4GVLLeVfVZPeSwjZyn%2FGod1I4BF3YgHZVQKzoQXszhfUTfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D
  514. 04:03:39.777 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  515. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.249.28.59]
  516. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:03:39 EET 2026]
  517. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [948]
  518. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  519. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  520. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  521. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  522. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  523. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  524. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  525. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  526. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  527. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  528. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2001]
  529. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [TRC20]
  530. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  531. 04:03:39.780 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501001]
  532. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  533. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  534. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  535. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14407.2000000000]
  536. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  537. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [948]
  538. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2001]
  539. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  540. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  541. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  542. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:03:39 EET 2026]
  543. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.wfdymy.com/coinOrderCreated/?data=ZHjj4HulbuyoiwhOjIE55Ld7X5Ad7EhPsWoy8TZoxfCMaXxWjcSX6YA7dX90uO4GVLLeVfVZPeSwjZyn%2FGod1I4BF3YgHZVQKzoQXszhfUTfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D]
  544. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057659]
  545. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  546. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [沐榕 刘]
  547. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  548. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  549. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  550. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  551. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [1.0000000000]
  552. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  553. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  554. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  555. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  556. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [数字货币Exlink]
  557. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/e5c022d0146844fa8badaa1a9804bc83.png]
  558. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  559. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [数字货币Exlink]
  560. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  561. "uid":"1886778",
  562. "accessKey":"D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe",
  563. "baseUrl":"https://api.exlinked.com",
  564. "callbackKey":"FeYI59OVnPg4qqkoatvvsMr6dZcjWje8",
  565. "digitalPayUrl":"/coin/pay/order/coin/checkout/counter"
  566. }]
  567. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/exlink/digital/pay]
  568. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100403392900]
  569. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [2001]
  570. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [USDT]
  571. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  572. 04:03:39.781 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7435]
  573. 04:03:50.566 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  574. 04:03:50.570 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  575. 04:03:50.572 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  576. 04:03:50.573 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  577. 04:03:50.573 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  578. 04:03:50.573 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  579. 04:03:50.573 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  580. 04:03:50.574 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  581. 04:03:50.574 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  582. 04:05:03.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  583. 04:10:03.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  584. 04:15:03.088 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  585. 04:20:03.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  586. 04:25:03.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  587. 04:28:36.059 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  588. 04:28:36.063 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  589. 04:28:36.065 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  590. 04:28:36.065 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  591. 04:28:36.065 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  592. 04:28:36.066 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  593. 04:28:36.066 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  594. 04:28:36.066 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  595. 04:28:36.066 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  596. 04:28:53.109 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  597. 04:28:53.113 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  598. 04:28:53.115 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  599. 04:28:53.115 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  600. 04:28:53.115 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  601. 04:28:53.119 [http-nio-8004-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 ?
  602. 04:28:53.120 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  603. 04:28:53.121 [http-nio-8004-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 ?
  604. 04:28:53.128 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  605. 04:28:53.128 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057171]
  606. 04:28:53.129 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  607. 04:28:53.129 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  608. 04:28:53.129 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  609. 04:28:53.129 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  610. 04:28:53.130 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  611. 04:28:53.131 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  612. 04:28:53.131 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  613. 04:28:53.131 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  614. 04:28:53.131 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  615. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  616. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:28:53 EET 2026]
  617. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [571]
  618. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  619. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  620. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  621. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  622. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  623. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  624. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  625. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  626. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  627. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  628. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  629. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  630. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  631. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500605]
  632. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  633. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  634. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  635. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  636. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  637. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [571]
  638. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  639. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  640. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  641. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  642. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:28:53 EET 2026]
  643. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  644. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057171]
  645. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  646. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [倩 李]
  647. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  648. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  649. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  650. 04:28:53.132 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  651. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  652. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  653. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  654. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  655. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  656. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  657. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  658. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  659. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  660. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  661. "code":"602961",
  662. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  663. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  664. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  665. }]
  666. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  667. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100428538501]
  668. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  669. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  670. 04:28:53.133 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  671. 04:28:53.134 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202602100428538501_9057171,加密字符串为:order_amount=3600&order_id=PD202602100428538501_9057171&order_ip=154.12.178.16&order_time=2026-02-10+04%3A28%3A53&pay_user_name=%E5%80%A9%E6%9D%8E&sys_no=602961&user_id=500605469ad7b6cca3036e29f721606999b7fc,加密结果sign:4298fc5427e3c276d9f4aa49c73b38b8
  672. 04:28:53.134 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202602100428538501_9057171","order_amount":"3600","sys_no":"602961","user_id":"500605","order_ip":"154.12.178.16","order_time":"2026-02-10 04:28:53","pay_user_name":"倩李","sign":"4298fc5427e3c276d9f4aa49c73b38b8"}
  673. 04:28:53.255 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"899720691285774336","send_url":"https://syt.hnegca.com/created/?data=szH9eqYIFuVuwDonDdBra8cdb8fSHGSTkD926DoKt9a%2BarHLPAp1qROLPLlJHG1CJaXm2Pqh5WS2ymmmZ4cyt20ajnYQT6herMCyr4Jfyxo%3D","user_id":"205208","order_id":"PD202602100428538501_9057171"},"status":"success"}
  674. 04:28:53.255 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202602100428538501_9057171,请求url:https://syt.hnegca.com/created/?data=szH9eqYIFuVuwDonDdBra8cdb8fSHGSTkD926DoKt9a%2BarHLPAp1qROLPLlJHG1CJaXm2Pqh5WS2ymmmZ4cyt20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=899720691285774336&user_id=205208
  675. 04:28:53.255 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  676. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  677. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:28:53 EET 2026]
  678. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [571]
  679. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  680. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  681. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  682. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  683. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  684. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  685. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  686. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  687. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  688. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  689. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  690. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  691. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  692. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500605]
  693. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  694. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  695. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  696. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  697. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  698. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [571]
  699. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  700. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  701. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  702. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  703. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:28:53 EET 2026]
  704. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.hnegca.com/created/?data=szH9eqYIFuVuwDonDdBra8cdb8fSHGSTkD926DoKt9a%2BarHLPAp1qROLPLlJHG1CJaXm2Pqh5WS2ymmmZ4cyt20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=899720691285774336&user_id=205208]
  705. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057171]
  706. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  707. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [倩 李]
  708. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  709. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  710. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  711. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  712. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  713. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  714. 04:28:53.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  715. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  716. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  717. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  718. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  719. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  720. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  721. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  722. "code":"602961",
  723. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  724. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  725. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  726. }]
  727. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  728. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100428538501]
  729. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  730. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  731. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  732. 04:28:53.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7436]
  733. 04:30:03.093 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  734. 04:34:23.584 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202602100428538501_9057171,callback data:{"amount":"3600","bill_no":"PD202602100428538501_9057171","sign":"6c7be750c5467a2bbcf18dfc422fc810","sys_no":"602961"}
  735. 04:34:23.584 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  736. 04:34:23.588 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  737. 04:34:23.590 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  738. 04:34:23.591 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  739. 04:34:23.591 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  740. 04:34:23.591 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202602100428538501_9057171,signString:PD202602100428538501_9057171230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:6c7be750c5467a2bbcf18dfc422fc810
  741. 04:34:23.591 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  742. 04:34:23.593 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202602100428538501]
  743. 04:34:23.743 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  744. 04:34:23.746 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  745. 04:34:23.748 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  746. 04:34:23.749 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [571]
  747. 04:34:23.751 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  748. 04:34:23.752 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  749. 04:34:23.753 [http-nio-8004-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1770690863753,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202602100428538501","V_DATE_TIME_V":"2026-02-10 04:34:23","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0125","V_APPLY_TIME_V":"2026-02-10 04:28:53","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202602100428538501_9057171","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-02-10 04:34:23","V_LOGIN_V":"9057171","V_TRANSFORM_AMOUNT_V":"3600.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"500.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  750. 04:34:23.759 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  751. 04:34:23.761 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  752. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-10 04:28:53.0]
  753. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [571]
  754. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  755. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 04:34:23 EET 2026]
  756. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  757. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  758. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  759. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  760. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  761. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  762. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  763. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  764. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  765. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  766. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  767. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500605]
  768. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  769. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue Feb 10 04:34:23 EET 2026]
  770. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202602100428538501_9057171]
  771. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600]
  772. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  773. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [571]
  774. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  775. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  776. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  777. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  778. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-02-10 14:28:53.0]
  779. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.hnegca.com/created/?data=szH9eqYIFuVuwDonDdBra8cdb8fSHGSTkD926DoKt9a%2BarHLPAp1qROLPLlJHG1CJaXm2Pqh5WS2ymmmZ4cyt20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=899720691285774336&user_id=205208]
  780. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057171]
  781. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  782. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [倩 李]
  783. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  784. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  785. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  786. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  787. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  788. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  789. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  790. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  791. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  792. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  793. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  794. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  795. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  796. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  797. "code":"602961",
  798. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  799. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  800. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  801. }]
  802. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  803. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100428538501]
  804. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600]
  805. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  806. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  807. 04:34:23.762 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7436]
  808. 04:35:03.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  809. 04:40:03.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  810. 04:43:18.488 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  811. 04:43:18.493 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  812. 04:43:18.495 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  813. 04:43:18.495 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  814. 04:43:18.495 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  815. 04:43:18.495 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  816. 04:43:18.496 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  817. 04:43:18.496 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  818. 04:43:18.496 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  819. 04:43:18.624 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  820. 04:43:18.628 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  821. 04:43:18.630 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  822. 04:43:18.630 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  823. 04:43:18.630 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  824. 04:43:18.633 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  825. 04:43:18.634 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  826. 04:43:18.634 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  827. 04:43:18.634 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  828. 04:43:20.340 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code=? and syschannel0_.valid=? order by syschannel0_.sub_index asc
  829. 04:43:20.348 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  830. 04:43:20.348 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  831. 04:45:03.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  832. 04:46:20.758 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  833. 04:46:20.764 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  834. 04:46:20.766 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  835. 04:46:20.766 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  836. 04:46:20.766 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  837. 04:46:20.770 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.code=? and syschannel0_.channel_code=? and syschannel0_.valid=? limit ?
  838. 04:46:20.770 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [TRC20]
  839. 04:46:20.771 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  840. 04:46:20.771 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [INTEGER] - [1]
  841. 04:46:20.772 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  842. 04:46:20.779 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [948]
  843. 04:46:20.780 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  844. 04:46:20.781 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [948]
  845. 04:46:20.781 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057659]
  846. 04:46:20.782 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  847. 04:46:20.782 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  848. 04:46:20.782 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [USDT]
  849. 04:46:20.782 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  850. 04:46:20.783 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  851. 04:46:20.783 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  852. 04:46:20.784 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  853. 04:46:20.784 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  854. 04:46:20.784 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  855. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [61.216.165.234]
  856. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:46:20 EET 2026]
  857. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [948]
  858. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  859. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  860. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  861. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  862. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  863. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  864. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  865. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  866. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  867. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  868. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  869. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [TRC20]
  870. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  871. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501001]
  872. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  873. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  874. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  875. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400.0000000000]
  876. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  877. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [948]
  878. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  879. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  880. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  881. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  882. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:46:20 EET 2026]
  883. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  884. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057659]
  885. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  886. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [沐榕 刘]
  887. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  888. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  889. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  890. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  891. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [1.0000000000]
  892. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  893. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  894. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  895. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  896. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [数字货币Exlink]
  897. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/e5c022d0146844fa8badaa1a9804bc83.png]
  898. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  899. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [数字货币Exlink]
  900. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  901. "uid":"1886778",
  902. "accessKey":"D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe",
  903. "baseUrl":"https://api.exlinked.com",
  904. "callbackKey":"FeYI59OVnPg4qqkoatvvsMr6dZcjWje8",
  905. "digitalPayUrl":"/coin/pay/order/coin/checkout/counter"
  906. }]
  907. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/exlink/digital/pay]
  908. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100446207757]
  909. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [2000.0000000000]
  910. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [USDT]
  911. 04:46:20.785 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  912. 04:46:20.786 [http-nio-8004-exec-9] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - 支付请求加密处理--请求orderNo:PD202602100446207757_9057659,加密字符串为:amount=2000&coinName=USDT&orderId=PD202602100446207757_9057659&protocol=TRC20&uid=1886778&uniqueCode=948&key=D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe,加密结果sign:16efe2b89ee73f7ebfabb4b9dc5a4a96
  913. 04:46:20.984 [http-nio-8004-exec-9] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - url:https://api.exlinked.com/coin/pay/order/coin/checkout/counter,json:{"uid":"1886778","uniqueCode":"948","protocol":"TRC20","coinName":"USDT","orderId":"PD202602100446207757_9057659","amount":"2000","signature":"16efe2b89ee73f7ebfabb4b9dc5a4a96"},body:{"code":1,"message":"成功","data":"https://syt.wfdymy.com/coinOrderCreated/?data=dym1fV7R3apoUHlIhb1lwMbh3mVX7R1E6nvnUMbSaIaMaXxWjcSX6YA7dX90uO4G5i%2FYhc26ZU2m6YQ98pihXI6bUQ%2BSwCLaRsJ0%2FgXiMPXfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D","success":true}
  914. 04:46:20.984 [http-nio-8004-exec-9] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - 支付请求,请求orderNo:PD202602100446207757_9057659,请求url:https://syt.wfdymy.com/coinOrderCreated/?data=dym1fV7R3apoUHlIhb1lwMbh3mVX7R1E6nvnUMbSaIaMaXxWjcSX6YA7dX90uO4G5i%2FYhc26ZU2m6YQ98pihXI6bUQ%2BSwCLaRsJ0%2FgXiMPXfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D
  915. 04:46:20.985 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  916. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [61.216.165.234]
  917. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:46:20 EET 2026]
  918. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [948]
  919. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  920. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  921. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  922. 04:46:20.988 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  923. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  924. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  925. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  926. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  927. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  928. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  929. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  930. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [TRC20]
  931. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  932. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501001]
  933. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  934. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  935. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  936. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400.0000000000]
  937. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  938. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [948]
  939. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  940. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  941. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  942. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  943. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:46:20 EET 2026]
  944. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.wfdymy.com/coinOrderCreated/?data=dym1fV7R3apoUHlIhb1lwMbh3mVX7R1E6nvnUMbSaIaMaXxWjcSX6YA7dX90uO4G5i%2FYhc26ZU2m6YQ98pihXI6bUQ%2BSwCLaRsJ0%2FgXiMPXfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D]
  945. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057659]
  946. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  947. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [沐榕 刘]
  948. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  949. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  950. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  951. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  952. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [1.0000000000]
  953. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  954. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  955. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  956. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  957. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [数字货币Exlink]
  958. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/e5c022d0146844fa8badaa1a9804bc83.png]
  959. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  960. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [数字货币Exlink]
  961. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  962. "uid":"1886778",
  963. "accessKey":"D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe",
  964. "baseUrl":"https://api.exlinked.com",
  965. "callbackKey":"FeYI59OVnPg4qqkoatvvsMr6dZcjWje8",
  966. "digitalPayUrl":"/coin/pay/order/coin/checkout/counter"
  967. }]
  968. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/exlink/digital/pay]
  969. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100446207757]
  970. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [2000]
  971. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [USDT]
  972. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  973. 04:46:20.989 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7437]
  974. 04:50:03.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  975. 04:51:57.027 [http-nio-8004-exec-3] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - callback orderNo:PD202602100446207757_9057659,callback data:{"amount":"1980.0000","apiOrderNo":"PD202602100446207757_9057659","coinName":"USDT","fee":"20.0000","orderAmount":"2000.0000","protocol":"TRC20","signature":"8d54067ee7b4fd2b61917511591010e6","tradeId":"899725090682839040","txId":"4214a649ac5b320a53b24f98d86fb82791814bfee0b019d7fdb949c8c1e67f6d","uniqueCode":"1886778"}
  976. 04:51:57.027 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  977. 04:51:57.031 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  978. 04:51:57.033 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  979. 04:51:57.034 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  980. 04:51:57.034 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  981. 04:51:57.034 [http-nio-8004-exec-3] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - 回调结果加密处理--请求orderNo:PD202602100446207757_9057659,加密字符串为:amount=1980.0000&apiOrderNo=PD202602100446207757_9057659&coinName=USDT&fee=20.0000&orderAmount=2000.0000&protocol=TRC20&tradeId=899725090682839040&txId=4214a649ac5b320a53b24f98d86fb82791814bfee0b019d7fdb949c8c1e67f6d&uniqueCode=1886778&key=FeYI59OVnPg4qqkoatvvsMr6dZcjWje8,加密结果sign:8d54067ee7b4fd2b61917511591010e6
  982. 04:51:57.034 [http-nio-8004-exec-3] INFO c.c.p.s.i.p.ExlinkDigitalPayServiceImpl - order no:PD202602100446207757_9057659callback result sign compare--callback sign:8d54067ee7b4fd2b61917511591010e6, encryption sign result:8d54067ee7b4fd2b61917511591010e6
  983. 04:51:57.034 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  984. 04:51:57.036 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202602100446207757]
  985. 04:51:57.191 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  986. 04:51:57.194 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  987. 04:51:57.194 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  988. 04:51:57.194 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  989. 04:51:57.196 [http-nio-8004-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=?
  990. 04:51:57.196 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  991. 04:51:57.198 [http-nio-8004-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_.id=? limit ?
  992. 04:51:57.199 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [948]
  993. 04:51:57.205 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  994. 04:51:57.208 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20128]
  995. 04:51:57.211 [http-nio-8004-exec-3] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1770691917211,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202602100446207757","V_DATE_TIME_V":"2026-02-10 04:51:57","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"10","V_APPLY_TIME_V":"2026-02-10 04:46:21","V_CHANNEL_NAME_V":"数字货币Exlink","V_CHANNEL_SERIAL_V":"899725090682839040","V_DEPOSIT_TRANSFORM_CURRENCY_V":"USDT","V_SUCCESS_TIME_V":"2026-02-10 04:51:57","V_LOGIN_V":"9057659","V_TRANSFORM_AMOUNT_V":"2000.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"2000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  996. 04:51:57.217 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  997. 04:51:57.220 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [61.216.165.234]
  998. 04:51:57.220 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-10 04:46:21.0]
  999. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [948]
  1000. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1001. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 04:51:57 EET 2026]
  1002. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1003. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1004. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1005. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1006. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1007. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1008. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1009. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20128]
  1010. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000.0000000000]
  1011. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [TRC20]
  1012. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1013. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501001]
  1014. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1015. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue Feb 10 04:51:57 EET 2026]
  1016. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [899725090682839040]
  1017. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400.00000000000000000000]
  1018. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1019. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [948]
  1020. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000.0000000000]
  1021. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1022. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1023. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1024. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-02-10 14:46:21.0]
  1025. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.wfdymy.com/coinOrderCreated/?data=dym1fV7R3apoUHlIhb1lwMbh3mVX7R1E6nvnUMbSaIaMaXxWjcSX6YA7dX90uO4G5i%2FYhc26ZU2m6YQ98pihXI6bUQ%2BSwCLaRsJ0%2FgXiMPXfDn9QNzF0iXJ%2FPPwnmQYun9BapdqQJygOEv36xYmmjV5P1AOEx0RRZ0pJDzzIMOQxshBqvrtfLW3u32qLTwOyYjODf1jA1fohDLF8sM6fog%3D%3D]
  1026. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057659]
  1027. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1028. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [沐榕 刘]
  1029. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1030. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  1031. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1032. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1033. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [1.0000000000]
  1034. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  1035. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1036. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [null]
  1037. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [null]
  1038. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [数字货币Exlink]
  1039. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/e5c022d0146844fa8badaa1a9804bc83.png]
  1040. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1041. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [数字货币Exlink]
  1042. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1043. "uid":"1886778",
  1044. "accessKey":"D5DBCbSMFqvlVdjWjdYfac7iZrfQALqe",
  1045. "baseUrl":"https://api.exlinked.com",
  1046. "callbackKey":"FeYI59OVnPg4qqkoatvvsMr6dZcjWje8",
  1047. "digitalPayUrl":"/coin/pay/order/coin/checkout/counter"
  1048. }]
  1049. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/exlink/digital/pay]
  1050. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100446207757]
  1051. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [2000.0000]
  1052. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [USDT]
  1053. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1054. 04:51:57.221 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7437]
  1055. 04:52:01.739 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1056. 04:52:01.742 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1057. 04:55:03.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1058. 04:58:48.191 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1059. 04:58:48.196 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1060. 04:58:48.198 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1061. 04:58:48.198 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1062. 04:58:48.199 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1063. 04:58:48.199 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1064. 04:58:48.199 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1065. 04:58:48.199 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1066. 04:58:48.199 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1067. 04:58:48.556 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1068. 04:58:48.564 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1069. 04:58:48.566 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1070. 04:58:48.566 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1071. 04:58:48.566 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1072. 04:58:48.567 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1073. 04:58:48.568 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1074. 04:58:48.568 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1075. 04:58:48.568 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1076. 04:58:58.411 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  1077. 04:58:58.415 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1078. 04:58:58.417 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1079. 04:58:58.418 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1080. 04:58:58.418 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1081. 04:58:58.421 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1082. 04:58:58.422 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
  1083. 04:58:58.424 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1084. 04:58:58.429 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
  1085. 04:58:58.429 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057454]
  1086. 04:58:58.430 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1087. 04:58:58.430 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1088. 04:58:58.430 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1089. 04:58:58.430 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1090. 04:58:58.431 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1091. 04:58:58.432 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1092. 04:58:58.432 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1093. 04:58:58.432 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1094. 04:58:58.432 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1095. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1096. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:58:58 EET 2026]
  1097. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
  1098. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1099. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1100. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1101. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1102. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1103. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1104. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1105. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1106. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1107. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  1108. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1109. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1110. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1111. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500561]
  1112. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1113. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1114. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1115. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  1116. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1117. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [528]
  1118. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1119. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1120. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1121. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1122. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:58:58 EET 2026]
  1123. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1124. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057454]
  1125. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1126. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [锦堃 董]
  1127. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1128. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1129. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1130. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1131. 04:58:58.433 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1132. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1133. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1134. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1135. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1136. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1137. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1138. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1139. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1140. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1141. "code":"602961",
  1142. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1143. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1144. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1145. }]
  1146. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1147. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100458585596]
  1148. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  1149. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1150. 04:58:58.434 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1151. 04:58:58.435 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202602100458585596_9057454,加密字符串为:order_amount=3600&order_id=PD202602100458585596_9057454&order_ip=154.12.178.16&order_time=2026-02-10+04%3A58%3A58&pay_user_name=%E9%94%A6%E5%A0%83%E8%91%A3&sys_no=602961&user_id=500561469ad7b6cca3036e29f721606999b7fc,加密结果sign:8d0ed4633b4b0bed17394b6fc066cbec
  1152. 04:58:58.435 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202602100458585596_9057454","order_amount":"3600","sys_no":"602961","user_id":"500561","order_ip":"154.12.178.16","order_time":"2026-02-10 04:58:58","pay_user_name":"锦堃董","sign":"8d0ed4633b4b0bed17394b6fc066cbec"}
  1153. 04:58:58.580 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"899728263690592256","send_url":"https://syt.hnegca.com/created/?data=cy2HmfNMskZEL3u62Aj1O644oH0akqcqV68p0V%2BsMAsi%2FdWGccz56hEg6duYUkxJ%2BpeF3Uga99H0JndTuYYArHtB5g3ZQCMavlcdsKnJV2c%3D","user_id":"205208","order_id":"PD202602100458585596_9057454"},"status":"success"}
  1154. 04:58:58.580 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202602100458585596_9057454,请求url:https://syt.hnegca.com/created/?data=cy2HmfNMskZEL3u62Aj1O644oH0akqcqV68p0V%2BsMAsi%2FdWGccz56hEg6duYUkxJ%2BpeF3Uga99H0JndTuYYArHtB5g3ZQCMavlcdsKnJV2c%3D?in_order_id=899728263690592256&user_id=205208
  1155. 04:58:58.580 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  1156. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1157. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 04:58:58 EET 2026]
  1158. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
  1159. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1160. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1161. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1162. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1163. 04:58:58.584 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1164. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1165. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1166. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1167. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1168. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  1169. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1170. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1171. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1172. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500561]
  1173. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1174. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1175. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1176. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  1177. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1178. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [528]
  1179. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1180. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1181. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1182. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1183. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue Feb 10 14:58:58 EET 2026]
  1184. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.hnegca.com/created/?data=cy2HmfNMskZEL3u62Aj1O644oH0akqcqV68p0V%2BsMAsi%2FdWGccz56hEg6duYUkxJ%2BpeF3Uga99H0JndTuYYArHtB5g3ZQCMavlcdsKnJV2c%3D?in_order_id=899728263690592256&user_id=205208]
  1185. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057454]
  1186. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1187. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [锦堃 董]
  1188. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1189. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1190. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1191. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1192. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1193. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1194. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1195. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1196. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1197. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1198. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1199. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1200. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1201. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1202. "code":"602961",
  1203. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1204. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1205. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1206. }]
  1207. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1208. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602100458585596]
  1209. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  1210. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1211. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1212. 04:58:58.585 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7438]
  1213. 05:00:03.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1214. 05:05:03.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1215. 05:10:03.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1216. 05:15:03.103 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1217. 05:20:03.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1218. 05:25:03.106 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1219. 05:30:03.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1220. 05:35:03.109 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1221. 05:40:03.111 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1222. 05:45:03.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1223. 05:50:03.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1224. 05:55:03.116 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1225. 05:56:20.698 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1226. 05:56:20.710 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1227. 05:56:20.713 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1228. 05:56:20.714 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1229. 05:56:20.714 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1230. 05:56:20.716 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1231. 05:56:20.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1232. 05:56:20.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1233. 05:56:20.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1234. 05:56:21.016 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1235. 05:56:21.024 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1236. 05:56:21.026 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1237. 05:56:21.027 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1238. 05:56:21.027 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1239. 05:56:21.028 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1240. 05:56:21.029 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1241. 05:56:21.029 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1242. 05:56:21.029 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1243. 06:00:03.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1244. 06:05:03.118 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1245. 06:10:03.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1246. 06:15:03.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1247. 06:20:03.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1248. 06:25:03.124 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1249. 06:29:30.920 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1250. 06:29:30.927 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1251. 06:29:30.932 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1252. 06:29:30.935 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1253. 06:29:30.935 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1254. 06:29:30.936 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1255. 06:29:30.936 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1256. 06:29:30.936 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1257. 06:29:30.936 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1258. 06:29:30.939 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1259. 06:29:30.939 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1260. 06:29:30.939 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1261. 06:29:30.939 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1262. 06:29:31.189 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1263. 06:29:31.196 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1264. 06:29:31.199 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1265. 06:29:31.200 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1266. 06:29:31.200 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1267. 06:29:31.202 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1268. 06:29:31.203 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1269. 06:29:31.203 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1270. 06:29:31.203 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1271. 06:29:31.204 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1272. 06:29:31.212 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1273. 06:29:31.212 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1274. 06:29:31.213 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1275. 06:30:03.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1276. 06:30:10.625 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.code=? and sysremitch0_.valid=? limit ?
  1277. 06:30:10.629 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  1278. 06:30:10.629 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1279. 06:30:10.631 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1280. 06:30:10.631 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1281. 06:30:10.631 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1282. 06:30:10.631 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1283. 06:30:10.633 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [336]
  1284. 06:30:10.634 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1285. 06:30:10.635 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [336]
  1286. 06:30:10.635 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057256]
  1287. 06:30:10.635 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1288. 06:30:10.636 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1289. 06:30:10.636 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1290. 06:30:10.636 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1291. 06:30:10.637 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - insert into finance_withdraw (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, address, agent_id, amount, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, c_id, callback_status, channel_serial, currency, custom_bank_code, custom_id, login, login_type, message, name, operation_type, pay_type, platform, rate, remit_channel_code, remit_channel_currency, remit_channel_en_icon, remit_channel_en_introduce, remit_channel_en_name, remit_channel_icon, remit_channel_introduce, remit_channel_name, remit_channel_request_url, remit_channel_type, serial, swift_code, transform_amount, transform_currency, withdraw_amount, withdraw_currency, withdraw_status, withdraw_ticket) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1292. 06:30:10.643 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1293. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 06:30:10 EET 2026]
  1294. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [336]
  1295. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1296. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1297. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1298. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1299. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1300. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1301. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1302. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1303. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1304. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20091]
  1305. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  1306. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1307. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1308. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [青岛劲松七路支行]
  1309. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6214835466098082]
  1310. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1311. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/336/bank/a4cfca3221c04c7d8435cb77a66b7f2e.jpg]
  1312. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国招商银行-CMB]
  1313. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [钰 舒]
  1314. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500356]
  1315. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  1316. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1317. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1318. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1319. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [336]
  1320. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057256]
  1321. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1322. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1323. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [钰 舒]
  1324. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1325. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1326. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1327. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  1328. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1329. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1330. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1331. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  1332. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1333. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1334. <p style="line-height: 2;"><span style="font-size: 10pt;">3. The exchange rate is based on the RMB exchange rate of the Bank of China to USD&nbsp;</span></p>
  1335. <p style="line-height: 2;"><span style="font-size: 10pt;">4. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  1336. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  1337. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that MIC shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  1338. <p style="line-height: 2;"><span style="font-size: 10pt;">7. MIC reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>
  1339. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">8.&nbsp;Cash out handling fee: the first cash out of each account in the current month is free of handling fee, and the second and above cash out will be charged 5USD each time.</span></span></p>
  1340. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">9.The time limit for accepting the payment is 1-3 working days.</span></span></p>]
  1341. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1342. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1343. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  1344. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1345. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1346. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1347. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1348. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1349. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1350. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1351. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1352. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1353. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1354. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1355. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1356. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602100630103392]
  1357. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1358. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  1359. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1360. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [5000]
  1361. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1362. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  1363. 06:30:10.644 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  1364. 06:30:10.647 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1365. 06:30:10.647 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1366. 06:30:10.648 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1367. 06:30:10.649 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [336]
  1368. 06:30:10.649 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id is null limit ?
  1369. 06:30:10.653 [http-nio-8004-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1770697810653,"addUser":336,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"钰 舒","V_SERIAL_V":"PW202602100630103392","V_DATE_TIME_V":"2026-02-10 06:30:10","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2026-02-10 06:30:10","V_BANK_CARD_NUM_V":"6214835466098082","V_LOGIN_V":"9057256","V_TRANSFORM_AMOUNT_V":"35000.00","V_BANK_BRANCH_NAME_V":"青岛劲松七路支行","V_WITHDRAW_AMOUNT_V":"5000.00","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国招商银行-CMB"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mactor2020@126.com"}
  1370. 06:30:12.733 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1371. 06:30:12.741 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1372. 06:30:12.743 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1373. 06:30:12.744 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1374. 06:30:12.744 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1375. 06:30:12.746 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1376. 06:30:12.747 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1377. 06:30:12.747 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1378. 06:30:12.747 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1379. 06:30:12.748 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1380. 06:30:12.749 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1381. 06:30:12.749 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1382. 06:30:12.749 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1383. 06:35:03.127 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1384. 06:40:03.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1385. 06:45:03.130 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1386. 06:50:03.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1387. 06:55:03.132 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1388. 07:00:03.132 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1389. 07:05:03.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1390. 07:10:03.134 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1391. 07:15:03.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1392. 07:20:03.137 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1393. 07:25:03.139 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1394. 07:30:03.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1395. 07:35:03.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1396. 07:40:03.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1397. 07:45:03.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1398. 07:50:03.146 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1399. 07:55:03.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1400. 08:00:03.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1401. 08:05:03.151 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1402. 08:10:03.153 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1403. 08:15:03.153 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1404. 08:20:03.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1405. 08:25:03.156 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1406. 08:30:03.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1407. 08:35:03.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1408. 08:40:03.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1409. 08:45:03.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1410. 08:50:03.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1411. 08:55:03.163 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1412. 09:00:03.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1413. 09:05:03.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1414. 09:10:03.166 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1415. 09:15:03.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1416. 09:20:03.170 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1417. 09:25:03.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1418. 09:30:03.173 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1419. 09:35:03.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1420. 09:40:03.176 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1421. 09:45:03.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1422. 09:50:03.179 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1423. 09:55:03.180 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1424. 10:00:03.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1425. 10:05:03.183 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1426. 10:10:03.184 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1427. 10:15:03.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1428. 10:20:03.186 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1429. 10:25:03.187 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1430. 10:30:03.188 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1431. 10:35:03.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1432. 10:40:03.191 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1433. 10:45:03.192 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1434. 10:50:03.194 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1435. 10:55:03.196 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1436. 11:00:03.198 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1437. 11:05:03.199 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1438. 11:10:03.201 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1439. 11:15:03.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1440. 11:20:03.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1441. 11:25:03.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1442. 11:30:03.207 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1443. 11:35:03.208 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1444. 11:40:03.209 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1445. 11:45:03.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1446. 11:50:03.212 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1447. 11:55:03.213 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1448. 12:00:03.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1449. 12:05:03.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1450. 12:10:03.217 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1451. 12:15:03.219 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1452. 12:20:03.221 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1453. 12:25:03.222 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1454. 12:30:03.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1455. 12:35:03.225 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1456. 12:40:03.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1457. 12:45:03.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1458. 12:50:03.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1459. 12:55:03.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1460. 13:00:03.234 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1461. 13:05:03.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1462. 13:10:03.236 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1463. 13:15:03.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1464. 13:20:03.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1465. 13:25:03.241 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1466. 13:30:03.242 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1467. 13:35:03.243 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1468. 13:40:03.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1469. 13:45:03.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1470. 13:50:03.247 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1471. 13:55:03.249 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1472. 14:00:03.250 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1473. 14:05:03.251 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1474. 14:10:03.253 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1475. 14:15:03.255 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1476. 14:20:03.256 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1477. 14:25:03.257 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1478. 14:30:03.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1479. 14:35:03.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1480. 14:40:03.261 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1481. 14:45:03.263 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1482. 14:50:03.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1483. 14:55:03.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1484. 14:55:43.986 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1485. 14:55:43.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1486. 14:55:43.995 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1487. 14:55:43.995 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1488. 14:55:43.995 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1489. 14:55:43.996 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1490. 14:55:43.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1491. 14:55:43.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1492. 14:55:43.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1493. 14:55:50.435 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  1494. 14:55:50.439 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1495. 14:55:50.441 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1496. 14:55:50.442 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1497. 14:55:50.442 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1498. 14:55:50.444 [http-nio-8004-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_.id=? limit ?
  1499. 14:55:50.445 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [924]
  1500. 14:55:50.447 [http-nio-8004-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=? limit ?
  1501. 14:55:50.453 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [924]
  1502. 14:55:50.454 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057640]
  1503. 14:55:50.454 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1504. 14:55:50.455 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1505. 14:55:50.455 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1506. 14:55:50.455 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1507. 14:55:50.456 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1508. 14:55:50.457 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1509. 14:55:50.457 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1510. 14:55:50.457 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1511. 14:55:50.457 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1512. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.36.235.206]
  1513. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 14:55:50 EET 2026]
  1514. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [924]
  1515. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1516. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1517. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1518. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1519. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1520. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1521. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1522. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1523. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1524. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1525. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [3000]
  1526. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1527. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1528. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500976]
  1529. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1530. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1531. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1532. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [21600.0000000000]
  1533. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1534. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [924]
  1535. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [3000]
  1536. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1537. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1538. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1539. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Feb 11 00:55:50 EET 2026]
  1540. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1541. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057640]
  1542. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1543. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [国文 温]
  1544. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1545. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1546. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1547. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1548. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1549. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1550. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1551. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1552. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1553. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1554. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1555. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1556. 14:55:50.458 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1557. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1558. "code":"602961",
  1559. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1560. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1561. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1562. }]
  1563. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1564. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602101455508623]
  1565. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [21600.0000000000]
  1566. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1567. 14:55:50.459 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1568. 14:55:50.461 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202602101455508623_9057640,加密字符串为:order_amount=21600&order_id=PD202602101455508623_9057640&order_ip=120.36.235.206&order_time=2026-02-10+14%3A55%3A50&pay_user_name=%E5%9B%BD%E6%96%87%E6%B8%A9&sys_no=602961&user_id=500976469ad7b6cca3036e29f721606999b7fc,加密结果sign:56441ef4fcc697f38b960163f99074f3
  1569. 14:55:50.461 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202602101455508623_9057640","order_amount":"21600","sys_no":"602961","user_id":"500976","order_ip":"120.36.235.206","order_time":"2026-02-10 14:55:50","pay_user_name":"国文温","sign":"56441ef4fcc697f38b960163f99074f3"}
  1570. 14:55:50.578 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"899878476514340864","send_url":"https://syt.hnegca.com/created/?data=7hdvL%2BFcxbyZzvgiq6nGkzBgNxEElViI5mqnRodR17c8SmizQzjpaKrwYX1ff%2B2KgH4z5qNnJUhztZy91y5Sp%2Boc5qmoI1stFJRT76GlRSw%3D","user_id":"205208","order_id":"PD202602101455508623_9057640"},"status":"success"}
  1571. 14:55:50.578 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202602101455508623_9057640,请求url:https://syt.hnegca.com/created/?data=7hdvL%2BFcxbyZzvgiq6nGkzBgNxEElViI5mqnRodR17c8SmizQzjpaKrwYX1ff%2B2KgH4z5qNnJUhztZy91y5Sp%2Boc5qmoI1stFJRT76GlRSw%3D?in_order_id=899878476514340864&user_id=205208
  1572. 14:55:50.578 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  1573. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.36.235.206]
  1574. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 14:55:50 EET 2026]
  1575. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [924]
  1576. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1577. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1578. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1579. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1580. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1581. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1582. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1583. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1584. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1585. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1586. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [3000]
  1587. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1588. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1589. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500976]
  1590. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1591. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1592. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1593. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [21600.0000000000]
  1594. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1595. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [924]
  1596. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [3000]
  1597. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1598. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1599. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1600. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Feb 11 00:55:50 EET 2026]
  1601. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.hnegca.com/created/?data=7hdvL%2BFcxbyZzvgiq6nGkzBgNxEElViI5mqnRodR17c8SmizQzjpaKrwYX1ff%2B2KgH4z5qNnJUhztZy91y5Sp%2Boc5qmoI1stFJRT76GlRSw%3D?in_order_id=899878476514340864&user_id=205208]
  1602. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057640]
  1603. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1604. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [国文 温]
  1605. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1606. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1607. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1608. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1609. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1610. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1611. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1612. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1613. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1614. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1615. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1616. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1617. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1618. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1619. "code":"602961",
  1620. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1621. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1622. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1623. }]
  1624. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1625. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602101455508623]
  1626. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [21600.0000000000]
  1627. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1628. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1629. 14:55:50.582 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7439]
  1630. 14:59:15.718 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202602101455508623_9057640,callback data:{"amount":"21600","bill_no":"PD202602101455508623_9057640","sign":"81dabdf845fd88d948036e2ec822cbb3","sys_no":"602961"}
  1631. 14:59:15.718 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  1632. 14:59:15.722 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1633. 14:59:15.725 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1634. 14:59:15.725 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1635. 14:59:15.725 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1636. 14:59:15.727 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202602101455508623_9057640,signString:PD202602101455508623_9057640230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:81dabdf845fd88d948036e2ec822cbb3
  1637. 14:59:15.727 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  1638. 14:59:15.728 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202602101455508623]
  1639. 14:59:15.879 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1640. 14:59:15.882 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1641. 14:59:15.884 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1642. 14:59:15.885 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [924]
  1643. 14:59:15.887 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1644. 14:59:15.887 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  1645. 14:59:15.889 [http-nio-8004-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1770728355889,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202602101455508623","V_DATE_TIME_V":"2026-02-10 14:59:15","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0125","V_APPLY_TIME_V":"2026-02-10 14:55:50","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202602101455508623_9057640","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-02-10 14:59:15","V_LOGIN_V":"9057640","V_TRANSFORM_AMOUNT_V":"21600.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"3000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  1646. 14:59:15.897 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  1647. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [120.36.235.206]
  1648. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-02-10 14:55:50.0]
  1649. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [924]
  1650. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1651. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue Feb 10 14:59:15 EET 2026]
  1652. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1653. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1654. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1655. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1656. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1657. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1658. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1659. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  1660. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [3000.0000000000]
  1661. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1662. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1663. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500976]
  1664. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1665. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue Feb 10 14:59:15 EET 2026]
  1666. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202602101455508623_9057640]
  1667. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [21600]
  1668. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1669. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [924]
  1670. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [3000.0000000000]
  1671. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1672. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1673. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1674. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-02-11 00:55:50.0]
  1675. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.hnegca.com/created/?data=7hdvL%2BFcxbyZzvgiq6nGkzBgNxEElViI5mqnRodR17c8SmizQzjpaKrwYX1ff%2B2KgH4z5qNnJUhztZy91y5Sp%2Boc5qmoI1stFJRT76GlRSw%3D?in_order_id=899878476514340864&user_id=205208]
  1676. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057640]
  1677. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1678. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [国文 温]
  1679. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1680. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1681. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1682. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1683. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1684. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1685. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1686. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1687. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1688. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1689. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1690. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1691. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1692. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1693. "code":"602961",
  1694. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1695. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1696. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1697. }]
  1698. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1699. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202602101455508623]
  1700. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [21600]
  1701. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1702. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1703. 14:59:15.898 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7439]
  1704. 15:00:03.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1705. 15:05:03.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1706. 15:10:03.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1707. 15:15:03.272 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1708. 15:20:03.273 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1709. 15:25:03.275 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1710. 15:30:03.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1711. 15:35:03.278 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1712. 15:40:03.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1713. 15:45:03.281 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1714. 15:50:03.283 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1715. 15:55:03.283 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1716. 16:00:03.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1717. 16:05:03.285 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1718. 16:10:03.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1719. 16:15:03.288 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1720. 16:20:03.290 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1721. 16:25:03.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1722. 16:30:03.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1723. 16:35:03.294 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1724. 16:40:03.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1725. 16:45:03.297 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1726. 16:50:03.299 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1727. 16:55:03.301 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1728. 17:00:03.301 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1729. 17:05:03.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1730. 17:07:21.721 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1731. 17:07:21.727 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1732. 17:07:21.727 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1733. 17:09:23.155 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1734. 17:09:23.159 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1735. 17:09:23.159 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1736. 17:09:27.779 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1737. 17:09:27.782 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1738. 17:09:27.782 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1739. 17:10:03.303 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1740. 17:10:06.614 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1741. 17:10:06.617 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1742. 17:10:06.618 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1743. 17:15:03.304 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1744. 17:20:03.305 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1745. 17:25:03.307 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1746. 17:30:03.309 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1747. 17:35:03.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1748. 17:40:03.311 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1749. 17:45:03.312 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1750. 17:50:03.313 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1751. 17:55:03.315 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1752. 18:00:03.317 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1753. 18:05:03.318 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1754. 18:10:03.319 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1755. 18:15:03.321 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1756. 18:20:03.322 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1757. 18:25:03.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1758. 18:30:03.326 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1759. 18:35:03.328 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1760. 18:40:03.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1761. 18:45:03.330 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1762. 18:50:03.332 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1763. 18:55:03.333 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1764. 19:00:03.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1765. 19:05:03.336 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1766. 19:10:03.337 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1767. 19:15:03.339 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1768. 19:20:03.341 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1769. 19:25:03.341 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1770. 19:30:03.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1771. 19:35:03.344 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1772. 19:40:03.346 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1773. 19:45:03.347 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1774. 19:50:03.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1775. 19:55:03.349 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1776. 20:00:03.350 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1777. 20:05:03.351 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1778. 20:10:03.353 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1779. 20:15:03.355 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1780. 20:20:03.357 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1781. 20:25:03.359 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1782. 20:30:03.360 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1783. 20:35:03.362 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1784. 20:40:03.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1785. 20:45:03.365 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1786. 20:50:03.367 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1787. 20:55:03.367 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1788. 21:00:03.369 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1789. 21:05:03.369 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1790. 21:10:03.371 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1791. 21:15:03.372 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1792. 21:20:03.373 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1793. 21:25:03.375 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1794. 21:30:03.376 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1795. 21:30:44.505 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1796. 21:30:44.512 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1797. 21:30:44.514 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1798. 21:30:44.514 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1799. 21:30:44.514 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1800. 21:30:44.515 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1801. 21:30:44.515 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1802. 21:30:44.515 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1803. 21:30:44.515 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1804. 21:30:44.516 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1805. 21:30:44.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1806. 21:30:44.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1807. 21:30:44.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1808. 21:30:44.617 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1809. 21:30:44.621 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1810. 21:30:44.623 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1811. 21:30:44.623 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1812. 21:30:44.624 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1813. 21:30:44.625 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1814. 21:30:44.626 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1815. 21:30:44.626 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1816. 21:30:44.626 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1817. 21:30:44.627 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1818. 21:30:44.627 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1819. 21:30:44.627 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1820. 21:30:44.627 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1821. 21:31:03.065 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.code=? and sysremitch0_.valid=? limit ?
  1822. 21:31:03.069 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  1823. 21:31:03.069 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1824. 21:31:03.071 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1825. 21:31:03.072 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1826. 21:31:03.072 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1827. 21:31:03.072 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1828. 21:31:03.073 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  1829. 21:31:03.075 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1830. 21:31:03.076 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  1831. 21:31:03.076 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057660]
  1832. 21:31:03.076 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1833. 21:31:03.077 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1834. 21:31:03.077 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1835. 21:31:03.077 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1836. 21:31:03.078 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custombank0_.id as id1_25_, custombank0_.add_ip as add_ip2_25_, custombank0_.add_time as add_time3_25_, custombank0_.add_user as add_user4_25_, custombank0_.modify_ip as modify_i5_25_, custombank0_.modify_time as modify_t6_25_, custombank0_.modify_user as modify_u7_25_, custombank0_.note as note8_25_, custombank0_.bank_addr as bank_add9_25_, custombank0_.bank_back as bank_ba10_25_, custombank0_.bank_branch_name as bank_br11_25_, custombank0_.bank_card_num as bank_ca12_25_, custombank0_.bank_code as bank_co13_25_, custombank0_.bank_front as bank_fr14_25_, custombank0_.bank_name as bank_na15_25_, custombank0_.bank_uname as bank_un16_25_, custombank0_.custom_id as custom_17_25_, custombank0_.default_bank as default18_25_, custombank0_.swift_code as swift_c19_25_, custombank0_.type as type20_25_ from custom_bank custombank0_ where custombank0_.custom_id=? and custombank0_.default_bank=?
  1837. 21:31:03.084 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  1838. 21:31:03.084 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1839. 21:31:03.093 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - insert into custom_bank (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, custom_id, default_bank, swift_code, type) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1840. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1841. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 21:31:03 EET 2026]
  1842. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  1843. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1844. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1845. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1846. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1847. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1848. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1849. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [中国建设银行股份有限公司天津滨海中关村科技支行]
  1850. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6217000066041156287]
  1851. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1852. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [/file/950/bank/7f227af4b4ca441b91ded1e69433be26.jpeg]
  1853. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国建设银行-CBC]
  1854. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [罗 松]
  1855. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [950]
  1856. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [1]
  1857. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  1858. 21:31:03.095 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [null]
  1859. 21:31:03.097 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - insert into finance_withdraw (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, address, agent_id, amount, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, c_id, callback_status, channel_serial, currency, custom_bank_code, custom_id, login, login_type, message, name, operation_type, pay_type, platform, rate, remit_channel_code, remit_channel_currency, remit_channel_en_icon, remit_channel_en_introduce, remit_channel_en_name, remit_channel_icon, remit_channel_introduce, remit_channel_name, remit_channel_request_url, remit_channel_type, serial, swift_code, transform_amount, transform_currency, withdraw_amount, withdraw_currency, withdraw_status, withdraw_ticket) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1860. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1861. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue Feb 10 21:31:03 EET 2026]
  1862. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  1863. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1864. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1865. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1866. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1867. 21:31:03.097 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1868. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1869. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1870. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1871. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1872. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1873. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1553]
  1874. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1875. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1876. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [中国建设银行股份有限公司天津滨海中关村科技支行]
  1877. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6217000066041156287]
  1878. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1879. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/950/bank/7f227af4b4ca441b91ded1e69433be26.jpeg]
  1880. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国建设银行-CBC]
  1881. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [罗 松]
  1882. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [501003]
  1883. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  1884. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1885. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1886. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1887. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [950]
  1888. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057660]
  1889. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1890. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1891. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [罗 松]
  1892. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1893. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1894. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1895. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  1896. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1897. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1898. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1899. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  1900. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1901. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1902. <p style="line-height: 2;"><span style="font-size: 10pt;">3. The exchange rate is based on the RMB exchange rate of the Bank of China to USD&nbsp;</span></p>
  1903. <p style="line-height: 2;"><span style="font-size: 10pt;">4. Please keep your anti-virus software up to date. Please ensure your computer is virus-free before using any withdrawal method.</span></p>
  1904. <p style="line-height: 2;"><span style="font-size: 10pt;">5. By using the service, users agree and understand that there may be failures, delays and / or interruptions in the online payment system.</span></p>
  1905. <p style="line-height: 2;"><span style="font-size: 10pt;">6. Users using the service accept that MIC shall not be liable for any delay, failure and / or interruption of the payment system and / or delay, failure and / or interruption of the payment system under any circumstances.</span></p>
  1906. <p style="line-height: 2;"><span style="font-size: 10pt;">7. MIC reserves the right to request additional documents and / or refuse any withdrawal in order to protect customers' assets and payment problems.</span></p>
  1907. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">8.&nbsp;Cash out handling fee: the first cash out of each account in the current month is free of handling fee, and the second and above cash out will be charged 5USD each time.</span></span></p>
  1908. <p style="line-height: 2;"><span style="font-size: 10pt;"><span style="font-size: 13.3333px;">9.The time limit for accepting the payment is 1-3 working days.</span></span></p>]
  1909. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1910. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1911. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  1912. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1913. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1914. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1915. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1916. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1917. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1918. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1919. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1920. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1921. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1922. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1923. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1924. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202602102131031781]
  1925. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1926. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [10871.0000000000]
  1927. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1928. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [1553]
  1929. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1930. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  1931. 21:31:03.098 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  1932. 21:31:03.100 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  1933. 21:31:03.100 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1934. 21:31:03.101 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1935. 21:31:03.102 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  1936. 21:31:03.102 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id is null limit ?
  1937. 21:31:03.106 [http-nio-8004-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1770751863106,"addUser":950,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"罗 松","V_SERIAL_V":"PW202602102131031781","V_DATE_TIME_V":"2026-02-10 21:31:03","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2026-02-10 21:31:03","V_BANK_CARD_NUM_V":"6217000066041156287","V_LOGIN_V":"9057660","V_TRANSFORM_AMOUNT_V":"10871.00","V_BANK_BRANCH_NAME_V":"中国建设银行股份有限公司天津滨海中关村科技支行","V_WITHDRAW_AMOUNT_V":"1553.00","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国建设银行-CBC"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mactor2020@126.com"}
  1938. 21:31:03.114 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - update custom_bank set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, bank_addr=?, bank_back=?, bank_branch_name=?, bank_card_num=?, bank_code=?, bank_front=?, bank_name=?, bank_uname=?, custom_id=?, default_bank=?, swift_code=?, type=? where id=?
  1939. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [116.130.27.128]
  1940. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-01-16 07:45:12.0]
  1941. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  1942. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1943. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1944. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1945. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1946. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1947. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [VARCHAR] - [null]
  1948. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [VARCHAR] - [中国建设银行股份有限公司天津滨海中关村科技支行]
  1949. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [VARCHAR] - [6217000066041156287]
  1950. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1951. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [VARCHAR] - [/file/950/bank/7f227af4b4ca441b91ded1e69433be26.jpeg]
  1952. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [VARCHAR] - [中国建设银行-CBC]
  1953. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [罗 松]
  1954. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [BIGINT] - [950]
  1955. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [INTEGER] - [0]
  1956. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [null]
  1957. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [INTEGER] - [1]
  1958. 21:31:03.114 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [BIGINT] - [1254]
  1959. 21:31:05.999 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1960. 21:31:06.007 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1961. 21:31:06.009 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1962. 21:31:06.010 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1963. 21:31:06.010 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1964. 21:31:06.010 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1965. 21:31:06.011 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1966. 21:31:06.011 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1967. 21:31:06.011 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1968. 21:31:06.013 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1969. 21:31:06.014 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1970. 21:31:06.014 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1971. 21:31:06.014 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1972. 21:31:14.372 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1973. 21:31:14.376 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1974. 21:31:14.378 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1975. 21:31:14.378 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1976. 21:31:14.378 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1977. 21:31:14.379 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1978. 21:31:14.379 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1979. 21:31:14.379 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1980. 21:31:14.379 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1981. 21:31:14.380 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1982. 21:31:14.381 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1983. 21:31:14.381 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1984. 21:31:14.381 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1985. 21:35:03.377 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1986. 21:40:03.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1987. 21:45:03.379 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1988. 21:50:03.381 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1989. 21:55:03.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1990. 22:00:03.384 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1991. 22:05:03.385 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1992. 22:10:03.386 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1993. 22:15:03.388 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1994. 22:20:03.390 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1995. 22:25:03.391 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1996. 22:30:03.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1997. 22:35:03.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1998. 22:40:03.395 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1999. 22:45:03.396 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2000. 22:50:03.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2001. 22:55:03.400 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2002. 23:00:03.402 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2003. 23:05:03.403 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2004. 23:10:03.404 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2005. 23:15:03.405 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2006. 23:20:03.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2007. 23:25:03.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2008. 23:30:03.410 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2009. 23:35:03.412 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2010. 23:40:03.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2011. 23:45:03.415 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2012. 23:50:03.417 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2013. 23:55:03.418 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration