logback.2026-04-29.log 418 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. 00:01:47.446 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:06:47.449 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:11:47.450 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:16:47.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:21:47.453 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:26:47.455 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:31:47.456 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:36:47.458 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:41:47.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:46:47.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:51:47.461 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:56:47.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:01:47.464 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:06:47.466 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:11:47.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:16:47.470 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:21:47.471 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:26:47.472 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:31:47.473 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:36:47.475 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:41:47.476 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:46:47.478 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:51:47.480 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:56:47.481 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:01:47.482 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:06:47.483 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:11:47.485 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:16:47.487 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:16:56.229 [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
  30. 02:16:56.236 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  31. 02:16:56.239 [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 (? , ?)
  32. 02:16:56.240 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  33. 02:16:56.240 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  34. 02:16:56.241 [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
  35. 02:16:56.241 [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=?
  36. 02:16:56.243 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  37. 02:16:56.243 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  38. 02:16:56.243 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  39. 02:16:56.247 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  40. 02:16:56.249 [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 (? , ?)
  41. 02:16:56.250 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  42. 02:16:56.250 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  43. 02:16:56.250 [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=?
  44. 02:16:56.251 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  45. 02:16:56.251 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  46. 02:16:56.251 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  47. 02:17:05.285 [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 ?
  48. 02:17:05.286 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  49. 02:17:05.288 [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 (? , ?)
  50. 02:17:05.289 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  51. 02:17:05.289 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  52. 02:17:05.294 [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 ?
  53. 02:17:05.296 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [383]
  54. 02:17:05.297 [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 ?
  55. 02:17:05.298 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [383]
  56. 02:17:05.298 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057045]
  57. 02:17:05.298 [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=?
  58. 02:17:05.299 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  59. 02:17:05.299 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  60. 02:17:05.299 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  61. 02:17:05.300 [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=?
  62. 02:17:05.300 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  63. 02:17:05.301 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  64. 02:17:05.301 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  65. 02:17:05.301 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  66. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.163.141.99]
  67. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 02:17:05 EEST 2026]
  68. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [383]
  69. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  70. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  71. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  72. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  73. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  74. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  75. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  76. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  77. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  78. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20114]
  79. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  80. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  81. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  82. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500403]
  83. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  84. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  85. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  86. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  87. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  88. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [383]
  89. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  90. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  91. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  92. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  93. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 12:17:05 EEST 2026]
  94. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  95. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057045]
  96. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  97. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [津林 史]
  98. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  99. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  100. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  101. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  102. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  103. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  104. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  105. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  106. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  107. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  108. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  109. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  110. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  111. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  112. "code":"602961",
  113. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  114. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  115. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  116. }]
  117. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  118. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290217058059]
  119. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  120. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  121. 02:17:05.302 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  122. 02:17:05.305 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604290217058059_9057045,加密字符串为:order_amount=3500&order_id=PD202604290217058059_9057045&order_ip=111.163.141.99&order_time=2026-04-29+02%3A17%3A05&pay_user_name=%E6%B4%A5%E6%9E%97%E5%8F%B2&sys_no=602961&user_id=500403469ad7b6cca3036e29f721606999b7fc,加密结果sign:00fbd014405644b9d2b86f1f00d89fe3
  123. 02:17:05.305 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604290217058059_9057045","order_amount":"3500","sys_no":"602961","user_id":"500403","order_ip":"111.163.141.99","order_time":"2026-04-29 02:17:05","pay_user_name":"津林史","sign":"00fbd014405644b9d2b86f1f00d89fe3"}
  124. 02:17:05.489 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"927938943774130176","send_url":"https://syt.ymkjmall.com/created/?data=P2svWD%2BNMIrT2I20xCwQrjcsJASK4sJeiNzlVamUUTe4LLhhbzsJS1laCE02RoN77fe7ZW61%2BnOr7DcwCPLwFxAR90hkginp57FSR2uheTU%3D","user_id":"205208","order_id":"PD202604290217058059_9057045"},"status":"success"}
  125. 02:17:05.489 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604290217058059_9057045,请求url:https://syt.ymkjmall.com/created/?data=P2svWD%2BNMIrT2I20xCwQrjcsJASK4sJeiNzlVamUUTe4LLhhbzsJS1laCE02RoN77fe7ZW61%2BnOr7DcwCPLwFxAR90hkginp57FSR2uheTU%3D?in_order_id=927938943774130176&user_id=205208
  126. 02:17:05.489 [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=?
  127. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.163.141.99]
  128. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 02:17:05 EEST 2026]
  129. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [383]
  130. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  131. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  132. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  133. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  134. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  135. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  136. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  137. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  138. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  139. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20114]
  140. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  141. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  142. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  143. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500403]
  144. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  145. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  146. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  147. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  148. 02:17:05.490 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  149. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [383]
  150. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  151. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  152. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  153. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  154. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 12:17:05 EEST 2026]
  155. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=P2svWD%2BNMIrT2I20xCwQrjcsJASK4sJeiNzlVamUUTe4LLhhbzsJS1laCE02RoN77fe7ZW61%2BnOr7DcwCPLwFxAR90hkginp57FSR2uheTU%3D?in_order_id=927938943774130176&user_id=205208]
  156. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057045]
  157. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  158. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [津林 史]
  159. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  160. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  161. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  162. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  163. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  164. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  165. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  166. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  167. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  168. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  169. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  170. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  171. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  172. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  173. "code":"602961",
  174. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  175. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  176. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  177. }]
  178. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  179. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290217058059]
  180. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  181. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  182. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  183. 02:17:05.491 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7794]
  184. 02:21:47.489 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  185. 02:26:47.490 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  186. 02:29:19.649 [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 (? , ?)
  187. 02:29:19.650 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  188. 02:29:19.650 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  189. 02:31:47.491 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  190. 02:36:47.493 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  191. 02:41:47.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  192. 02:42:28.413 [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_.valid=? order by sysremitta0_.sub_index asc
  193. 02:42:28.415 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  194. 02:42:28.416 [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 (? , ?)
  195. 02:42:28.416 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  196. 02:42:28.417 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  197. 02:42:28.417 [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=?
  198. 02:42:28.417 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  199. 02:42:28.417 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  200. 02:42:28.417 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  201. 02:42:28.419 [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
  202. 02:42:28.420 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  203. 02:42:28.421 [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 (? , ?)
  204. 02:42:28.422 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  205. 02:42:28.422 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  206. 02:42:28.422 [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=?
  207. 02:42:28.422 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  208. 02:42:28.422 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  209. 02:42:28.422 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  210. 02:46:47.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  211. 02:51:47.497 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  212. 02:56:47.498 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  213. 03:01:47.499 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  214. 03:06:47.501 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  215. 03:11:47.503 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  216. 03:16:47.504 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  217. 03:21:47.505 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  218. 03:26:47.506 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  219. 03:27:50.411 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202604290217058059_9057045,callback data:{"bill_no":"PD202604290217058059_9057045","bill_status":"2","sign":"7086e4f17fa5d70acb57a02e9b54aa34","sys_no":"602961"}
  220. 03:27:50.412 [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 ?
  221. 03:27:50.413 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  222. 03:27:50.414 [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 (? , ?)
  223. 03:27:50.415 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  224. 03:27:50.415 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  225. 03:27:50.415 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202604290217058059_9057045,signString:bill_no=PD202604290217058059_9057045&bill_status=2&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:7086e4f17fa5d70acb57a02e9b54aa34
  226. 03:27:50.416 [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
  227. 03:27:50.417 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604290217058059]
  228. 03:27:50.579 [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=?
  229. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.163.141.99]
  230. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 02:17:05.0]
  231. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [383]
  232. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  233. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 03:27:50 EEST 2026]
  234. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  235. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  236. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  237. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  238. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  239. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  240. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  241. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20114]
  242. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  243. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  244. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  245. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500403]
  246. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  247. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 03:27:50 EEST 2026]
  248. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604290217058059_9057045]
  249. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  250. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  251. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [383]
  252. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  253. 03:27:50.580 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  254. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  255. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  256. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-29 12:17:05.0]
  257. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=P2svWD%2BNMIrT2I20xCwQrjcsJASK4sJeiNzlVamUUTe4LLhhbzsJS1laCE02RoN77fe7ZW61%2BnOr7DcwCPLwFxAR90hkginp57FSR2uheTU%3D?in_order_id=927938943774130176&user_id=205208]
  258. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057045]
  259. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  260. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [津林 史]
  261. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  262. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  263. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  264. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  265. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  266. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  267. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  268. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  269. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  270. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  271. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  272. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  273. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  274. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  275. "code":"602961",
  276. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  277. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  278. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  279. }]
  280. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  281. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290217058059]
  282. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  283. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  284. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  285. 03:27:50.581 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7794]
  286. 03:30:42.621 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202604290217058059_9057045,callback data:{"amount":"3500","bill_no":"PD202604290217058059_9057045","sign":"e543c2bba03391962581fb5cfa3b634d","sys_no":"602961"}
  287. 03:30:42.621 [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 ?
  288. 03:30:42.622 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  289. 03:30:42.624 [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 (? , ?)
  290. 03:30:42.624 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  291. 03:30:42.624 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  292. 03:30:42.626 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202604290217058059_9057045,signString:PD202604290217058059_9057045230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:e543c2bba03391962581fb5cfa3b634d
  293. 03:30:42.626 [http-nio-8004-exec-1] 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
  294. 03:30:42.628 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604290217058059]
  295. 03:30:42.784 [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=?
  296. 03:30:42.785 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  297. 03:30:42.786 [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 ?
  298. 03:30:42.788 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [383]
  299. 03:30:42.789 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  300. 03:30:42.790 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20114]
  301. 03:30:42.791 [http-nio-8004-exec-1] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1777422642791,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202604290217058059","V_DATE_TIME_V":"2026-04-29 03:30:42","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"002","V_APPLY_TIME_V":"2026-04-29 02:17:05","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202604290217058059_9057045","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-04-29 03:30:42","V_LOGIN_V":"9057045","V_TRANSFORM_AMOUNT_V":"3500.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"}
  302. 03:30:42.819 [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=?
  303. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.163.141.99]
  304. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 02:17:05.0]
  305. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [383]
  306. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  307. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 03:30:42 EEST 2026]
  308. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  309. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  310. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  311. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  312. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  313. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  314. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  315. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20114]
  316. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  317. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  318. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  319. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500403]
  320. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  321. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 03:30:42 EEST 2026]
  322. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604290217058059_9057045]
  323. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  324. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  325. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [383]
  326. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  327. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  328. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  329. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  330. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-29 12:17:05.0]
  331. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=P2svWD%2BNMIrT2I20xCwQrjcsJASK4sJeiNzlVamUUTe4LLhhbzsJS1laCE02RoN77fe7ZW61%2BnOr7DcwCPLwFxAR90hkginp57FSR2uheTU%3D?in_order_id=927938943774130176&user_id=205208]
  332. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057045]
  333. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  334. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [津林 史]
  335. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  336. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  337. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  338. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  339. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  340. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  341. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  342. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  343. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  344. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  345. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  346. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  347. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  348. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  349. "code":"602961",
  350. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  351. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  352. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  353. }]
  354. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  355. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290217058059]
  356. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  357. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  358. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  359. 03:30:42.820 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7794]
  360. 03:31:47.508 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  361. 03:36:47.509 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  362. 03:41:47.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  363. 03:46:47.513 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  364. 03:51:47.515 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  365. 03:56:47.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  366. 04:01:47.517 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  367. 04:06:47.518 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  368. 04:11:47.519 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  369. 04:16:47.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  370. 04:21:47.522 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  371. 04:26:47.524 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  372. 04:31:47.525 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  373. 04:36:47.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  374. 04:41:47.528 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  375. 04:46:47.530 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  376. 04:51:47.532 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  377. 04:56:47.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  378. 05:01:47.534 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  379. 05:06:47.535 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  380. 05:11:47.537 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  381. 05:16:47.538 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  382. 05:21:47.540 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  383. 05:23:28.104 [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
  384. 05:23:28.111 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  385. 05:23:28.114 [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 (? , ?)
  386. 05:23:28.114 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  387. 05:23:28.114 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  388. 05:23:28.115 [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=?
  389. 05:23:28.116 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  390. 05:23:28.116 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  391. 05:23:28.116 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  392. 05:24:22.785 [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 ?
  393. 05:24:22.786 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  394. 05:24:22.789 [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 (? , ?)
  395. 05:24:22.789 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  396. 05:24:22.789 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  397. 05:24:22.793 [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 ?
  398. 05:24:22.794 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  399. 05:24:22.796 [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 ?
  400. 05:24:22.797 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  401. 05:24:22.797 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057446]
  402. 05:24:22.797 [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=?
  403. 05:24:22.798 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  404. 05:24:22.798 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  405. 05:24:22.798 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  406. 05:24:22.799 [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=?
  407. 05:24:22.799 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  408. 05:24:22.800 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  409. 05:24:22.800 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  410. 05:24:22.800 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  411. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  412. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 05:24:22 EEST 2026]
  413. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  414. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  415. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  416. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  417. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  418. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  419. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  420. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  421. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  422. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  423. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  424. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2567]
  425. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  426. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  427. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500956]
  428. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  429. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  430. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  431. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [17969.0000000000]
  432. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  433. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [906]
  434. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2567]
  435. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  436. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  437. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  438. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 15:24:22 EEST 2026]
  439. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  440. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057446]
  441. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  442. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [友亮 黄]
  443. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  444. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  445. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  446. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  447. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  448. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  449. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  450. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  451. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  452. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  453. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  454. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  455. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  456. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  457. "code":"602961",
  458. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  459. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  460. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  461. }]
  462. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  463. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290524222143]
  464. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [17969.0000000000]
  465. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  466. 05:24:22.801 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  467. 05:24:22.803 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604290524222143_9057446,加密字符串为:order_amount=17969&order_id=PD202604290524222143_9057446&order_ip=154.12.178.16&order_time=2026-04-29+05%3A24%3A22&pay_user_name=%E5%8F%8B%E4%BA%AE%E9%BB%84&sys_no=602961&user_id=500956469ad7b6cca3036e29f721606999b7fc,加密结果sign:5075100e3b1a7affb26f5dd19b1253d1
  468. 05:24:22.803 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604290524222143_9057446","order_amount":"17969","sys_no":"602961","user_id":"500956","order_ip":"154.12.178.16","order_time":"2026-04-29 05:24:22","pay_user_name":"友亮黄","sign":"5075100e3b1a7affb26f5dd19b1253d1"}
  469. 05:24:22.974 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"927986079224070144","send_url":"https://syt.ymkjmall.com/created/?data=GDtR6Nok3Jm%2BuMHlCYcDaJ8%2FIw6PSFogHJdZNXwd7LochKzeGYFh4SorMUjzmgWoMSuPsHnxwFu2xIVzxHewMajy7RunFRYx%2FI%2BV8SGpWv4%3D","user_id":"205208","order_id":"PD202604290524222143_9057446"},"status":"success"}
  470. 05:24:22.974 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604290524222143_9057446,请求url:https://syt.ymkjmall.com/created/?data=GDtR6Nok3Jm%2BuMHlCYcDaJ8%2FIw6PSFogHJdZNXwd7LochKzeGYFh4SorMUjzmgWoMSuPsHnxwFu2xIVzxHewMajy7RunFRYx%2FI%2BV8SGpWv4%3D?in_order_id=927986079224070144&user_id=205208
  471. 05:24:22.975 [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=?
  472. 05:24:22.975 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  473. 05:24:22.975 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 05:24:22 EEST 2026]
  474. 05:24:22.975 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  475. 05:24:22.975 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  476. 05:24:22.975 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  477. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  478. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  479. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  480. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  481. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  482. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  483. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  484. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  485. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2567]
  486. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  487. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  488. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500956]
  489. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  490. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  491. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  492. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [17969.0000000000]
  493. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  494. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [906]
  495. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2567]
  496. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  497. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  498. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  499. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 15:24:22 EEST 2026]
  500. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=GDtR6Nok3Jm%2BuMHlCYcDaJ8%2FIw6PSFogHJdZNXwd7LochKzeGYFh4SorMUjzmgWoMSuPsHnxwFu2xIVzxHewMajy7RunFRYx%2FI%2BV8SGpWv4%3D?in_order_id=927986079224070144&user_id=205208]
  501. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057446]
  502. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  503. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [友亮 黄]
  504. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  505. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  506. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  507. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  508. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  509. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  510. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  511. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  512. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  513. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  514. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  515. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  516. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  517. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  518. "code":"602961",
  519. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  520. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  521. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  522. }]
  523. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  524. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290524222143]
  525. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [17969.0000000000]
  526. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  527. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  528. 05:24:22.976 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7795]
  529. 05:26:47.541 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  530. 05:27:47.090 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202604290524222143_9057446,callback data:{"amount":"17969","bill_no":"PD202604290524222143_9057446","sign":"de51f0b8d1c3ff55f04664a5eb31b4c8","sys_no":"602961"}
  531. 05:27:47.090 [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 ?
  532. 05:27:47.091 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  533. 05:27:47.093 [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 (? , ?)
  534. 05:27:47.093 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  535. 05:27:47.093 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  536. 05:27:47.095 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202604290524222143_9057446,signString:PD202604290524222143_9057446230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:de51f0b8d1c3ff55f04664a5eb31b4c8
  537. 05:27:47.095 [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
  538. 05:27:47.096 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604290524222143]
  539. 05:27:47.288 [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=?
  540. 05:27:47.288 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  541. 05:27:47.290 [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 ?
  542. 05:27:47.291 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [906]
  543. 05:27:47.293 [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 ?
  544. 05:27:47.294 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  545. 05:27:47.295 [http-nio-8004-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1777429667295,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202604290524222143","V_DATE_TIME_V":"2026-04-29 05:27:47","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_APPLY_TIME_V":"2026-04-29 05:24:23","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202604290524222143_9057446","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-04-29 05:27:47","V_LOGIN_V":"9057446","V_TRANSFORM_AMOUNT_V":"17969.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"2567.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  546. 05:27:47.301 [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=?
  547. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  548. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 05:24:23.0]
  549. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [906]
  550. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  551. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 05:27:47 EEST 2026]
  552. 05:27:47.301 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  553. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  554. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  555. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  556. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  557. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  558. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  559. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  560. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2567.0000000000]
  561. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  562. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  563. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500956]
  564. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  565. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 05:27:47 EEST 2026]
  566. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604290524222143_9057446]
  567. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [17969]
  568. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  569. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [906]
  570. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2567.0000000000]
  571. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  572. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  573. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  574. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-29 15:24:23.0]
  575. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=GDtR6Nok3Jm%2BuMHlCYcDaJ8%2FIw6PSFogHJdZNXwd7LochKzeGYFh4SorMUjzmgWoMSuPsHnxwFu2xIVzxHewMajy7RunFRYx%2FI%2BV8SGpWv4%3D?in_order_id=927986079224070144&user_id=205208]
  576. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057446]
  577. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  578. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [友亮 黄]
  579. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  580. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  581. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  582. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  583. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  584. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  585. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  586. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  587. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  588. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  589. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  590. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  591. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  592. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  593. "code":"602961",
  594. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  595. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  596. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  597. }]
  598. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  599. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604290524222143]
  600. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [17969]
  601. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  602. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  603. 05:27:47.302 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7795]
  604. 05:31:47.543 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  605. 05:36:47.544 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  606. 05:41:47.546 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  607. 05:46:47.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  608. 05:51:47.549 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  609. 05:56:47.550 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  610. 06:01:47.551 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  611. 06:06:47.552 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  612. 06:11:47.554 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  613. 06:16:47.555 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  614. 06:21:47.556 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  615. 06:26:47.558 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  616. 06:31:47.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  617. 06:36:47.561 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  618. 06:41:47.562 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  619. 06:46:47.564 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  620. 06:51:47.566 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  621. 06:56:47.567 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  622. 07:01:47.569 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  623. 07:06:47.570 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  624. 07:11:47.572 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  625. 07:16:47.573 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  626. 07:21:47.575 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  627. 07:26:47.577 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  628. 07:31:47.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  629. 07:36:47.580 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  630. 07:41:47.581 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  631. 07:46:47.583 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  632. 07:51:47.585 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  633. 07:56:47.586 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  634. 08:01:47.587 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  635. 08:06:47.588 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  636. 08:11:47.589 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  637. 08:15:44.347 [http-nio-8004-exec-11] 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
  638. 08:15:44.349 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2027]
  639. 08:15:44.351 [http-nio-8004-exec-11] 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=?
  640. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  641. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-28 03:40:34.0]
  642. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [966]
  643. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  644. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 08:15:44 EEST 2026]
  645. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  646. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  647. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  648. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-04-28 03:40:35.0]
  649. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  650. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  651. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  652. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  653. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [100.0000000000]
  654. 08:15:44.352 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  655. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  656. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [交通银行天津南开大学海河教育园校区支行]
  657. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6222621210010452140]
  658. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  659. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - []
  660. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国交通银行-CTB]
  661. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [坤 刘]
  662. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [501019]
  663. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  664. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  665. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  666. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  667. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [966]
  668. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057678]
  669. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  670. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  671. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [坤 刘]
  672. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  673. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  674. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  675. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  676. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  677. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  678. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  679. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  680. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  681. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  682. <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>
  683. <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>
  684. <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>
  685. <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>
  686. <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>
  687. <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>
  688. <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>]
  689. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  690. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  691. 08:15:44.353 [http-nio-8004-exec-11] 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>
  692. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  693. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  694. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  695. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  696. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  697. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  698. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  699. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  700. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  701. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  702. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  703. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  704. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202604280340344109]
  705. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  706. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [680.0000000000]
  707. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  708. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [100.0000000000]
  709. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  710. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  711. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [76611791]
  712. 08:15:44.353 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [2027]
  713. 08:16:21.945 [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
  714. 08:16:21.948 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2028]
  715. 08:16:21.950 [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=?
  716. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [221.198.112.103]
  717. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-28 08:18:30.0]
  718. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [688]
  719. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  720. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 08:16:21 EEST 2026]
  721. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  722. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  723. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  724. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-04-28 08:18:31.0]
  725. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  726. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  727. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  728. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  729. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [4000.0000000000]
  730. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  731. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  732. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [中国银行承德市新华支行]
  733. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6217855000059808311]
  734. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  735. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/688/bank/97534986d74c4fecb024155882e24282.jpg]
  736. 08:16:21.951 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国银行-BC]
  737. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [红玲 陶]
  738. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500727]
  739. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  740. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  741. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  742. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  743. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [688]
  744. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057348]
  745. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  746. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  747. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [红玲 陶]
  748. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  749. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  750. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  751. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  752. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  753. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  754. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  755. 08:16:21.952 [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>
  756. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  757. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  758. <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>
  759. <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>
  760. <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>
  761. <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>
  762. <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>
  763. <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>
  764. <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>]
  765. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  766. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  767. 08:16:21.952 [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>
  768. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  769. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  770. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  771. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  772. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  773. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  774. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  775. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  776. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  777. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  778. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  779. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  780. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202604280818308988]
  781. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  782. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [27200.0000000000]
  783. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  784. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [4000.0000000000]
  785. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  786. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  787. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [76616467]
  788. 08:16:21.952 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [2028]
  789. 08:16:47.591 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  790. 08:17:03.816 [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
  791. 08:17:03.818 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2030]
  792. 08:17:03.820 [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=?
  793. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.48.83.51]
  794. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-28 08:34:59.0]
  795. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [924]
  796. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  797. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 08:17:03 EEST 2026]
  798. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  799. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  800. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  801. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-04-28 08:35:01.0]
  802. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  803. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  804. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  805. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  806. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1542.5400000000]
  807. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  808. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  809. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [交通银行厦门开元支行]
  810. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6222620790012055943]
  811. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  812. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/924/bank/1d6db5e0670f4d70ba236a0b92d99bc1.jpg]
  813. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国交通银行-CTB]
  814. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [国文 温]
  815. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500976]
  816. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  817. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  818. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  819. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  820. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [924]
  821. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057640]
  822. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  823. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  824. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [国文 温]
  825. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  826. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  827. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  828. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  829. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  830. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  831. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  832. 08:17:03.821 [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>
  833. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  834. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  835. <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>
  836. <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>
  837. <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>
  838. <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>
  839. <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>
  840. <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>
  841. <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>]
  842. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  843. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  844. 08:17:03.821 [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>
  845. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  846. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  847. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  848. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  849. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  850. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  851. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  852. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  853. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  854. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  855. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  856. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  857. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202604280834597155]
  858. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  859. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [10489.2720000000]
  860. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  861. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [1542.5400000000]
  862. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  863. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  864. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [76617107]
  865. 08:17:03.821 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [2030]
  866. 08:21:47.592 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  867. 08:26:47.593 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  868. 08:31:47.594 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  869. 08:36:47.596 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  870. 08:41:47.597 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  871. 08:46:47.599 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  872. 08:51:47.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  873. 08:56:47.602 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  874. 09:01:47.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  875. 09:06:47.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  876. 09:11:47.606 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  877. 09:16:47.607 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  878. 09:21:47.608 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  879. 09:26:47.610 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  880. 09:31:47.611 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  881. 09:36:47.612 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  882. 09:41:47.614 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  883. 09:42:26.385 [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 (? , ?)
  884. 09:42:26.390 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  885. 09:42:26.391 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  886. 09:46:47.615 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  887. 09:51:47.617 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  888. 09:56:47.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  889. 10:01:47.620 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  890. 10:06:47.621 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  891. 10:11:47.623 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  892. 10:16:47.625 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  893. 10:21:47.627 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  894. 10:26:47.629 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  895. 10:31:47.631 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  896. 10:36:47.632 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  897. 10:41:47.634 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  898. 10:46:47.635 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  899. 10:51:47.636 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  900. 10:56:47.637 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  901. 11:01:47.638 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  902. 11:06:47.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  903. 11:11:47.642 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  904. 11:16:47.644 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  905. 11:21:47.645 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  906. 11:26:47.647 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  907. 11:31:47.649 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  908. 11:36:47.651 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  909. 11:41:47.651 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  910. 11:46:47.653 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  911. 11:51:47.655 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  912. 11:56:47.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  913. 12:01:47.658 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  914. 12:06:47.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  915. 12:11:47.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  916. 12:16:47.662 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  917. 12:21:08.286 [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
  918. 12:21:08.290 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  919. 12:21:08.291 [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 (? , ?)
  920. 12:21:08.292 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  921. 12:21:08.292 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  922. 12:21:08.293 [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=?
  923. 12:21:08.294 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  924. 12:21:08.294 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  925. 12:21:08.294 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  926. 12:21:14.769 [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 ?
  927. 12:21:14.770 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  928. 12:21:14.773 [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 (? , ?)
  929. 12:21:14.773 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  930. 12:21:14.773 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  931. 12:21:14.776 [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 ?
  932. 12:21:14.777 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [485]
  933. 12:21:14.778 [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 ?
  934. 12:21:14.779 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [485]
  935. 12:21:14.779 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057172]
  936. 12:21:14.780 [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=?
  937. 12:21:14.780 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  938. 12:21:14.780 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  939. 12:21:14.780 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  940. 12:21:14.781 [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=?
  941. 12:21:14.782 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  942. 12:21:14.782 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  943. 12:21:14.782 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  944. 12:21:14.782 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  945. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.226.134.64]
  946. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 12:21:14 EEST 2026]
  947. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [485]
  948. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  949. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  950. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  951. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  952. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  953. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  954. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  955. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  956. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  957. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  958. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1400]
  959. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  960. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  961. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500516]
  962. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  963. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  964. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  965. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9800.0000000000]
  966. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  967. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [485]
  968. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1400]
  969. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  970. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  971. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  972. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 22:21:14 EEST 2026]
  973. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  974. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057172]
  975. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  976. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [芳钊 李]
  977. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  978. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  979. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  980. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  981. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  982. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  983. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  984. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  985. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  986. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  987. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  988. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  989. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  990. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  991. "code":"602961",
  992. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  993. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  994. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  995. }]
  996. 12:21:14.783 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  997. 12:21:14.784 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291221144643]
  998. 12:21:14.784 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9800.0000000000]
  999. 12:21:14.784 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1000. 12:21:14.784 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1001. 12:21:14.785 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604291221144643_9057172,加密字符串为:order_amount=9800&order_id=PD202604291221144643_9057172&order_ip=111.226.134.64&order_time=2026-04-29+12%3A21%3A14&pay_user_name=%E8%8A%B3%E9%92%8A%E6%9D%8E&sys_no=602961&user_id=500516469ad7b6cca3036e29f721606999b7fc,加密结果sign:f8109e80b70c87b5f30fdd063d25a919
  1002. 12:21:14.785 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604291221144643_9057172","order_amount":"9800","sys_no":"602961","user_id":"500516","order_ip":"111.226.134.64","order_time":"2026-04-29 12:21:14","pay_user_name":"芳钊李","sign":"f8109e80b70c87b5f30fdd063d25a919"}
  1003. 12:21:14.988 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"928090991710736384","send_url":"https://syt.ymkjmall.com/created/?data=7cK9pu4h5x18mQtNCIxvx2V9jcBDTi62N%2BSx14vlyhRP31FFguxYCO0wEL9mKiPqsXwHRzM9xfeKAg4kSBLD4rt3PecODXFSfDlAZTPnKjs%3D","user_id":"205208","order_id":"PD202604291221144643_9057172"},"status":"success"}
  1004. 12:21:14.988 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604291221144643_9057172,请求url:https://syt.ymkjmall.com/created/?data=7cK9pu4h5x18mQtNCIxvx2V9jcBDTi62N%2BSx14vlyhRP31FFguxYCO0wEL9mKiPqsXwHRzM9xfeKAg4kSBLD4rt3PecODXFSfDlAZTPnKjs%3D?in_order_id=928090991710736384&user_id=205208
  1005. 12:21:14.988 [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=?
  1006. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.226.134.64]
  1007. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 12:21:14 EEST 2026]
  1008. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [485]
  1009. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1010. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1011. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1012. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1013. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1014. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1015. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1016. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1017. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1018. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1019. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1400]
  1020. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1021. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1022. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500516]
  1023. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1024. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1025. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1026. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9800.0000000000]
  1027. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1028. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [485]
  1029. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1400]
  1030. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1031. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1032. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1033. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Apr 29 22:21:14 EEST 2026]
  1034. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=7cK9pu4h5x18mQtNCIxvx2V9jcBDTi62N%2BSx14vlyhRP31FFguxYCO0wEL9mKiPqsXwHRzM9xfeKAg4kSBLD4rt3PecODXFSfDlAZTPnKjs%3D?in_order_id=928090991710736384&user_id=205208]
  1035. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057172]
  1036. 12:21:14.990 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1037. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [芳钊 李]
  1038. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1039. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1040. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1041. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1042. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1043. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1044. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1045. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1046. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1047. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1048. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1049. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1050. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1051. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1052. "code":"602961",
  1053. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1054. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1055. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1056. }]
  1057. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1058. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291221144643]
  1059. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9800.0000000000]
  1060. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1061. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1062. 12:21:14.991 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7796]
  1063. 12:21:47.663 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1064. 12:26:47.665 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1065. 12:28:04.738 [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
  1066. 12:28:04.740 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1067. 12:28:04.742 [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 (? , ?)
  1068. 12:28:04.743 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1069. 12:28:04.743 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1070. 12:28:04.745 [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=?
  1071. 12:28:04.746 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1072. 12:28:04.746 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1073. 12:28:04.746 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1074. 12:28:15.141 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202604291221144643_9057172,callback data:{"bill_no":"PD202604291221144643_9057172","bill_status":"1","sign":"f4143af819276d558f53cf91de3bcd6c","sys_no":"602961"}
  1075. 12:28:15.141 [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 ?
  1076. 12:28:15.142 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1077. 12:28:15.144 [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 (? , ?)
  1078. 12:28:15.145 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1079. 12:28:15.145 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1080. 12:28:15.145 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202604291221144643_9057172,signString:bill_no=PD202604291221144643_9057172&bill_status=1&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:f4143af819276d558f53cf91de3bcd6c
  1081. 12:28:15.145 [http-nio-8004-exec-6] 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
  1082. 12:28:15.147 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604291221144643]
  1083. 12:28:15.312 [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=?
  1084. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.226.134.64]
  1085. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 12:21:15.0]
  1086. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [485]
  1087. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1088. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 12:28:15 EEST 2026]
  1089. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1090. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1091. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1092. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1093. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1094. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1095. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1096. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1097. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1400.0000000000]
  1098. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1099. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1100. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500516]
  1101. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  1102. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 12:28:15 EEST 2026]
  1103. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604291221144643_9057172]
  1104. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9800.0000000000]
  1105. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1106. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [485]
  1107. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1400.0000000000]
  1108. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1109. 12:28:15.313 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1110. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1111. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-29 22:21:15.0]
  1112. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=7cK9pu4h5x18mQtNCIxvx2V9jcBDTi62N%2BSx14vlyhRP31FFguxYCO0wEL9mKiPqsXwHRzM9xfeKAg4kSBLD4rt3PecODXFSfDlAZTPnKjs%3D?in_order_id=928090991710736384&user_id=205208]
  1113. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057172]
  1114. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1115. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [芳钊 李]
  1116. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1117. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1118. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1119. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1120. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1121. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1122. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1123. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1124. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1125. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1126. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1127. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1128. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1129. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1130. "code":"602961",
  1131. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1132. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1133. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1134. }]
  1135. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1136. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291221144643]
  1137. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9800.0000000000]
  1138. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1139. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1140. 12:28:15.314 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7796]
  1141. 12:31:47.666 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1142. 12:36:47.668 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1143. 12:41:47.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1144. 12:46:47.671 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1145. 12:51:47.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1146. 12:56:47.675 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1147. 13:01:47.675 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1148. 13:06:47.677 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1149. 13:11:47.679 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1150. 13:16:47.680 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1151. 13:21:47.682 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1152. 13:26:47.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1153. 13:31:47.685 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1154. 13:36:47.686 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1155. 13:41:47.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1156. 13:46:47.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1157. 13:51:47.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1158. 13:56:47.691 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1159. 14:01:47.692 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1160. 14:04:47.054 [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
  1161. 14:04:47.061 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1162. 14:04:47.063 [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 (? , ?)
  1163. 14:04:47.063 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1164. 14:04:47.063 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1165. 14:04:47.064 [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=?
  1166. 14:04:47.065 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1167. 14:04:47.065 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1168. 14:04:47.065 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1169. 14:04:47.240 [http-nio-8004-exec-11] 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
  1170. 14:04:47.242 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1171. 14:04:47.244 [http-nio-8004-exec-11] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1172. 14:04:47.245 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1173. 14:04:47.245 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1174. 14:04:47.245 [http-nio-8004-exec-11] 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=?
  1175. 14:04:47.246 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1176. 14:04:47.246 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1177. 14:04:47.246 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1178. 14:05:05.054 [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 ?
  1179. 14:05:05.055 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1180. 14:05:05.057 [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 (? , ?)
  1181. 14:05:05.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1182. 14:05:05.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1183. 14:05:05.061 [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 ?
  1184. 14:05:05.062 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [283]
  1185. 14:05:05.063 [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 ?
  1186. 14:05:05.064 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [283]
  1187. 14:05:05.064 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057349]
  1188. 14:05:05.064 [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=?
  1189. 14:05:05.065 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1190. 14:05:05.065 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1191. 14:05:05.065 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1192. 14:05:05.066 [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=?
  1193. 14:05:05.067 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1194. 14:05:05.067 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1195. 14:05:05.067 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1196. 14:05:05.067 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1197. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1198. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 14:05:05 EEST 2026]
  1199. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [283]
  1200. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1201. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1202. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1203. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1204. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1205. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1206. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1207. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1208. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1209. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1210. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1211. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1212. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1213. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500295]
  1214. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1215. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1216. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1217. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1218. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1219. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [283]
  1220. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1221. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1222. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1223. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1224. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 00:05:05 EEST 2026]
  1225. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1226. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057349]
  1227. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1228. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [紫薇 赵]
  1229. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1230. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1231. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1232. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1233. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1234. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1235. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1236. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1237. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1238. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1239. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1240. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1241. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1242. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1243. "code":"602961",
  1244. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1245. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1246. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1247. }]
  1248. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1249. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291405054159]
  1250. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1251. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1252. 14:05:05.068 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1253. 14:05:05.071 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604291405054159_9057349,加密字符串为:order_amount=3500&order_id=PD202604291405054159_9057349&order_ip=154.12.178.16&order_time=2026-04-29+14%3A05%3A05&pay_user_name=%E7%B4%AB%E8%96%87%E8%B5%B5&sys_no=602961&user_id=500295469ad7b6cca3036e29f721606999b7fc,加密结果sign:e76d16306c64f00d2aef0b06b6d6d34f
  1254. 14:05:05.071 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604291405054159_9057349","order_amount":"3500","sys_no":"602961","user_id":"500295","order_ip":"154.12.178.16","order_time":"2026-04-29 14:05:05","pay_user_name":"紫薇赵","sign":"e76d16306c64f00d2aef0b06b6d6d34f"}
  1255. 14:05:05.240 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"928117124405678080","send_url":"https://syt.ymkjmall.com/created/?data=PgyxLicOEiVXPPIZzYHmWwbXwmDcU3QTHbXMyhVll3CAVZS9DcNdo0nsQ%2F9SM4pYGFzvBHxmSpq5qUcvjSOvMvFPG1mFfkvf06W5BzDwSmc%3D","user_id":"205208","order_id":"PD202604291405054159_9057349"},"status":"success"}
  1256. 14:05:05.240 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604291405054159_9057349,请求url:https://syt.ymkjmall.com/created/?data=PgyxLicOEiVXPPIZzYHmWwbXwmDcU3QTHbXMyhVll3CAVZS9DcNdo0nsQ%2F9SM4pYGFzvBHxmSpq5qUcvjSOvMvFPG1mFfkvf06W5BzDwSmc%3D?in_order_id=928117124405678080&user_id=205208
  1257. 14:05:05.240 [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=?
  1258. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1259. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 14:05:05 EEST 2026]
  1260. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [283]
  1261. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1262. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1263. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1264. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1265. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1266. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1267. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1268. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1269. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1270. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1271. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1272. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1273. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1274. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500295]
  1275. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1276. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1277. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1278. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1279. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1280. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [283]
  1281. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1282. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1283. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1284. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1285. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 00:05:05 EEST 2026]
  1286. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=PgyxLicOEiVXPPIZzYHmWwbXwmDcU3QTHbXMyhVll3CAVZS9DcNdo0nsQ%2F9SM4pYGFzvBHxmSpq5qUcvjSOvMvFPG1mFfkvf06W5BzDwSmc%3D?in_order_id=928117124405678080&user_id=205208]
  1287. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057349]
  1288. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1289. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [紫薇 赵]
  1290. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1291. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1292. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1293. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1294. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1295. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1296. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1297. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1298. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1299. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1300. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1301. 14:05:05.241 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1302. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1303. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1304. "code":"602961",
  1305. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1306. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1307. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1308. }]
  1309. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1310. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291405054159]
  1311. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1312. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1313. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1314. 14:05:05.242 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7797]
  1315. 14:06:47.694 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1316. 14:11:47.696 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1317. 14:16:21.775 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202604291405054159_9057349,callback data:{"amount":"3500","bill_no":"PD202604291405054159_9057349","sign":"bf319a417853ce3e58dc5721a2c4a642","sys_no":"602961"}
  1318. 14:16:21.775 [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_.code=? limit ?
  1319. 14:16:21.776 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1320. 14:16:21.778 [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 (? , ?)
  1321. 14:16:21.778 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1322. 14:16:21.778 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1323. 14:16:21.779 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202604291405054159_9057349,signString:PD202604291405054159_9057349230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:bf319a417853ce3e58dc5721a2c4a642
  1324. 14:16:21.779 [http-nio-8004-exec-8] 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
  1325. 14:16:21.780 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604291405054159]
  1326. 14:16:21.964 [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=?
  1327. 14:16:21.965 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1328. 14:16:21.966 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1329. 14:16:21.968 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [283]
  1330. 14:16:21.969 [http-nio-8004-exec-8] 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 ?
  1331. 14:16:21.970 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20116]
  1332. 14:16:21.971 [http-nio-8004-exec-8] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1777461381971,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202604291405054159","V_DATE_TIME_V":"2026-04-29 14:16:21","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0124","V_APPLY_TIME_V":"2026-04-29 14:05:05","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202604291405054159_9057349","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-04-29 14:16:21","V_LOGIN_V":"9057349","V_TRANSFORM_AMOUNT_V":"3500.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"}
  1333. 14:16:21.977 [http-nio-8004-exec-8] 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=?
  1334. 14:16:21.977 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1335. 14:16:21.977 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 14:05:05.0]
  1336. 14:16:21.977 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [283]
  1337. 14:16:21.977 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1338. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 14:16:21 EEST 2026]
  1339. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1340. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1341. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1342. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1343. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1344. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1345. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1346. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1347. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  1348. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1349. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1350. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500295]
  1351. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1352. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 14:16:21 EEST 2026]
  1353. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604291405054159_9057349]
  1354. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  1355. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1356. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [283]
  1357. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  1358. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1359. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1360. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1361. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-30 00:05:05.0]
  1362. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=PgyxLicOEiVXPPIZzYHmWwbXwmDcU3QTHbXMyhVll3CAVZS9DcNdo0nsQ%2F9SM4pYGFzvBHxmSpq5qUcvjSOvMvFPG1mFfkvf06W5BzDwSmc%3D?in_order_id=928117124405678080&user_id=205208]
  1363. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057349]
  1364. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1365. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [紫薇 赵]
  1366. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1367. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1368. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1369. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1370. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1371. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1372. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1373. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1374. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1375. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1376. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1377. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1378. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1379. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1380. "code":"602961",
  1381. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1382. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1383. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1384. }]
  1385. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1386. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291405054159]
  1387. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  1388. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1389. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1390. 14:16:21.978 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7797]
  1391. 14:16:47.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1392. 14:17:57.393 [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 (? , ?)
  1393. 14:17:57.395 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1394. 14:17:57.395 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1395. 14:21:47.699 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1396. 14:26:47.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1397. 14:31:47.702 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1398. 14:36:47.703 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1399. 14:41:47.705 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1400. 14:46:47.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1401. 14:51:47.708 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1402. 14:56:47.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1403. 15:01:47.711 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1404. 15:06:47.712 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1405. 15:11:47.714 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1406. 15:16:47.716 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1407. 15:21:47.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1408. 15:26:47.718 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1409. 15:31:47.719 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1410. 15:36:47.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1411. 15:41:47.722 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1412. 15:46:47.723 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1413. 15:49:11.880 [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
  1414. 15:49:11.886 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1415. 15:49:11.889 [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 (? , ?)
  1416. 15:49:11.890 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1417. 15:49:11.890 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1418. 15:49:11.892 [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=?
  1419. 15:49:11.893 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1420. 15:49:11.893 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1421. 15:49:11.893 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1422. 15:49:11.894 [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=?
  1423. 15:49:11.895 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1424. 15:49:11.895 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1425. 15:49:11.895 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1426. 15:49:12.455 [http-nio-8004-exec-4] 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
  1427. 15:49:12.457 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1428. 15:49:12.458 [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 (? , ?)
  1429. 15:49:12.459 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1430. 15:49:12.459 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1431. 15:49:12.460 [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=?
  1432. 15:49:12.461 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1433. 15:49:12.461 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1434. 15:49:12.461 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1435. 15:49:12.461 [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=?
  1436. 15:49:12.462 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1437. 15:49:12.462 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1438. 15:49:12.462 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1439. 15:49:50.042 [http-nio-8004-exec-5] 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 ?
  1440. 15:49:50.043 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  1441. 15:49:50.043 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1442. 15:49:50.045 [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 (? , ?)
  1443. 15:49:50.045 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1444. 15:49:50.045 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1445. 15:49:50.046 [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 ?
  1446. 15:49:50.047 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [870]
  1447. 15:49:50.048 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1448. 15:49:50.049 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [870]
  1449. 15:49:50.049 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057093]
  1450. 15:49:50.050 [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=?
  1451. 15:49:50.050 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1452. 15:49:50.050 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1453. 15:49:50.050 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1454. 15:49:50.051 [http-nio-8004-exec-5] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1455. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1456. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 15:49:50 EEST 2026]
  1457. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [870]
  1458. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1459. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1460. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1461. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1462. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1463. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1464. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1465. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1466. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1467. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1468. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [50]
  1469. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1470. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1471. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [中国民生银行股份有限公司天津南北大街社区支行]
  1472. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6226222111862863]
  1473. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1474. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - []
  1475. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国民生银行-CMBC]
  1476. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [亮 庞]
  1477. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500918]
  1478. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  1479. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1480. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1481. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1482. 15:49:50.052 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [870]
  1483. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057093]
  1484. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1485. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1486. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [亮 庞]
  1487. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1488. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1489. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1490. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  1491. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1492. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1493. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1494. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  1495. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1496. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1497. <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>
  1498. <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>
  1499. <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>
  1500. <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>
  1501. <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>
  1502. <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>
  1503. <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>]
  1504. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1505. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1506. 15:49:50.053 [http-nio-8004-exec-5] 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>
  1507. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1508. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1509. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1510. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1511. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1512. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1513. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1514. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1515. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1516. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1517. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1518. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1519. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202604291549503711]
  1520. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1521. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [340.0000000000]
  1522. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1523. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [50]
  1524. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1525. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  1526. 15:49:50.053 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  1527. 15:49:50.054 [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=?
  1528. 15:49:50.055 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1529. 15:49:50.055 [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 ?
  1530. 15:49:50.056 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [870]
  1531. 15:49:50.057 [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 is null limit ?
  1532. 15:49:50.060 [http-nio-8004-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1777466990060,"addUser":870,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"亮 庞","V_SERIAL_V":"PW202604291549503711","V_DATE_TIME_V":"2026-04-29 15:49:50","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2026-04-29 15:49:50","V_BANK_CARD_NUM_V":"6226222111862863","V_LOGIN_V":"9057093","V_TRANSFORM_AMOUNT_V":"340.00","V_BANK_BRANCH_NAME_V":"中国民生银行股份有限公司天津南北大街社区支行","V_WITHDRAW_AMOUNT_V":"50.00","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国民生银行-CMBC"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mactor2020@126.com"}
  1533. 15:49:54.016 [http-nio-8004-exec-6] 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
  1534. 15:49:54.018 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1535. 15:49:54.020 [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 (? , ?)
  1536. 15:49:54.020 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1537. 15:49:54.021 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1538. 15:49:54.021 [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=?
  1539. 15:49:54.022 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1540. 15:49:54.022 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1541. 15:49:54.022 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1542. 15:49:54.023 [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=?
  1543. 15:49:54.024 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1544. 15:49:54.024 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1545. 15:49:54.024 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1546. 15:51:47.725 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1547. 15:56:47.726 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1548. 16:01:47.728 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1549. 16:06:47.729 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1550. 16:11:47.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1551. 16:16:47.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1552. 16:21:47.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1553. 16:26:47.733 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1554. 16:31:47.735 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1555. 16:36:47.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1556. 16:41:47.738 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1557. 16:42:14.477 [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
  1558. 16:42:14.481 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1559. 16:42:14.482 [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 (? , ?)
  1560. 16:42:14.483 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1561. 16:42:14.483 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1562. 16:42:14.483 [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=?
  1563. 16:42:14.484 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1564. 16:42:14.484 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1565. 16:42:14.484 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1566. 16:42:24.367 [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 ?
  1567. 16:42:24.368 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1568. 16:42:24.371 [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 (? , ?)
  1569. 16:42:24.371 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1570. 16:42:24.371 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1571. 16:42:24.378 [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 ?
  1572. 16:42:24.380 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1573. 16:42:24.382 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1574. 16:42:24.383 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1575. 16:42:24.383 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057617]
  1576. 16:42:24.383 [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=?
  1577. 16:42:24.384 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1578. 16:42:24.384 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1579. 16:42:24.384 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1580. 16:42:24.385 [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=?
  1581. 16:42:24.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1582. 16:42:24.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1583. 16:42:24.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1584. 16:42:24.386 [http-nio-8004-exec-5] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1585. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1586. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 16:42:24 EEST 2026]
  1587. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1588. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1589. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1590. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1591. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1592. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1593. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1594. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1595. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1596. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1597. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1598. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1599. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1600. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1601. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1602. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1603. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1604. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1605. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1606. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1607. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1608. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1609. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1610. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1611. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1612. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 02:42:24 EEST 2026]
  1613. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1614. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1615. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1616. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1617. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1618. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1619. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1620. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1621. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1622. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1623. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1624. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1625. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1626. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1627. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1628. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1629. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1630. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1631. "code":"602961",
  1632. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1633. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1634. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1635. }]
  1636. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1637. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291642245890]
  1638. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1639. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1640. 16:42:24.387 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1641. 16:42:24.389 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604291642245890_9057617,加密字符串为:order_amount=3500&order_id=PD202604291642245890_9057617&order_ip=154.12.178.16&order_time=2026-04-29+16%3A42%3A24&pay_user_name=%E6%B3%BD%E6%B8%85%E5%BC%A0&sys_no=602961&user_id=500911469ad7b6cca3036e29f721606999b7fc,加密结果sign:c625097d28fce4a1daa44b61e61d6be0
  1642. 16:42:24.389 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604291642245890_9057617","order_amount":"3500","sys_no":"602961","user_id":"500911","order_ip":"154.12.178.16","order_time":"2026-04-29 16:42:24","pay_user_name":"泽清张","sign":"c625097d28fce4a1daa44b61e61d6be0"}
  1643. 16:42:24.579 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"928156717536526336","send_url":"https://syt.ymkjmall.com/created/?data=yA7og2yeMgJr4mEUqbijy9IISWLHMwZRCFyR5kx%2B55DpWanKqOKCK47ZLwyIcL%2BtqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202604291642245890_9057617"},"status":"success"}
  1644. 16:42:24.579 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604291642245890_9057617,请求url:https://syt.ymkjmall.com/created/?data=yA7og2yeMgJr4mEUqbijy9IISWLHMwZRCFyR5kx%2B55DpWanKqOKCK47ZLwyIcL%2BtqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928156717536526336&user_id=205208
  1645. 16:42:24.579 [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=?
  1646. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1647. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 16:42:24 EEST 2026]
  1648. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1649. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1650. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1651. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1652. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1653. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1654. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1655. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1656. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1657. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1658. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1659. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1660. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1661. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1662. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1663. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1664. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1665. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1666. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1667. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1668. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1669. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1670. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1671. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1672. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1673. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 02:42:24 EEST 2026]
  1674. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=yA7og2yeMgJr4mEUqbijy9IISWLHMwZRCFyR5kx%2B55DpWanKqOKCK47ZLwyIcL%2BtqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928156717536526336&user_id=205208]
  1675. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1676. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1677. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1678. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1679. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1680. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1681. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1682. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1683. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1684. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1685. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1686. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1687. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1688. 16:42:24.580 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1689. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1690. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1691. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1692. "code":"602961",
  1693. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1694. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1695. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1696. }]
  1697. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1698. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291642245890]
  1699. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1700. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1701. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1702. 16:42:24.581 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7798]
  1703. 16:45:07.664 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202604291642245890_9057617,callback data:{"bill_no":"PD202604291642245890_9057617","bill_status":"1","sign":"50e1d7981681b4a5723b50c19f9bfd74","sys_no":"602961"}
  1704. 16:45:07.664 [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 ?
  1705. 16:45:07.665 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1706. 16:45:07.667 [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 (? , ?)
  1707. 16:45:07.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1708. 16:45:07.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1709. 16:45:07.669 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202604291642245890_9057617,signString:bill_no=PD202604291642245890_9057617&bill_status=1&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:50e1d7981681b4a5723b50c19f9bfd74
  1710. 16:45:07.669 [http-nio-8004-exec-6] 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
  1711. 16:45:07.671 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604291642245890]
  1712. 16:45:07.832 [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=?
  1713. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1714. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 16:42:24.0]
  1715. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1716. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1717. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 16:45:07 EEST 2026]
  1718. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1719. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1720. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1721. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1722. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1723. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1724. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1725. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1726. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  1727. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1728. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1729. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1730. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  1731. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 16:45:07 EEST 2026]
  1732. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604291642245890_9057617]
  1733. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1734. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1735. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1736. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  1737. 16:45:07.833 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1738. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1739. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1740. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-30 02:42:24.0]
  1741. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=yA7og2yeMgJr4mEUqbijy9IISWLHMwZRCFyR5kx%2B55DpWanKqOKCK47ZLwyIcL%2BtqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928156717536526336&user_id=205208]
  1742. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1743. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1744. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1745. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1746. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1747. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1748. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1749. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1750. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1751. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1752. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1753. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1754. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1755. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1756. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1757. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1758. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1759. "code":"602961",
  1760. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1761. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1762. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1763. }]
  1764. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1765. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291642245890]
  1766. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1767. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1768. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1769. 16:45:07.834 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7798]
  1770. 16:45:22.809 [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
  1771. 16:45:22.810 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1772. 16:45:22.812 [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 (? , ?)
  1773. 16:45:22.812 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1774. 16:45:22.812 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1775. 16:45:22.812 [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=?
  1776. 16:45:22.813 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1777. 16:45:22.813 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1778. 16:45:22.813 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1779. 16:45:24.336 [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
  1780. 16:45:24.338 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1781. 16:45:24.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 (? , ?)
  1782. 16:45:24.341 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1783. 16:45:24.341 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1784. 16:45:24.342 [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=?
  1785. 16:45:24.343 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1786. 16:45:24.343 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1787. 16:45:24.343 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1788. 16:45:32.516 [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
  1789. 16:45:32.518 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1790. 16:45:32.520 [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 (? , ?)
  1791. 16:45:32.521 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1792. 16:45:32.521 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1793. 16:45:32.521 [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=?
  1794. 16:45:32.522 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1795. 16:45:32.522 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1796. 16:45:32.522 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1797. 16:45:42.363 [http-nio-8004-exec-11] 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 ?
  1798. 16:45:42.364 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1799. 16:45:42.366 [http-nio-8004-exec-11] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1800. 16:45:42.366 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1801. 16:45:42.366 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1802. 16:45:42.370 [http-nio-8004-exec-11] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1803. 16:45:42.371 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1804. 16:45:42.373 [http-nio-8004-exec-11] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1805. 16:45:42.374 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1806. 16:45:42.374 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057617]
  1807. 16:45:42.375 [http-nio-8004-exec-11] 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=?
  1808. 16:45:42.375 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1809. 16:45:42.375 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1810. 16:45:42.375 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1811. 16:45:42.376 [http-nio-8004-exec-11] 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=?
  1812. 16:45:42.377 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1813. 16:45:42.377 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1814. 16:45:42.377 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1815. 16:45:42.377 [http-nio-8004-exec-11] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1816. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1817. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 16:45:42 EEST 2026]
  1818. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1819. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1820. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1821. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1822. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1823. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1824. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1825. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1826. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1827. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1828. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1829. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1830. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1831. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1832. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1833. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1834. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1835. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1836. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1837. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1838. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1839. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1840. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1841. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1842. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1843. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 02:45:42 EEST 2026]
  1844. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1845. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1846. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1847. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1848. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1849. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1850. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1851. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1852. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1853. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1854. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1855. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1856. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1857. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1858. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1859. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1860. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1861. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1862. "code":"602961",
  1863. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1864. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1865. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1866. }]
  1867. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1868. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291645428061]
  1869. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1870. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1871. 16:45:42.378 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1872. 16:45:42.381 [http-nio-8004-exec-11] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202604291645428061_9057617,加密字符串为:order_amount=3500&order_id=PD202604291645428061_9057617&order_ip=154.12.178.16&order_time=2026-04-29+16%3A45%3A42&pay_user_name=%E6%B3%BD%E6%B8%85%E5%BC%A0&sys_no=602961&user_id=500911469ad7b6cca3036e29f721606999b7fc,加密结果sign:4c567696c8be88b16d44f1f2ffc57f2b
  1873. 16:45:42.381 [http-nio-8004-exec-11] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202604291645428061_9057617","order_amount":"3500","sys_no":"602961","user_id":"500911","order_ip":"154.12.178.16","order_time":"2026-04-29 16:45:42","pay_user_name":"泽清张","sign":"4c567696c8be88b16d44f1f2ffc57f2b"}
  1874. 16:45:42.556 [http-nio-8004-exec-11] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"928157547966763008","send_url":"https://syt.ymkjmall.com/created/?data=Cx8wnpC6kR%2BbwtJNj6Z5aFLb%2FwypoA6DveLd4ytzCjpPjOMk%2BmtgHejE5p0bEwqZqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202604291645428061_9057617"},"status":"success"}
  1875. 16:45:42.556 [http-nio-8004-exec-11] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202604291645428061_9057617,请求url:https://syt.ymkjmall.com/created/?data=Cx8wnpC6kR%2BbwtJNj6Z5aFLb%2FwypoA6DveLd4ytzCjpPjOMk%2BmtgHejE5p0bEwqZqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928157547966763008&user_id=205208
  1876. 16:45:42.556 [http-nio-8004-exec-11] 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=?
  1877. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1878. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Apr 29 16:45:42 EEST 2026]
  1879. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1880. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1881. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1882. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1883. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1884. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1885. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1886. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1887. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1888. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1889. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1890. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1891. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1892. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1893. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1894. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1895. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1896. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1897. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1898. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1899. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1900. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1901. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1902. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1903. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1904. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Apr 30 02:45:42 EEST 2026]
  1905. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Cx8wnpC6kR%2BbwtJNj6Z5aFLb%2FwypoA6DveLd4ytzCjpPjOMk%2BmtgHejE5p0bEwqZqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928157547966763008&user_id=205208]
  1906. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1907. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1908. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1909. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1910. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1911. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1912. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1913. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1914. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1915. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1916. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1917. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1918. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1919. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1920. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1921. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1922. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1923. "code":"602961",
  1924. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1925. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1926. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1927. }]
  1928. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1929. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291645428061]
  1930. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1931. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1932. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1933. 16:45:42.557 [http-nio-8004-exec-11] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7799]
  1934. 16:46:47.739 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1935. 16:49:36.409 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202604291645428061_9057617,callback data:{"amount":"3500","bill_no":"PD202604291645428061_9057617","sign":"dfb67b697eab9f8fcccc645cbe564637","sys_no":"602961"}
  1936. 16:49:36.409 [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_.code=? limit ?
  1937. 16:49:36.410 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1938. 16:49:36.412 [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 (? , ?)
  1939. 16:49:36.412 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1940. 16:49:36.412 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1941. 16:49:36.413 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202604291645428061_9057617,signString:PD202604291645428061_9057617230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:dfb67b697eab9f8fcccc645cbe564637
  1942. 16:49:36.413 [http-nio-8004-exec-10] 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
  1943. 16:49:36.415 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202604291645428061]
  1944. 16:49:36.572 [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=?
  1945. 16:49:36.573 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1946. 16:49:36.573 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1947. 16:49:36.574 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1948. 16:49:36.576 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1949. 16:49:36.577 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  1950. 16:49:36.579 [http-nio-8004-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1777470576579,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202604291645428061","V_DATE_TIME_V":"2026-04-29 16:49:36","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_APPLY_TIME_V":"2026-04-29 16:45:42","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202604291645428061_9057617","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-04-29 16:49:36","V_LOGIN_V":"9057617","V_TRANSFORM_AMOUNT_V":"3500.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"}
  1951. 16:49:36.583 [http-nio-8004-exec-10] 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=?
  1952. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1953. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-04-29 16:45:42.0]
  1954. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1955. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1956. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Apr 29 16:49:36 EEST 2026]
  1957. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1958. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1959. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1960. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1961. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1962. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1963. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1964. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1965. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  1966. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1967. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1968. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1969. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1970. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Apr 29 16:49:36 EEST 2026]
  1971. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202604291645428061_9057617]
  1972. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  1973. 16:49:36.584 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1974. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1975. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  1976. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1977. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1978. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1979. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-04-30 02:45:42.0]
  1980. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Cx8wnpC6kR%2BbwtJNj6Z5aFLb%2FwypoA6DveLd4ytzCjpPjOMk%2BmtgHejE5p0bEwqZqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=928157547966763008&user_id=205208]
  1981. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1982. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1983. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1984. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1985. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1986. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1987. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1988. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1989. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1990. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1991. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1992. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1993. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1994. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1995. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1996. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1997. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1998. "code":"602961",
  1999. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2000. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2001. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2002. }]
  2003. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2004. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202604291645428061]
  2005. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  2006. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2007. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2008. 16:49:36.585 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7799]
  2009. 16:51:47.741 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2010. 16:56:47.742 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2011. 17:01:47.743 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2012. 17:06:47.744 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2013. 17:11:47.745 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2014. 17:16:47.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2015. 17:21:47.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2016. 17:26:47.749 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2017. 17:31:47.751 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2018. 17:36:47.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2019. 17:41:47.754 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2020. 17:46:47.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2021. 17:51:47.756 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2022. 17:56:47.758 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2023. 18:01:47.760 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2024. 18:06:47.762 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2025. 18:11:47.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2026. 18:16:47.764 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2027. 18:21:47.766 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2028. 18:26:47.767 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2029. 18:31:47.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2030. 18:36:47.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2031. 18:41:47.771 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2032. 18:46:47.772 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2033. 18:51:47.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2034. 18:56:47.775 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2035. 19:01:47.776 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2036. 19:06:47.777 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2037. 19:11:47.778 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2038. 19:16:47.780 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2039. 19:21:47.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2040. 19:26:47.783 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2041. 19:31:47.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2042. 19:36:47.786 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2043. 19:41:47.788 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2044. 19:46:47.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2045. 19:51:47.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2046. 19:56:47.792 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2047. 20:01:47.794 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2048. 20:06:47.795 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2049. 20:11:47.796 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2050. 20:16:47.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2051. 20:21:47.800 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2052. 20:26:47.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2053. 20:31:47.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2054. 20:36:47.805 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2055. 20:41:47.807 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2056. 20:46:47.808 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2057. 20:51:47.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2058. 20:56:47.811 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2059. 21:01:47.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2060. 21:06:47.814 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2061. 21:11:47.816 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2062. 21:16:47.817 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2063. 21:21:47.819 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2064. 21:26:47.820 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2065. 21:31:47.822 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2066. 21:36:47.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2067. 21:41:47.825 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2068. 21:46:47.827 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2069. 21:51:47.828 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2070. 21:56:47.829 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2071. 22:01:47.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2072. 22:06:47.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2073. 22:11:47.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2074. 22:16:47.835 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2075. 22:21:47.836 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2076. 22:26:47.837 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2077. 22:31:47.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2078. 22:36:47.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2079. 22:41:47.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2080. 22:46:47.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2081. 22:51:47.845 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2082. 22:56:47.846 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2083. 23:01:47.848 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2084. 23:06:47.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2085. 23:11:47.850 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2086. 23:16:47.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2087. 23:21:47.854 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2088. 23:26:47.855 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2089. 23:31:47.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2090. 23:36:47.858 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2091. 23:41:47.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2092. 23:46:47.862 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2093. 23:51:47.863 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2094. 23:56:47.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration