logback.2026-05-19.log 564 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757
  1. 00:03:37.709 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:08:37.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:13:37.735 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:18:37.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:23:37.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:28:37.769 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:33:37.770 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:38:37.786 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:43:37.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:48:37.809 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:53:37.812 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:58:37.815 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:03:37.830 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:08:37.834 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:13:37.843 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:18:37.844 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:23:37.852 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:28:37.866 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:33:37.871 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:38:37.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:43:37.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:48:37.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:53:37.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:58:37.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:03:37.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:08:37.939 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:13:37.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:18:37.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:23:37.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:28:37.970 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:33:37.981 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:38:37.995 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:43:38.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:48:38.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:53:38.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:58:38.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 03:03:38.059 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 03:08:38.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 03:13:38.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 03:16:15.616 [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
  41. 03:16:15.616 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  42. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  43. 03:16:15.632 [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 (? , ?)
  44. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  45. 03:16:15.632 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  46. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  47. 03:16:15.632 [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=?
  48. 03:16:15.632 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  49. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  50. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  51. 03:16:15.632 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  52. 03:16:15.648 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  53. 03:16:15.648 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  54. 03:16:15.648 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  55. 03:16:15.648 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  56. 03:16:15.648 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  57. 03:16:15.648 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  58. 03:16:28.116 [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 ?
  59. 03:16:28.116 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  60. 03:16:28.116 [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 (? , ?)
  61. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  62. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  63. 03:16:28.132 [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 ?
  64. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  65. 03:16:28.132 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  66. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  67. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057617]
  68. 03:16:28.132 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  69. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  70. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  71. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  72. 03:16:28.132 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  73. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  74. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  75. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  76. 03:16:28.132 [http-nio-8004-exec-10] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  77. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  78. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 03:16:28 EEST 2026]
  79. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  80. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  81. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  82. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  83. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  84. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  85. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  86. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  87. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  88. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  89. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  90. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  91. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  92. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  93. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  94. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  95. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  96. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  97. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  98. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  99. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  100. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  101. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  102. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  103. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  104. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 13:16:28 EEST 2026]
  105. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  106. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  107. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  108. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  109. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  110. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  111. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  112. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  113. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  114. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  115. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  116. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  117. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  118. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  119. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  120. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  121. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  122. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  123. "code":"602961",
  124. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  125. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  126. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  127. }]
  128. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  129. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190316280687]
  130. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  131. 03:16:28.132 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  132. 03:16:28.147 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  133. 03:16:28.147 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190316280687_9057617,加密字符串为:order_amount=3500&order_id=PD202605190316280687_9057617&order_ip=154.12.178.16&order_time=2026-05-19+03%3A16%3A28&pay_user_name=%E6%B3%BD%E6%B8%85%E5%BC%A0&sys_no=602961&user_id=500911469ad7b6cca3036e29f721606999b7fc,加密结果sign:1e4918ab46414389a28024e099b6d323
  134. 03:16:28.147 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190316280687_9057617","order_amount":"3500","sys_no":"602961","user_id":"500911","order_ip":"154.12.178.16","order_time":"2026-05-19 03:16:28","pay_user_name":"泽清张","sign":"1e4918ab46414389a28024e099b6d323"}
  135. 03:16:28.303 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935201744355876864","send_url":"https://syt.ymkjmall.com/created/?data=%2BcfyCqEm3pqH3gLqfrB9pipXs4R2wATeKmfD%2F4HNmG3MK91NhFJynZ5rcdcphAq1qOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202605190316280687_9057617"},"status":"success"}
  136. 03:16:28.303 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190316280687_9057617,请求url:https://syt.ymkjmall.com/created/?data=%2BcfyCqEm3pqH3gLqfrB9pipXs4R2wATeKmfD%2F4HNmG3MK91NhFJynZ5rcdcphAq1qOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935201744355876864&user_id=205208
  137. 03:16:28.303 [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=?
  138. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  139. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 03:16:28 EEST 2026]
  140. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  141. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  142. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  143. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  144. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  145. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  146. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  147. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  148. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  149. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  150. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  151. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  152. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  153. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  154. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  155. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  156. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  157. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  158. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  159. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  160. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  161. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  162. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  163. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  164. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  165. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 13:16:28 EEST 2026]
  166. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=%2BcfyCqEm3pqH3gLqfrB9pipXs4R2wATeKmfD%2F4HNmG3MK91NhFJynZ5rcdcphAq1qOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935201744355876864&user_id=205208]
  167. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  168. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  169. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  170. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  171. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  172. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  173. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  174. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  175. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  176. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  177. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  178. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  179. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  180. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  181. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  182. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  183. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  184. "code":"602961",
  185. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  186. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  187. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  188. }]
  189. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  190. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190316280687]
  191. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  192. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  193. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  194. 03:16:28.319 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7859]
  195. 03:18:38.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  196. 03:21:01.596 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605190316280687_9057617,callback data:{"amount":"3500","bill_no":"PD202605190316280687_9057617","sign":"1eeacfb3daf87e6efafa1c272cba02e5","sys_no":"602961"}
  197. 03:21:01.596 [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 ?
  198. 03:21:01.596 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  199. 03:21:01.596 [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 (? , ?)
  200. 03:21:01.596 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  201. 03:21:01.596 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  202. 03:21:01.596 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605190316280687_9057617,signString:PD202605190316280687_9057617230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:1eeacfb3daf87e6efafa1c272cba02e5
  203. 03:21:01.596 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  204. 03:21:01.596 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605190316280687]
  205. 03:21:01.814 [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=?
  206. 03:21:01.830 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  207. 03:21:01.830 [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 ?
  208. 03:21:01.830 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  209. 03:21:01.830 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  210. 03:21:01.830 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  211. 03:21:01.830 [http-nio-8004-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779150061830,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605190316280687","V_DATE_TIME_V":"2026-05-19 03:21:01","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_APPLY_TIME_V":"2026-05-19 03:16:28","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605190316280687_9057617","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 03:21:01","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"}
  212. 03:21:01.846 [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=?
  213. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  214. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 03:16:28.0]
  215. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  216. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  217. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 03:21:01 EEST 2026]
  218. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  219. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  220. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  221. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  222. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  223. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  224. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  225. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  226. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  227. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  228. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  229. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  230. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  231. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 03:21:01 EEST 2026]
  232. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605190316280687_9057617]
  233. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  234. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  235. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  236. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  237. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  238. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  239. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  240. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-19 13:16:28.0]
  241. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=%2BcfyCqEm3pqH3gLqfrB9pipXs4R2wATeKmfD%2F4HNmG3MK91NhFJynZ5rcdcphAq1qOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935201744355876864&user_id=205208]
  242. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  243. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  244. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  245. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  246. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  247. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  248. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  249. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  250. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  251. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  252. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  253. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  254. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  255. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  256. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  257. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  258. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  259. "code":"602961",
  260. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  261. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  262. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  263. }]
  264. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  265. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190316280687]
  266. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  267. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  268. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  269. 03:21:01.846 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7859]
  270. 03:23:38.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  271. 03:28:38.109 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  272. 03:33:38.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  273. 03:38:38.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  274. 03:43:38.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  275. 03:48:38.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  276. 03:53:38.141 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  277. 03:58:38.149 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  278. 04:03:38.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  279. 04:07:22.637 [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
  280. 04:07:22.637 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  281. 04:07:22.653 [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 (? , ?)
  282. 04:07:22.653 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  283. 04:07:22.653 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  284. 04:07:22.653 [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=?
  285. 04:07:22.653 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  286. 04:07:22.653 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  287. 04:07:22.653 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  288. 04:07:22.684 [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
  289. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  290. 04:07:22.684 [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 (? , ?)
  291. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  292. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  293. 04:07:22.684 [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=?
  294. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  295. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  296. 04:07:22.684 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  297. 04:07:32.637 [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 ?
  298. 04:07:32.637 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  299. 04:07:32.637 [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 (? , ?)
  300. 04:07:32.637 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  301. 04:07:32.637 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  302. 04:07:32.637 [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 ?
  303. 04:07:32.637 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  304. 04:07:32.652 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  305. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  306. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057660]
  307. 04:07:32.652 [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=?
  308. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  309. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  310. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  311. 04:07:32.652 [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=?
  312. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  313. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  314. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  315. 04:07:32.652 [http-nio-8004-exec-4] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  316. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  317. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 04:07:32 EEST 2026]
  318. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  319. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  320. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  321. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  322. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  323. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  324. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  325. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  326. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  327. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  328. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  329. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  330. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  331. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  332. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501003]
  333. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  334. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  335. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  336. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  337. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  338. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [950]
  339. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  340. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  341. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  342. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  343. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 14:07:32 EEST 2026]
  344. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  345. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057660]
  346. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  347. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [罗 松]
  348. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  349. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  350. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  351. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  352. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  353. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  354. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  355. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  356. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  357. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  358. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  359. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  360. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  361. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  362. "code":"602961",
  363. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  364. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  365. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  366. }]
  367. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  368. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190407325154]
  369. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  370. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  371. 04:07:32.652 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  372. 04:07:32.652 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190407325154_9057660,加密字符串为:order_amount=3500&order_id=PD202605190407325154_9057660&order_ip=154.12.178.16&order_time=2026-05-19+04%3A07%3A32&pay_user_name=%E7%BD%97%E6%9D%BE&sys_no=602961&user_id=501003469ad7b6cca3036e29f721606999b7fc,加密结果sign:7b2929a68e0534924209033b37e2e969
  373. 04:07:32.652 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190407325154_9057660","order_amount":"3500","sys_no":"602961","user_id":"501003","order_ip":"154.12.178.16","order_time":"2026-05-19 04:07:32","pay_user_name":"罗松","sign":"7b2929a68e0534924209033b37e2e969"}
  374. 04:07:32.824 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935214598429638656","send_url":"https://syt.ymkjmall.com/created/?data=FBIAT5p6TqvIqTN7poObKRodjKHBFWOsvMmXpNPifjA3CeHvHxOgYLrpyCCqg3Lbzd8UR%2Ff49Pw1xAWIajyhV20ajnYQT6herMCyr4Jfyxo%3D","user_id":"205208","order_id":"PD202605190407325154_9057660"},"status":"success"}
  375. 04:07:32.824 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190407325154_9057660,请求url:https://syt.ymkjmall.com/created/?data=FBIAT5p6TqvIqTN7poObKRodjKHBFWOsvMmXpNPifjA3CeHvHxOgYLrpyCCqg3Lbzd8UR%2Ff49Pw1xAWIajyhV20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=935214598429638656&user_id=205208
  376. 04:07:32.824 [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=?
  377. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  378. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 04:07:32 EEST 2026]
  379. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  380. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  381. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  382. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  383. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  384. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  385. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  386. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  387. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  388. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  389. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  390. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  391. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  392. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  393. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501003]
  394. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  395. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  396. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  397. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  398. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  399. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [950]
  400. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  401. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  402. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  403. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  404. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 14:07:32 EEST 2026]
  405. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=FBIAT5p6TqvIqTN7poObKRodjKHBFWOsvMmXpNPifjA3CeHvHxOgYLrpyCCqg3Lbzd8UR%2Ff49Pw1xAWIajyhV20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=935214598429638656&user_id=205208]
  406. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057660]
  407. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  408. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [罗 松]
  409. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  410. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  411. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  412. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  413. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  414. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  415. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  416. 04:07:32.824 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  417. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  418. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  419. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  420. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  421. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  422. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  423. "code":"602961",
  424. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  425. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  426. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  427. }]
  428. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  429. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190407325154]
  430. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  431. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  432. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  433. 04:07:32.840 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7860]
  434. 04:08:38.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  435. 04:10:44.307 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605190407325154_9057660,callback data:{"amount":"3500","bill_no":"PD202605190407325154_9057660","sign":"dc53af2dad4e19ec2895bb6dd89aee44","sys_no":"602961"}
  436. 04:10:44.307 [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 ?
  437. 04:10:44.307 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  438. 04:10:44.307 [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 (? , ?)
  439. 04:10:44.307 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  440. 04:10:44.307 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  441. 04:10:44.307 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605190407325154_9057660,signString:PD202605190407325154_9057660230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:dc53af2dad4e19ec2895bb6dd89aee44
  442. 04:10:44.307 [http-nio-8004-exec-2] 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
  443. 04:10:44.307 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605190407325154]
  444. 04:10:44.494 [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=?
  445. 04:10:44.494 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  446. 04:10:44.494 [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 ?
  447. 04:10:44.494 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [950]
  448. 04:10:44.510 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  449. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  450. 04:10:44.510 [http-nio-8004-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779153044510,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605190407325154","V_DATE_TIME_V":"2026-05-19 04:10:44","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_APPLY_TIME_V":"2026-05-19 04:07:33","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605190407325154_9057660","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 04:10:44","V_LOGIN_V":"9057660","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"}
  451. 04:10:44.510 [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=?
  452. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  453. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 04:07:33.0]
  454. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [950]
  455. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  456. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 04:10:44 EEST 2026]
  457. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  458. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  459. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  460. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  461. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  462. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  463. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  464. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  465. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  466. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  467. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  468. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501003]
  469. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  470. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 04:10:44 EEST 2026]
  471. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605190407325154_9057660]
  472. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  473. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  474. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [950]
  475. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  476. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  477. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  478. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  479. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-19 14:07:33.0]
  480. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=FBIAT5p6TqvIqTN7poObKRodjKHBFWOsvMmXpNPifjA3CeHvHxOgYLrpyCCqg3Lbzd8UR%2Ff49Pw1xAWIajyhV20ajnYQT6herMCyr4Jfyxo%3D?in_order_id=935214598429638656&user_id=205208]
  481. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057660]
  482. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  483. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [罗 松]
  484. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  485. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  486. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  487. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  488. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  489. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  490. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  491. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  492. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  493. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  494. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  495. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  496. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  497. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  498. "code":"602961",
  499. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  500. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  501. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  502. }]
  503. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  504. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190407325154]
  505. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  506. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  507. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  508. 04:10:44.510 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7860]
  509. 04:13:38.177 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  510. 04:18:38.183 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  511. 04:23:38.197 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  512. 04:28:38.203 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  513. 04:32:01.110 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  514. 04:32:01.110 [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
  515. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  516. 04:32:01.110 [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 (? , ?)
  517. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  518. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  519. 04:32:01.110 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  520. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  521. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  522. 04:32:01.110 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  523. 04:32:01.110 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  524. 04:32:01.125 [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 (? , ?)
  525. 04:32:01.125 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  526. 04:32:01.125 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  527. 04:32:01.125 [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=?
  528. 04:32:01.125 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  529. 04:32:01.125 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  530. 04:32:01.125 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  531. 04:33:38.211 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  532. 04:34:09.072 [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 ?
  533. 04:34:09.072 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  534. 04:34:09.072 [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 (? , ?)
  535. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  536. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  537. 04:34:09.087 [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 ?
  538. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1009]
  539. 04:34:09.087 [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 ?
  540. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1009]
  541. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057721]
  542. 04:34:09.087 [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=?
  543. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  544. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  545. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  546. 04:34:09.087 [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=?
  547. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  548. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  549. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  550. 04:34:09.087 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  551. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  552. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 04:34:09 EEST 2026]
  553. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1009]
  554. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  555. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  556. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  557. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  558. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  559. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  560. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  561. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  562. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  563. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  564. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  565. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  566. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  567. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501063]
  568. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  569. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  570. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  571. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  572. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  573. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1009]
  574. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  575. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  576. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  577. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  578. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 14:34:09 EEST 2026]
  579. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  580. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057721]
  581. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  582. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [淼栋 季]
  583. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  584. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  585. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  586. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  587. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  588. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  589. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  590. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  591. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  592. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  593. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  594. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  595. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  596. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  597. "code":"602961",
  598. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  599. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  600. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  601. }]
  602. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  603. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190434095424]
  604. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  605. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  606. 04:34:09.087 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  607. 04:34:09.087 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190434095424_9057721,加密字符串为:order_amount=35000&order_id=PD202605190434095424_9057721&order_ip=180.213.87.173&order_time=2026-05-19+04%3A34%3A09&pay_user_name=%E6%B7%BC%E6%A0%8B%E5%AD%A3&sys_no=602961&user_id=501063469ad7b6cca3036e29f721606999b7fc,加密结果sign:d7b45751dbe1b03c4821231656050497
  608. 04:34:09.103 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190434095424_9057721","order_amount":"35000","sys_no":"602961","user_id":"501063","order_ip":"180.213.87.173","order_time":"2026-05-19 04:34:09","pay_user_name":"淼栋季","sign":"d7b45751dbe1b03c4821231656050497"}
  609. 04:34:09.275 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935221294698856448","send_url":"https://syt.ymkjmall.com/created/?data=OTOU%2BZkFeV2%2F3NsHKat0iZauxkObMd0dhPPRgcls7A2ld1YmagjMbFBIthefSMqg5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D","user_id":"205208","order_id":"PD202605190434095424_9057721"},"status":"success"}
  610. 04:34:09.275 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190434095424_9057721,请求url:https://syt.ymkjmall.com/created/?data=OTOU%2BZkFeV2%2F3NsHKat0iZauxkObMd0dhPPRgcls7A2ld1YmagjMbFBIthefSMqg5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D?in_order_id=935221294698856448&user_id=205208
  611. 04:34:09.275 [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=?
  612. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  613. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 04:34:09 EEST 2026]
  614. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1009]
  615. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  616. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  617. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  618. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  619. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  620. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  621. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  622. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  623. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  624. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  625. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  626. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  627. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  628. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501063]
  629. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  630. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  631. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  632. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  633. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  634. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1009]
  635. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  636. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  637. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  638. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  639. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 14:34:09 EEST 2026]
  640. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=OTOU%2BZkFeV2%2F3NsHKat0iZauxkObMd0dhPPRgcls7A2ld1YmagjMbFBIthefSMqg5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D?in_order_id=935221294698856448&user_id=205208]
  641. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057721]
  642. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  643. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [淼栋 季]
  644. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  645. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  646. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  647. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  648. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  649. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  650. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  651. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  652. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  653. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  654. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  655. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  656. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  657. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  658. "code":"602961",
  659. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  660. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  661. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  662. }]
  663. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  664. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190434095424]
  665. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  666. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  667. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  668. 04:34:09.275 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7861]
  669. 04:38:38.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  670. 04:43:38.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  671. 04:48:38.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  672. 04:53:38.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  673. 04:58:38.239 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  674. 05:03:38.253 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  675. 05:06:23.210 [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
  676. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  677. 05:06:23.226 [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 (? , ?)
  678. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  679. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  680. 05:06:23.226 [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=?
  681. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  682. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  683. 05:06:23.226 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  684. 05:08:38.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  685. 05:13:38.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  686. 05:18:38.275 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  687. 05:21:20.467 [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 (? , ?)
  688. 05:21:20.467 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  689. 05:21:20.467 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  690. 05:21:23.857 [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
  691. 05:21:23.857 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  692. 05:21:23.873 [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 (? , ?)
  693. 05:21:23.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  694. 05:21:23.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  695. 05:21:23.873 [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=?
  696. 05:21:23.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  697. 05:21:23.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  698. 05:21:23.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  699. 05:21:23.967 [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
  700. 05:21:23.967 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  701. 05:21:23.967 [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 (? , ?)
  702. 05:21:23.967 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  703. 05:21:23.967 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  704. 05:21:23.982 [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=?
  705. 05:21:23.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  706. 05:21:23.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  707. 05:21:23.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  708. 05:21:38.591 [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 ?
  709. 05:21:38.591 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  710. 05:21:38.591 [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 (? , ?)
  711. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  712. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  713. 05:21:38.607 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  714. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1009]
  715. 05:21:38.607 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  716. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1009]
  717. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057721]
  718. 05:21:38.607 [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=?
  719. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  720. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  721. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  722. 05:21:38.607 [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=?
  723. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  724. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  725. 05:21:38.607 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  726. 05:21:38.622 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  727. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  728. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 05:21:38 EEST 2026]
  729. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1009]
  730. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  731. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  732. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  733. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  734. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  735. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  736. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  737. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  738. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  739. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  740. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  741. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  742. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  743. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501063]
  744. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  745. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  746. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  747. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  748. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  749. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1009]
  750. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  751. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  752. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  753. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  754. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 15:21:38 EEST 2026]
  755. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  756. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057721]
  757. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  758. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [淼栋 季]
  759. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  760. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  761. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  762. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  763. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  764. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  765. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  766. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  767. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  768. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  769. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  770. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  771. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  772. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  773. "code":"602961",
  774. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  775. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  776. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  777. }]
  778. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  779. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190521386374]
  780. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  781. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  782. 05:21:38.622 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  783. 05:21:38.622 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190521386374_9057721,加密字符串为:order_amount=35000&order_id=PD202605190521386374_9057721&order_ip=180.213.87.173&order_time=2026-05-19+05%3A21%3A38&pay_user_name=%E6%B7%BC%E6%A0%8B%E5%AD%A3&sys_no=602961&user_id=501063469ad7b6cca3036e29f721606999b7fc,加密结果sign:335fc01a929f6f8363fd8b1a438f4c1e
  784. 05:21:38.622 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190521386374_9057721","order_amount":"35000","sys_no":"602961","user_id":"501063","order_ip":"180.213.87.173","order_time":"2026-05-19 05:21:38","pay_user_name":"淼栋季","sign":"335fc01a929f6f8363fd8b1a438f4c1e"}
  785. 05:21:38.825 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935233247085350912","send_url":"https://syt.ymkjmall.com/created/?data=GnxfJsKHZ9HyUqfObtUsylbB1f4s0q1zS4o7QWDPRZjj4ONSMSqdABoR%2F%2FQmKxgT5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D","user_id":"205208","order_id":"PD202605190521386374_9057721"},"status":"success"}
  786. 05:21:38.825 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190521386374_9057721,请求url:https://syt.ymkjmall.com/created/?data=GnxfJsKHZ9HyUqfObtUsylbB1f4s0q1zS4o7QWDPRZjj4ONSMSqdABoR%2F%2FQmKxgT5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D?in_order_id=935233247085350912&user_id=205208
  787. 05:21:38.825 [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=?
  788. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  789. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 05:21:38 EEST 2026]
  790. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1009]
  791. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  792. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  793. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  794. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  795. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  796. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  797. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  798. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  799. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  800. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  801. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  802. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  803. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  804. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501063]
  805. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  806. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  807. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  808. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  809. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  810. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1009]
  811. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  812. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  813. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  814. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  815. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 15:21:38 EEST 2026]
  816. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=GnxfJsKHZ9HyUqfObtUsylbB1f4s0q1zS4o7QWDPRZjj4ONSMSqdABoR%2F%2FQmKxgT5lR0%2BWQhGoIvgzzIGAd7NyTPYeKrBJkG%2BIfsBqa%2BVO8%3D?in_order_id=935233247085350912&user_id=205208]
  817. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057721]
  818. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  819. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [淼栋 季]
  820. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  821. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  822. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  823. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  824. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  825. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  826. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  827. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  828. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  829. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  830. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  831. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  832. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  833. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  834. "code":"602961",
  835. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  836. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  837. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  838. }]
  839. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  840. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190521386374]
  841. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  842. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  843. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  844. 05:21:38.825 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7862]
  845. 05:23:38.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  846. 05:26:26.522 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  847. 05:26:26.522 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  848. 05:26:26.537 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  849. 05:26:26.537 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  850. 05:26:26.537 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  851. 05:26:26.537 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  852. 05:26:26.537 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  853. 05:26:26.537 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  854. 05:26:26.537 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  855. 05:26:26.537 [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
  856. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  857. 05:26:26.553 [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 (? , ?)
  858. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  859. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  860. 05:26:26.553 [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=?
  861. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  862. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  863. 05:26:26.553 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  864. 05:27:01.976 [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 ?
  865. 05:27:01.976 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  866. 05:27:01.976 [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 (? , ?)
  867. 05:27:01.976 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  868. 05:27:01.976 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  869. 05:27:01.992 [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 ?
  870. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1010]
  871. 05:27:01.992 [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 ?
  872. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1010]
  873. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057722]
  874. 05:27:01.992 [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=?
  875. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  876. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  877. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  878. 05:27:01.992 [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=?
  879. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  880. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  881. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  882. 05:27:01.992 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  883. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  884. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 05:27:01 EEST 2026]
  885. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1010]
  886. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  887. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  888. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  889. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  890. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  891. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  892. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  893. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  894. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  895. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  896. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  897. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  898. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  899. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501064]
  900. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  901. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  902. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  903. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  904. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  905. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1010]
  906. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  907. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  908. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  909. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  910. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 15:27:01 EEST 2026]
  911. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  912. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057722]
  913. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  914. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [行 于]
  915. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  916. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  917. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  918. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  919. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  920. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  921. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  922. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  923. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  924. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  925. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  926. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  927. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  928. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  929. "code":"602961",
  930. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  931. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  932. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  933. }]
  934. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  935. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190527018316]
  936. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  937. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  938. 05:27:01.992 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  939. 05:27:01.992 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190527018316_9057722,加密字符串为:order_amount=35000&order_id=PD202605190527018316_9057722&order_ip=180.213.87.173&order_time=2026-05-19+05%3A27%3A01&pay_user_name=%E8%A1%8C%E4%BA%8E&sys_no=602961&user_id=501064469ad7b6cca3036e29f721606999b7fc,加密结果sign:c1ecf332aa8ce5ab7939acd0203d909a
  940. 05:27:01.992 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190527018316_9057722","order_amount":"35000","sys_no":"602961","user_id":"501064","order_ip":"180.213.87.173","order_time":"2026-05-19 05:27:01","pay_user_name":"行于","sign":"c1ecf332aa8ce5ab7939acd0203d909a"}
  941. 05:27:02.164 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935234603380670464","send_url":"https://syt.ymkjmall.com/created/?data=Xx4I4al%2FxgUAD%2FI4bEuYfRd4tDf%2BxjjNG1DUHBlDMasnZ%2B2LFSB1AmoxFnpFpNuJr%2FECBcBKwG8UN2c0GrFrmP6FpU5IhO1FkaehLMk3Fi4%3D","user_id":"205208","order_id":"PD202605190527018316_9057722"},"status":"success"}
  942. 05:27:02.164 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190527018316_9057722,请求url:https://syt.ymkjmall.com/created/?data=Xx4I4al%2FxgUAD%2FI4bEuYfRd4tDf%2BxjjNG1DUHBlDMasnZ%2B2LFSB1AmoxFnpFpNuJr%2FECBcBKwG8UN2c0GrFrmP6FpU5IhO1FkaehLMk3Fi4%3D?in_order_id=935234603380670464&user_id=205208
  943. 05:27:02.179 [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=?
  944. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  945. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 05:27:01 EEST 2026]
  946. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1010]
  947. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  948. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  949. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  950. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  951. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  952. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  953. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  954. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  955. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  956. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  957. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  958. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  959. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  960. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501064]
  961. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  962. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  963. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  964. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  965. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  966. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1010]
  967. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  968. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  969. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  970. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  971. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 15:27:01 EEST 2026]
  972. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Xx4I4al%2FxgUAD%2FI4bEuYfRd4tDf%2BxjjNG1DUHBlDMasnZ%2B2LFSB1AmoxFnpFpNuJr%2FECBcBKwG8UN2c0GrFrmP6FpU5IhO1FkaehLMk3Fi4%3D?in_order_id=935234603380670464&user_id=205208]
  973. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057722]
  974. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  975. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [行 于]
  976. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  977. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  978. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  979. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  980. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  981. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  982. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  983. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  984. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  985. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  986. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  987. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  988. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  989. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  990. "code":"602961",
  991. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  992. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  993. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  994. }]
  995. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  996. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190527018316]
  997. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  998. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  999. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1000. 05:27:02.179 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7863]
  1001. 05:28:38.288 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1002. 05:33:23.021 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1003. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1004. 05:33:23.021 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1005. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1006. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1007. 05:33:23.021 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1008. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1009. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1010. 05:33:23.021 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1011. 05:33:38.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1012. 05:38:38.313 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1013. 05:42:21.660 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605190527018316_9057722,callback data:{"amount":"35000","bill_no":"PD202605190527018316_9057722","sign":"dee52eb23d7e308ee460b990438c8a5d","sys_no":"602961"}
  1014. 05:42:21.660 [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 ?
  1015. 05:42:21.660 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1016. 05:42:21.660 [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 (? , ?)
  1017. 05:42:21.660 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1018. 05:42:21.660 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1019. 05:42:21.660 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605190527018316_9057722,signString:PD202605190527018316_9057722230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:dee52eb23d7e308ee460b990438c8a5d
  1020. 05:42:21.660 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  1021. 05:42:21.660 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605190527018316]
  1022. 05:42:21.816 [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=?
  1023. 05:42:21.816 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1024. 05:42:21.816 [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 ?
  1025. 05:42:21.816 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [1010]
  1026. 05:42:21.832 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1027. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20098]
  1028. 05:42:21.832 [http-nio-8004-exec-3] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779158541832,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605190527018316","V_DATE_TIME_V":"2026-05-19 05:42:21","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"04","V_APPLY_TIME_V":"2026-05-19 05:27:02","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605190527018316_9057722","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 05:42:21","V_LOGIN_V":"9057722","V_TRANSFORM_AMOUNT_V":"35000.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"5000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  1029. 05:42:21.832 [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=?
  1030. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [180.213.87.173]
  1031. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 05:27:02.0]
  1032. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [1010]
  1033. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1034. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 05:42:21 EEST 2026]
  1035. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1036. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1037. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1038. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1039. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1040. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1041. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1042. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20098]
  1043. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000.0000000000]
  1044. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1045. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1046. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [501064]
  1047. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1048. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 05:42:21 EEST 2026]
  1049. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605190527018316_9057722]
  1050. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000]
  1051. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1052. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [1010]
  1053. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000.0000000000]
  1054. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1055. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1056. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1057. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-19 15:27:02.0]
  1058. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Xx4I4al%2FxgUAD%2FI4bEuYfRd4tDf%2BxjjNG1DUHBlDMasnZ%2B2LFSB1AmoxFnpFpNuJr%2FECBcBKwG8UN2c0GrFrmP6FpU5IhO1FkaehLMk3Fi4%3D?in_order_id=935234603380670464&user_id=205208]
  1059. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057722]
  1060. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1061. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [行 于]
  1062. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1063. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1064. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1065. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1066. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1067. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1068. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1069. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1070. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1071. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1072. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1073. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1074. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1075. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1076. "code":"602961",
  1077. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1078. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1079. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1080. }]
  1081. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1082. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190527018316]
  1083. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000]
  1084. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1085. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1086. 05:42:21.832 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7863]
  1087. 05:43:38.316 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1088. 05:48:38.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1089. 05:53:38.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1090. 05:58:38.349 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1091. 06:03:38.362 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1092. 06:08:38.365 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1093. 06:13:38.376 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1094. 06:18:38.383 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1095. 06:23:38.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1096. 06:28:38.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1097. 06:33:38.422 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1098. 06:38:38.432 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1099. 06:43:38.441 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1100. 06:48:38.455 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1101. 06:53:38.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1102. 06:58:38.474 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1103. 07:03:38.481 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1104. 07:08:38.490 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1105. 07:13:38.496 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1106. 07:18:38.503 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1107. 07:23:38.506 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1108. 07:28:38.517 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1109. 07:33:38.532 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1110. 07:38:38.532 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1111. 07:43:38.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1112. 07:48:38.541 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1113. 07:53:38.544 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1114. 07:58:38.552 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1115. 07:59:02.741 [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
  1116. 07:59:02.741 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [2069]
  1117. 07:59:02.757 [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=?
  1118. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [123.168.118.86]
  1119. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-18 09:28:17.0]
  1120. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [786]
  1121. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [103.148.58.88]
  1122. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 07:59:02 EEST 2026]
  1123. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1124. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1125. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1126. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [2026-05-18 09:28:20.0]
  1127. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [-1]
  1128. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [2]
  1129. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1130. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20138]
  1131. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [200.0000000000]
  1132. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1133. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1134. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [青岛李沧支行]
  1135. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6236692390001371725]
  1136. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1137. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/786/bank/f11b35e0fb304b7ea7428ca33a01bd24.jpg]
  1138. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国建设银行-CBC]
  1139. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [志远 戴]
  1140. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500832]
  1141. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [1]
  1142. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1143. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1144. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1145. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [786]
  1146. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057476]
  1147. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1148. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1149. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [志远 戴]
  1150. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [1]
  1151. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1152. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1153. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  1154. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1155. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1156. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1157. 07:59:02.757 [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>
  1158. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1159. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1160. <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>
  1161. <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>
  1162. <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>
  1163. <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>
  1164. <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>
  1165. <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>
  1166. <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>]
  1167. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1168. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1169. 07:59:02.757 [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>
  1170. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1171. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1172. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1173. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1174. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1175. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1176. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1177. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1178. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1179. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1180. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1181. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1182. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202605180928179969]
  1183. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1184. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [1360.0000000000]
  1185. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1186. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [200.0000000000]
  1187. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1188. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [2]
  1189. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [76942319]
  1190. 07:59:02.757 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [55] as [BIGINT] - [2069]
  1191. 08:03:38.553 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1192. 08:08:38.568 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1193. 08:13:38.583 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1194. 08:18:38.588 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1195. 08:23:38.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1196. 08:28:38.602 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1197. 08:33:38.614 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1198. 08:38:38.630 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1199. 08:43:38.643 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1200. 08:48:38.647 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1201. 08:53:38.657 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1202. 08:58:38.660 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1203. 09:03:38.668 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1204. 09:08:38.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1205. 09:08:40.060 [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
  1206. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1207. 09:08:40.076 [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 (? , ?)
  1208. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1209. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1210. 09:08:40.076 [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=?
  1211. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1212. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1213. 09:08:40.076 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1214. 09:11:35.956 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  1215. 09:11:35.956 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1216. 09:11:35.956 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1217. 09:11:35.956 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1218. 09:11:35.956 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1219. 09:11:35.972 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1220. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [919]
  1221. 09:11:35.972 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1222. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [919]
  1223. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057634]
  1224. 09:11:35.972 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1225. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1226. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1227. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1228. 09:11:35.972 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1229. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1230. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1231. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1232. 09:11:35.972 [http-nio-8004-exec-7] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1233. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1234. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 09:11:35 EEST 2026]
  1235. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [919]
  1236. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1237. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1238. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1239. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1240. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1241. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1242. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1243. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1244. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1245. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1246. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [800]
  1247. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1248. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1249. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500971]
  1250. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1251. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1252. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1253. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5600.0000000000]
  1254. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1255. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [919]
  1256. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [800]
  1257. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1258. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1259. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1260. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 19:11:35 EEST 2026]
  1261. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1262. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057634]
  1263. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1264. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [秀泰 郁]
  1265. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1266. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1267. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1268. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1269. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1270. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1271. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1272. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1273. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1274. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1275. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1276. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1277. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1278. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1279. "code":"602961",
  1280. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1281. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1282. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1283. }]
  1284. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1285. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190911354128]
  1286. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5600.0000000000]
  1287. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1288. 09:11:35.972 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1289. 09:11:35.972 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605190911354128_9057634,加密字符串为:order_amount=5600&order_id=PD202605190911354128_9057634&order_ip=154.12.178.16&order_time=2026-05-19+09%3A11%3A35&pay_user_name=%E7%A7%80%E6%B3%B0%E9%83%81&sys_no=602961&user_id=500971469ad7b6cca3036e29f721606999b7fc,加密结果sign:a5ec8ec436e527240be687657b40ba4f
  1290. 09:11:35.972 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605190911354128_9057634","order_amount":"5600","sys_no":"602961","user_id":"500971","order_ip":"154.12.178.16","order_time":"2026-05-19 09:11:35","pay_user_name":"秀泰郁","sign":"a5ec8ec436e527240be687657b40ba4f"}
  1291. 09:11:36.160 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935291119819292672","send_url":"https://syt.ymkjmall.com/created/?data=tdZrEo%2Fj%2FRow5%2FyYXhA7mQq59Al%2FSNODsVCjmCb2u3O4vlM2da1BA7vrrG6BwM8NfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D","user_id":"205208","order_id":"PD202605190911354128_9057634"},"status":"success"}
  1292. 09:11:36.160 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605190911354128_9057634,请求url:https://syt.ymkjmall.com/created/?data=tdZrEo%2Fj%2FRow5%2FyYXhA7mQq59Al%2FSNODsVCjmCb2u3O4vlM2da1BA7vrrG6BwM8NfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D?in_order_id=935291119819292672&user_id=205208
  1293. 09:11:36.160 [http-nio-8004-exec-7] 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=?
  1294. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1295. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 09:11:35 EEST 2026]
  1296. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [919]
  1297. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1298. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1299. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1300. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1301. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1302. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1303. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1304. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1305. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1306. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1307. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [800]
  1308. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1309. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1310. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500971]
  1311. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1312. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1313. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1314. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5600.0000000000]
  1315. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1316. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [919]
  1317. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [800]
  1318. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1319. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1320. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1321. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 19:11:35 EEST 2026]
  1322. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=tdZrEo%2Fj%2FRow5%2FyYXhA7mQq59Al%2FSNODsVCjmCb2u3O4vlM2da1BA7vrrG6BwM8NfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D?in_order_id=935291119819292672&user_id=205208]
  1323. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057634]
  1324. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1325. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [秀泰 郁]
  1326. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1327. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1328. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1329. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1330. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1331. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1332. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1333. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1334. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1335. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1336. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1337. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1338. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1339. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1340. "code":"602961",
  1341. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1342. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1343. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1344. }]
  1345. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1346. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605190911354128]
  1347. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5600.0000000000]
  1348. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1349. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1350. 09:11:36.160 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7864]
  1351. 09:13:38.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1352. 09:13:54.276 [http-nio-8004-exec-7] 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
  1353. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1354. 09:13:54.276 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1355. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1356. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1357. 09:13:54.276 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1358. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1359. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1360. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1361. 09:13:54.276 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1362. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1363. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1364. 09:13:54.276 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1365. 09:14:50.462 [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 (? , ?)
  1366. 09:14:50.462 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1367. 09:14:50.462 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1368. 09:15:43.399 [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_.valid=? order by sysremitch0_.sub_index asc
  1369. 09:15:43.399 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1370. 09:15:43.399 [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 (? , ?)
  1371. 09:15:43.399 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1372. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1373. 09:15:43.415 [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=?
  1374. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1375. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1376. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1377. 09:15:43.415 [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=?
  1378. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1379. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1380. 09:15:43.415 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1381. 09:18:38.697 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1382. 09:23:38.703 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1383. 09:28:38.708 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1384. 09:33:38.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1385. 09:38:38.720 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1386. 09:43:38.736 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1387. 09:48:38.752 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1388. 09:53:38.753 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1389. 09:58:38.764 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1390. 10:03:38.777 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1391. 10:08:38.780 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1392. 10:13:38.792 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1393. 10:18:38.802 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1394. 10:23:38.810 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1395. 10:28:38.818 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1396. 10:33:38.833 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1397. 10:38:38.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1398. 10:43:38.846 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1399. 10:48:38.861 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1400. 10:53:38.869 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1401. 10:58:38.876 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1402. 11:03:38.885 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1403. 11:08:38.901 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1404. 11:13:38.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1405. 11:18:38.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1406. 11:23:38.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1407. 11:28:38.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1408. 11:33:38.945 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1409. 11:38:38.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1410. 11:43:38.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1411. 11:48:38.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1412. 11:53:38.963 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1413. 11:58:38.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1414. 12:03:38.969 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1415. 12:08:38.970 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1416. 12:13:38.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1417. 12:18:38.972 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1418. 12:23:38.987 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1419. 12:28:39.003 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1420. 12:33:39.015 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1421. 12:38:39.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1422. 12:43:39.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1423. 12:48:39.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1424. 12:53:39.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1425. 12:58:39.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1426. 13:03:39.061 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1427. 13:08:39.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1428. 13:11:57.993 [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
  1429. 13:11:57.993 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1430. 13:11:58.009 [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 (? , ?)
  1431. 13:11:58.009 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1432. 13:11:58.009 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1433. 13:11:58.009 [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=?
  1434. 13:11:58.009 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1435. 13:11:58.009 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1436. 13:11:58.009 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1437. 13:12:22.242 [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 ?
  1438. 13:12:22.242 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1439. 13:12:22.242 [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 (? , ?)
  1440. 13:12:22.242 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1441. 13:12:22.242 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1442. 13:12:22.242 [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 ?
  1443. 13:12:22.242 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [919]
  1444. 13:12:22.258 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1445. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [919]
  1446. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057634]
  1447. 13:12:22.258 [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=?
  1448. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1449. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1450. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1451. 13:12:22.258 [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=?
  1452. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1453. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1454. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1455. 13:12:22.258 [http-nio-8004-exec-8] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1456. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1457. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 13:12:22 EEST 2026]
  1458. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [919]
  1459. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1460. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1461. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1462. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1463. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1464. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1465. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1466. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1467. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1468. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1469. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [800]
  1470. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1471. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1472. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500971]
  1473. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1474. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1475. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1476. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5600.0000000000]
  1477. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1478. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [919]
  1479. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [800]
  1480. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1481. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1482. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1483. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 23:12:22 EEST 2026]
  1484. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1485. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057634]
  1486. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1487. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [秀泰 郁]
  1488. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1489. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1490. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1491. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1492. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1493. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1494. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1495. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1496. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1497. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1498. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1499. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1500. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1501. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1502. "code":"602961",
  1503. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1504. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1505. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1506. }]
  1507. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1508. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191312228222]
  1509. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5600.0000000000]
  1510. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1511. 13:12:22.258 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1512. 13:12:22.258 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605191312228222_9057634,加密字符串为:order_amount=5600&order_id=PD202605191312228222_9057634&order_ip=154.12.178.16&order_time=2026-05-19+13%3A12%3A22&pay_user_name=%E7%A7%80%E6%B3%B0%E9%83%81&sys_no=602961&user_id=500971469ad7b6cca3036e29f721606999b7fc,加密结果sign:1fb6d3422f00ba75a3d3a8c563ffa63c
  1513. 13:12:22.258 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605191312228222_9057634","order_amount":"5600","sys_no":"602961","user_id":"500971","order_ip":"154.12.178.16","order_time":"2026-05-19 13:12:22","pay_user_name":"秀泰郁","sign":"1fb6d3422f00ba75a3d3a8c563ffa63c"}
  1514. 13:12:22.461 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935351714635616256","send_url":"https://syt.ymkjmall.com/created/?data=MxMTc%2BkjEsbMbiceRzMqfRhc9drL4PTAh%2F77l%2BTvSnE90ng9bxKF0%2BOEhQUlFcVUfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D","user_id":"205208","order_id":"PD202605191312228222_9057634"},"status":"success"}
  1515. 13:12:22.461 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605191312228222_9057634,请求url:https://syt.ymkjmall.com/created/?data=MxMTc%2BkjEsbMbiceRzMqfRhc9drL4PTAh%2F77l%2BTvSnE90ng9bxKF0%2BOEhQUlFcVUfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D?in_order_id=935351714635616256&user_id=205208
  1516. 13:12:22.461 [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=?
  1517. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1518. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 13:12:22 EEST 2026]
  1519. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [919]
  1520. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1521. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1522. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1523. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1524. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1525. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1526. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1527. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1528. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1529. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1530. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [800]
  1531. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1532. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1533. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500971]
  1534. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1535. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1536. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1537. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5600.0000000000]
  1538. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1539. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [919]
  1540. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [800]
  1541. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1542. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1543. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1544. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Tue May 19 23:12:22 EEST 2026]
  1545. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=MxMTc%2BkjEsbMbiceRzMqfRhc9drL4PTAh%2F77l%2BTvSnE90ng9bxKF0%2BOEhQUlFcVUfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D?in_order_id=935351714635616256&user_id=205208]
  1546. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057634]
  1547. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1548. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [秀泰 郁]
  1549. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1550. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1551. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1552. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1553. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1554. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1555. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1556. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1557. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1558. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1559. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1560. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1561. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1562. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1563. "code":"602961",
  1564. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1565. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1566. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1567. }]
  1568. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1569. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191312228222]
  1570. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5600.0000000000]
  1571. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1572. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1573. 13:12:22.477 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7865]
  1574. 13:13:39.079 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1575. 13:16:59.872 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605191312228222_9057634,callback data:{"amount":"5600","bill_no":"PD202605191312228222_9057634","sign":"76397ff5991de95b56e99e16f2144fa6","sys_no":"602961"}
  1576. 13:16:59.872 [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 ?
  1577. 13:16:59.872 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1578. 13:16:59.872 [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 (? , ?)
  1579. 13:16:59.872 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1580. 13:16:59.872 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1581. 13:16:59.872 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605191312228222_9057634,signString:PD202605191312228222_9057634230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:76397ff5991de95b56e99e16f2144fa6
  1582. 13:16:59.872 [http-nio-8004-exec-9] 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
  1583. 13:16:59.872 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605191312228222]
  1584. 13:17:00.076 [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=?
  1585. 13:17:00.076 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1586. 13:17:00.076 [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 ?
  1587. 13:17:00.076 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [919]
  1588. 13:17:00.076 [http-nio-8004-exec-9] 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 ?
  1589. 13:17:00.076 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20150]
  1590. 13:17:00.091 [http-nio-8004-exec-9] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779185820091,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605191312228222","V_DATE_TIME_V":"2026-05-19 13:17:00","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"13","V_APPLY_TIME_V":"2026-05-19 13:12:22","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605191312228222_9057634","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 13:17:00","V_LOGIN_V":"9057634","V_TRANSFORM_AMOUNT_V":"5600.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"800.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  1591. 13:17:00.091 [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=?
  1592. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1593. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 13:12:22.0]
  1594. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [919]
  1595. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1596. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 13:17:00 EEST 2026]
  1597. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1598. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1599. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1600. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1601. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1602. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1603. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1604. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20150]
  1605. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [800.0000000000]
  1606. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1607. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1608. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500971]
  1609. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1610. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 13:16:59 EEST 2026]
  1611. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605191312228222_9057634]
  1612. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5600]
  1613. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1614. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [919]
  1615. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [800.0000000000]
  1616. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1617. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1618. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1619. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-19 23:12:22.0]
  1620. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=MxMTc%2BkjEsbMbiceRzMqfRhc9drL4PTAh%2F77l%2BTvSnE90ng9bxKF0%2BOEhQUlFcVUfdCi5to4e9CcXnRt7Ou2kVsxFt2nAdhWVJnXJ3wF6fE%3D?in_order_id=935351714635616256&user_id=205208]
  1621. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057634]
  1622. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1623. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [秀泰 郁]
  1624. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1625. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1626. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1627. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1628. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1629. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1630. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1631. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1632. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1633. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1634. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1635. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1636. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1637. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1638. "code":"602961",
  1639. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1640. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1641. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1642. }]
  1643. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1644. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191312228222]
  1645. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5600]
  1646. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1647. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1648. 13:17:00.091 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7865]
  1649. 13:18:39.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1650. 13:23:39.096 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1651. 13:28:39.099 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1652. 13:33:39.111 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1653. 13:38:39.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1654. 13:43:39.121 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1655. 13:48:39.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1656. 13:53:39.128 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1657. 13:58:39.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1658. 14:03:39.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1659. 14:08:39.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1660. 14:13:39.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1661. 14:18:39.163 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1662. 14:23:39.168 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1663. 14:28:39.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1664. 14:33:39.190 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1665. 14:38:39.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1666. 14:43:39.206 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1667. 14:48:39.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1668. 14:53:39.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1669. 14:58:39.240 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1670. 15:03:39.254 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1671. 15:08:39.259 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1672. 15:13:39.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1673. 15:18:39.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1674. 15:23:39.280 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1675. 15:28:39.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1676. 15:33:39.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1677. 15:38:39.316 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1678. 15:43:39.319 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1679. 15:48:39.335 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1680. 15:53:39.346 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1681. 15:58:39.358 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1682. 16:03:39.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1683. 16:08:39.377 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1684. 16:13:39.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1685. 16:18:39.389 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1686. 16:20:30.956 [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
  1687. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1688. 16:20:30.972 [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 (? , ?)
  1689. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1690. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1691. 16:20:30.972 [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=?
  1692. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1693. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1694. 16:20:30.972 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1695. 16:20:31.253 [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
  1696. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1697. 16:20:31.253 [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 (? , ?)
  1698. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1699. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1700. 16:20:31.253 [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=?
  1701. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1702. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1703. 16:20:31.253 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1704. 16:20:45.237 [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 ?
  1705. 16:20:45.237 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1706. 16:20:45.253 [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 (? , ?)
  1707. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1708. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1709. 16:20:45.253 [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 ?
  1710. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  1711. 16:20:45.253 [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 ?
  1712. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  1713. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057181]
  1714. 16:20:45.253 [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=?
  1715. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1716. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1717. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1718. 16:20:45.253 [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=?
  1719. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1720. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1721. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1722. 16:20:45.253 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1723. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1724. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 16:20:45 EEST 2026]
  1725. 16:20:45.253 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  1726. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1727. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1728. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1729. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1730. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1731. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1732. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1733. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1734. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1735. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  1736. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1737. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1738. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1739. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  1740. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1741. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1742. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1743. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1744. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1745. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  1746. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1747. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1748. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1749. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1750. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 02:20:45 EEST 2026]
  1751. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1752. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  1753. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1754. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  1755. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1756. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1757. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1758. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1759. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1760. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1761. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1762. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1763. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1764. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1765. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1766. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1767. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1768. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1769. "code":"602961",
  1770. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1771. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1772. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1773. }]
  1774. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1775. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191620453863]
  1776. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1777. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1778. 16:20:45.268 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1779. 16:20:45.268 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605191620453863_9057181,加密字符串为:order_amount=3500&order_id=PD202605191620453863_9057181&order_ip=154.12.178.16&order_time=2026-05-19+16%3A20%3A45&pay_user_name=%E9%9B%B7%E6%9D%AD%E5%BC%A0&sys_no=602961&user_id=500871469ad7b6cca3036e29f721606999b7fc,加密结果sign:78f19fdf466b4bb076bfb0082be09179
  1780. 16:20:45.268 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605191620453863_9057181","order_amount":"3500","sys_no":"602961","user_id":"500871","order_ip":"154.12.178.16","order_time":"2026-05-19 16:20:45","pay_user_name":"雷杭张","sign":"78f19fdf466b4bb076bfb0082be09179"}
  1781. 16:20:45.456 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935399124900536320","send_url":"https://syt.ymkjmall.com/created/?data=jRKZh52uKg3TT7%2BrUzqgexyj6w0RP5XZJwxEhjpIsKPWnPmxn7cflUFlE5BoAmrvho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202605191620453863_9057181"},"status":"success"}
  1782. 16:20:45.456 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605191620453863_9057181,请求url:https://syt.ymkjmall.com/created/?data=jRKZh52uKg3TT7%2BrUzqgexyj6w0RP5XZJwxEhjpIsKPWnPmxn7cflUFlE5BoAmrvho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935399124900536320&user_id=205208
  1783. 16:20:45.456 [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=?
  1784. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1785. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 16:20:45 EEST 2026]
  1786. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  1787. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1788. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1789. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1790. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1791. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1792. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1793. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1794. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1795. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1796. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  1797. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1798. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1799. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1800. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  1801. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1802. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1803. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1804. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1805. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1806. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  1807. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1808. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1809. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1810. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1811. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 02:20:45 EEST 2026]
  1812. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=jRKZh52uKg3TT7%2BrUzqgexyj6w0RP5XZJwxEhjpIsKPWnPmxn7cflUFlE5BoAmrvho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935399124900536320&user_id=205208]
  1813. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  1814. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1815. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  1816. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1817. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1818. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1819. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1820. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1821. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1822. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1823. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1824. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1825. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1826. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1827. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1828. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1829. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1830. "code":"602961",
  1831. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1832. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1833. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1834. }]
  1835. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1836. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191620453863]
  1837. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1838. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1839. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1840. 16:20:45.456 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7866]
  1841. 16:23:39.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1842. 16:28:39.401 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1843. 16:30:53.320 [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
  1844. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1845. 16:30:53.320 [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 (? , ?)
  1846. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1847. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1848. 16:30:53.320 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1849. 16:30:53.320 [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=?
  1850. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1851. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1852. 16:30:53.320 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1853. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1854. 16:30:53.320 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1855. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1856. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1857. 16:30:53.320 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1858. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1859. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1860. 16:30:53.320 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1861. 16:31:04.226 [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 ?
  1862. 16:31:04.226 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1863. 16:31:04.226 [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 (? , ?)
  1864. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1865. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1866. 16:31:04.241 [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 ?
  1867. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1868. 16:31:04.241 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1869. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  1870. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057617]
  1871. 16:31:04.241 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1872. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1873. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1874. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1875. 16:31:04.241 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  1876. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1877. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1878. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1879. 16:31:04.241 [http-nio-8004-exec-10] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1880. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1881. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 16:31:04 EEST 2026]
  1882. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1883. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1884. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1885. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1886. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1887. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1888. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1889. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1890. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1891. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1892. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1893. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1894. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1895. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1896. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1897. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1898. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1899. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1900. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1901. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1902. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1903. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1904. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1905. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1906. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1907. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 02:31:04 EEST 2026]
  1908. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1909. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1910. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1911. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1912. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1913. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1914. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1915. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1916. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1917. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1918. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1919. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1920. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1921. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1922. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1923. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1924. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1925. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1926. "code":"602961",
  1927. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1928. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1929. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1930. }]
  1931. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1932. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191631049609]
  1933. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1934. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1935. 16:31:04.241 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1936. 16:31:04.257 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605191631049609_9057617,加密字符串为:order_amount=3500&order_id=PD202605191631049609_9057617&order_ip=154.12.178.16&order_time=2026-05-19+16%3A31%3A04&pay_user_name=%E6%B3%BD%E6%B8%85%E5%BC%A0&sys_no=602961&user_id=500911469ad7b6cca3036e29f721606999b7fc,加密结果sign:95420db1144e1196d0527d5534a61a3e
  1937. 16:31:04.257 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605191631049609_9057617","order_amount":"3500","sys_no":"602961","user_id":"500911","order_ip":"154.12.178.16","order_time":"2026-05-19 16:31:04","pay_user_name":"泽清张","sign":"95420db1144e1196d0527d5534a61a3e"}
  1938. 16:31:04.460 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935401721300533248","send_url":"https://syt.ymkjmall.com/created/?data=WB7kTyo5aCiRpIz8ghg8kRxafITsvvY05XrTOISZzhhBsclvM%2Bd4BxtsVv7YnfgNqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202605191631049609_9057617"},"status":"success"}
  1939. 16:31:04.460 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605191631049609_9057617,请求url:https://syt.ymkjmall.com/created/?data=WB7kTyo5aCiRpIz8ghg8kRxafITsvvY05XrTOISZzhhBsclvM%2Bd4BxtsVv7YnfgNqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935401721300533248&user_id=205208
  1940. 16:31:04.460 [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=?
  1941. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  1942. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 16:31:04 EEST 2026]
  1943. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  1944. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1945. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1946. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1947. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1948. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1949. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1950. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1951. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1952. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1953. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  1954. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1955. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1956. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1957. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  1958. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1959. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1960. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1961. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  1962. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1963. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  1964. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1965. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1966. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1967. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1968. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 02:31:04 EEST 2026]
  1969. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=WB7kTyo5aCiRpIz8ghg8kRxafITsvvY05XrTOISZzhhBsclvM%2Bd4BxtsVv7YnfgNqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935401721300533248&user_id=205208]
  1970. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  1971. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1972. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  1973. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1974. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1975. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1976. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1977. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1978. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1979. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1980. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1981. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1982. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1983. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1984. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1985. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1986. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1987. "code":"602961",
  1988. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1989. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1990. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  1991. }]
  1992. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1993. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191631049609]
  1994. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  1995. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1996. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1997. 16:31:04.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7867]
  1998. 16:33:27.318 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  1999. 16:33:27.334 [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
  2000. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2001. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2002. 16:33:27.334 [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 (? , ?)
  2003. 16:33:27.334 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  2004. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2005. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2006. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2007. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2008. 16:33:27.334 [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=?
  2009. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2010. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2011. 16:33:27.334 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2012. 16:33:27.334 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  2013. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2014. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2015. 16:33:27.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2016. 16:33:39.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2017. 16:33:41.303 [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 (? , ?)
  2018. 16:33:41.303 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  2019. 16:33:41.303 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  2020. 16:33:42.600 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605191631049609_9057617,callback data:{"amount":"3500","bill_no":"PD202605191631049609_9057617","sign":"4adcd496ad09dc6925f21d7676509b89","sys_no":"602961"}
  2021. 16:33:42.600 [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 ?
  2022. 16:33:42.600 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2023. 16:33:42.600 [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 (? , ?)
  2024. 16:33:42.600 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2025. 16:33:42.600 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2026. 16:33:42.600 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605191631049609_9057617,signString:PD202605191631049609_9057617230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:4adcd496ad09dc6925f21d7676509b89
  2027. 16:33:42.600 [http-nio-8004-exec-2] 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
  2028. 16:33:42.600 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605191631049609]
  2029. 16:33:42.788 [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=?
  2030. 16:33:42.788 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2031. 16:33:42.788 [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 ?
  2032. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [863]
  2033. 16:33:42.803 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  2034. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20130]
  2035. 16:33:42.803 [http-nio-8004-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779197622803,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605191631049609","V_DATE_TIME_V":"2026-05-19 16:33:42","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"11","V_APPLY_TIME_V":"2026-05-19 16:31:04","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605191631049609_9057617","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 16:33:42","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"}
  2036. 16:33:42.803 [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=?
  2037. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2038. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 16:31:04.0]
  2039. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [863]
  2040. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2041. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 16:33:42 EEST 2026]
  2042. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2043. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2044. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2045. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2046. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2047. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2048. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2049. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20130]
  2050. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  2051. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2052. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2053. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500911]
  2054. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2055. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 16:33:42 EEST 2026]
  2056. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605191631049609_9057617]
  2057. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  2058. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2059. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [863]
  2060. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  2061. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2062. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2063. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2064. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-20 02:31:04.0]
  2065. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=WB7kTyo5aCiRpIz8ghg8kRxafITsvvY05XrTOISZzhhBsclvM%2Bd4BxtsVv7YnfgNqOF5HOXR4FaKVckScQfOq5jZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935401721300533248&user_id=205208]
  2066. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057617]
  2067. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2068. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [泽清 张]
  2069. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2070. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2071. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2072. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2073. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2074. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2075. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2076. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2077. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2078. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2079. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2080. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2081. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2082. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2083. "code":"602961",
  2084. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2085. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2086. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2087. }]
  2088. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2089. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191631049609]
  2090. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  2091. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2092. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2093. 16:33:42.803 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7867]
  2094. 16:38:39.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2095. 16:43:39.429 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2096. 16:48:39.433 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2097. 16:53:39.439 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2098. 16:54:09.797 [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 (? , ?)
  2099. 16:54:09.813 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  2100. 16:54:09.813 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  2101. 16:58:04.620 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202605191620453863_9057181,callback data:{"bill_no":"PD202605191620453863_9057181","bill_status":"2","sign":"e4f5616051650a03e42a495b370356a5","sys_no":"602961"}
  2102. 16:58:04.620 [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 ?
  2103. 16:58:04.620 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2104. 16:58:04.620 [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 (? , ?)
  2105. 16:58:04.620 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2106. 16:58:04.620 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2107. 16:58:04.620 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202605191620453863_9057181,signString:bill_no=PD202605191620453863_9057181&bill_status=2&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:e4f5616051650a03e42a495b370356a5
  2108. 16:58:04.620 [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
  2109. 16:58:04.620 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605191620453863]
  2110. 16:58:04.839 [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=?
  2111. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2112. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 16:20:45.0]
  2113. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2114. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2115. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 16:58:04 EEST 2026]
  2116. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2117. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2118. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2119. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2120. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2121. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2122. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2123. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2124. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  2125. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2126. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2127. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2128. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  2129. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 16:58:04 EEST 2026]
  2130. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605191620453863_9057181]
  2131. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  2132. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2133. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2134. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  2135. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2136. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2137. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2138. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-20 02:20:45.0]
  2139. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=jRKZh52uKg3TT7%2BrUzqgexyj6w0RP5XZJwxEhjpIsKPWnPmxn7cflUFlE5BoAmrvho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935399124900536320&user_id=205208]
  2140. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2141. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2142. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2143. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2144. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2145. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2146. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2147. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2148. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2149. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2150. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2151. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2152. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2153. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2154. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2155. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2156. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2157. "code":"602961",
  2158. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2159. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2160. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2161. }]
  2162. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2163. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191620453863]
  2164. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  2165. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2166. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2167. 16:58:04.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7866]
  2168. 16:58:39.451 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2169. 16:59:13.216 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605191620453863_9057181,callback data:{"amount":"3500","bill_no":"PD202605191620453863_9057181","sign":"25094d24595956eef0c20dba61f52871","sys_no":"602961"}
  2170. 16:59:13.216 [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 ?
  2171. 16:59:13.216 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2172. 16:59:13.216 [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 (? , ?)
  2173. 16:59:13.216 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2174. 16:59:13.216 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2175. 16:59:13.216 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605191620453863_9057181,signString:PD202605191620453863_9057181230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:25094d24595956eef0c20dba61f52871
  2176. 16:59:13.216 [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
  2177. 16:59:13.216 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605191620453863]
  2178. 16:59:13.372 [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=?
  2179. 16:59:13.372 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2180. 16:59:13.372 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  2181. 16:59:13.372 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2182. 16:59:13.372 [http-nio-8004-exec-6] 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 ?
  2183. 16:59:13.372 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20145]
  2184. 16:59:13.372 [http-nio-8004-exec-6] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779199153372,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605191620453863","V_DATE_TIME_V":"2026-05-19 16:59:13","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"12","V_APPLY_TIME_V":"2026-05-19 16:20:45","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605191620453863_9057181","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 16:59:13","V_LOGIN_V":"9057181","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"}
  2185. 16:59:13.388 [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=?
  2186. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2187. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 16:20:45.0]
  2188. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2189. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2190. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 16:59:13 EEST 2026]
  2191. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2192. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2193. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2194. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2195. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2196. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2197. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2198. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2199. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  2200. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2201. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2202. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2203. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2204. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 16:59:13 EEST 2026]
  2205. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605191620453863_9057181]
  2206. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500]
  2207. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2208. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2209. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  2210. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2211. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2212. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2213. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-20 02:20:45.0]
  2214. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=jRKZh52uKg3TT7%2BrUzqgexyj6w0RP5XZJwxEhjpIsKPWnPmxn7cflUFlE5BoAmrvho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935399124900536320&user_id=205208]
  2215. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2216. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2217. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2218. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2219. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2220. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2221. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2222. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2223. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2224. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2225. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2226. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2227. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2228. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2229. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2230. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2231. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2232. "code":"602961",
  2233. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2234. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2235. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2236. }]
  2237. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2238. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191620453863]
  2239. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500]
  2240. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2241. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2242. 16:59:13.388 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7866]
  2243. 17:03:39.453 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2244. 17:08:39.466 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2245. 17:13:39.468 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2246. 17:18:39.470 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2247. 17:23:33.108 [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
  2248. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2249. 17:23:33.108 [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 (? , ?)
  2250. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2251. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2252. 17:23:33.108 [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=?
  2253. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2254. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2255. 17:23:33.108 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2256. 17:23:39.483 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2257. 17:23:51.327 [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 ?
  2258. 17:23:51.327 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2259. 17:23:51.327 [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 (? , ?)
  2260. 17:23:51.327 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2261. 17:23:51.327 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2262. 17:23:51.342 [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 ?
  2263. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2264. 17:23:51.342 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  2265. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2266. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057181]
  2267. 17:23:51.342 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  2268. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2269. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2270. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2271. 17:23:51.342 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  2272. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2273. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2274. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2275. 17:23:51.342 [http-nio-8004-exec-10] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2276. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2277. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 17:23:51 EEST 2026]
  2278. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2279. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2280. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2281. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2282. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2283. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2284. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2285. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2286. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2287. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2288. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2289. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000]
  2290. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2291. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2292. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2293. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2294. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2295. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2296. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [7000.0000000000]
  2297. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2298. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2299. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1000]
  2300. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2301. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2302. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2303. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 03:23:51 EEST 2026]
  2304. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2305. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2306. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2307. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2308. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2309. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2310. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2311. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2312. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2313. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2314. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2315. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2316. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2317. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2318. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2319. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2320. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2321. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2322. "code":"602961",
  2323. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2324. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2325. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2326. }]
  2327. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2328. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191723516217]
  2329. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [7000.0000000000]
  2330. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2331. 17:23:51.342 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2332. 17:23:51.342 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605191723516217_9057181,加密字符串为:order_amount=7000&order_id=PD202605191723516217_9057181&order_ip=154.12.178.16&order_time=2026-05-19+17%3A23%3A51&pay_user_name=%E9%9B%B7%E6%9D%AD%E5%BC%A0&sys_no=602961&user_id=500871469ad7b6cca3036e29f721606999b7fc,加密结果sign:a1627b6eeb3699090f189b1e876b720d
  2333. 17:23:51.342 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605191723516217_9057181","order_amount":"7000","sys_no":"602961","user_id":"500871","order_ip":"154.12.178.16","order_time":"2026-05-19 17:23:51","pay_user_name":"雷杭张","sign":"a1627b6eeb3699090f189b1e876b720d"}
  2334. 17:23:51.545 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935415005554704384","send_url":"https://syt.ymkjmall.com/created/?data=Uiz%2BFMFPHuWIMwFyTcDxwjdF5OcQwAxQ19%2FTOLQ1JcNXd2WQ0KjTaxGYCeHI4Kosho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202605191723516217_9057181"},"status":"success"}
  2335. 17:23:51.545 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605191723516217_9057181,请求url:https://syt.ymkjmall.com/created/?data=Uiz%2BFMFPHuWIMwFyTcDxwjdF5OcQwAxQ19%2FTOLQ1JcNXd2WQ0KjTaxGYCeHI4Kosho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935415005554704384&user_id=205208
  2336. 17:23:51.545 [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=?
  2337. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2338. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 17:23:51 EEST 2026]
  2339. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2340. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2341. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2342. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2343. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2344. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2345. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2346. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2347. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2348. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2349. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2350. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000]
  2351. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2352. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2353. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2354. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2355. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2356. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2357. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [7000.0000000000]
  2358. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2359. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2360. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1000]
  2361. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2362. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2363. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2364. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 03:23:51 EEST 2026]
  2365. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Uiz%2BFMFPHuWIMwFyTcDxwjdF5OcQwAxQ19%2FTOLQ1JcNXd2WQ0KjTaxGYCeHI4Kosho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935415005554704384&user_id=205208]
  2366. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2367. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2368. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2369. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2370. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2371. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2372. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2373. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2374. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2375. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2376. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2377. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2378. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2379. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2380. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2381. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2382. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2383. "code":"602961",
  2384. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2385. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2386. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2387. }]
  2388. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2389. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191723516217]
  2390. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [7000.0000000000]
  2391. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2392. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2393. 17:23:51.545 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7868]
  2394. 17:24:42.911 [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
  2395. 17:24:42.911 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2396. 17:24:42.926 [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 (? , ?)
  2397. 17:24:42.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2398. 17:24:42.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2399. 17:24:42.926 [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=?
  2400. 17:24:42.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2401. 17:24:42.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2402. 17:24:42.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2403. 17:26:21.207 [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
  2404. 17:26:21.207 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2405. 17:26:21.207 [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 (? , ?)
  2406. 17:26:21.223 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2407. 17:26:21.223 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2408. 17:26:21.223 [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=?
  2409. 17:26:21.223 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2410. 17:26:21.223 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2411. 17:26:21.223 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2412. 17:26:42.723 [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 ?
  2413. 17:26:42.723 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2414. 17:26:42.723 [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 (? , ?)
  2415. 17:26:42.723 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2416. 17:26:42.723 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2417. 17:26:42.739 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  2418. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2419. 17:26:42.739 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  2420. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2421. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057181]
  2422. 17:26:42.739 [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=?
  2423. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2424. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2425. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2426. 17:26:42.739 [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=?
  2427. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2428. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2429. 17:26:42.739 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2430. 17:26:42.739 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2431. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2432. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 17:26:42 EEST 2026]
  2433. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2434. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2435. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2436. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2437. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2438. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2439. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2440. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2441. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2442. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2443. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2444. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000]
  2445. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2446. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2447. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2448. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2449. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2450. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2451. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [7000.0000000000]
  2452. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2453. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2454. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1000]
  2455. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2456. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2457. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2458. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 03:26:42 EEST 2026]
  2459. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2460. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2461. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2462. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2463. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2464. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2465. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2466. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2467. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2468. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2469. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2470. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2471. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2472. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2473. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2474. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2475. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2476. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2477. "code":"602961",
  2478. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2479. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2480. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2481. }]
  2482. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2483. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191726420695]
  2484. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [7000.0000000000]
  2485. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2486. 17:26:42.755 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2487. 17:26:42.755 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202605191726420695_9057181,加密字符串为:order_amount=7000&order_id=PD202605191726420695_9057181&order_ip=154.12.178.16&order_time=2026-05-19+17%3A26%3A42&pay_user_name=%E9%9B%B7%E6%9D%AD%E5%BC%A0&sys_no=602961&user_id=500871469ad7b6cca3036e29f721606999b7fc,加密结果sign:ea584a85b036d5e2e07cfdccc63e9d8e
  2488. 17:26:42.755 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://api.nowpayment.vip/UtInRecordApi/orderGateWay,params:{"order_id":"PD202605191726420695_9057181","order_amount":"7000","sys_no":"602961","user_id":"500871","order_ip":"154.12.178.16","order_time":"2026-05-19 17:26:42","pay_user_name":"雷杭张","sign":"ea584a85b036d5e2e07cfdccc63e9d8e"}
  2489. 17:26:42.911 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"code":111,"msg":"成功","data":{"order_no":"935415724387094528","send_url":"https://syt.ymkjmall.com/created/?data=Z5fV1pJ%2BL%2FFoY4vpb7skdAoMxM%2FRZD85Teo1MB7rYM5ezGnCX5252yXegVjrt0G0ho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D","user_id":"205208","order_id":"PD202605191726420695_9057181"},"status":"success"}
  2490. 17:26:42.911 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202605191726420695_9057181,请求url:https://syt.ymkjmall.com/created/?data=Z5fV1pJ%2BL%2FFoY4vpb7skdAoMxM%2FRZD85Teo1MB7rYM5ezGnCX5252yXegVjrt0G0ho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935415724387094528&user_id=205208
  2491. 17:26:42.911 [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=?
  2492. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2493. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Tue May 19 17:26:42 EEST 2026]
  2494. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2495. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2496. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2497. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2498. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2499. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2500. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2501. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2502. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2503. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2504. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2505. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000]
  2506. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2507. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2508. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2509. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2510. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2511. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2512. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [7000.0000000000]
  2513. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2514. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2515. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1000]
  2516. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2517. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2518. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2519. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed May 20 03:26:42 EEST 2026]
  2520. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Z5fV1pJ%2BL%2FFoY4vpb7skdAoMxM%2FRZD85Teo1MB7rYM5ezGnCX5252yXegVjrt0G0ho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935415724387094528&user_id=205208]
  2521. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2522. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2523. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2524. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2525. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2526. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2527. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2528. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2529. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2530. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2531. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2532. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2533. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2534. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2535. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2536. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2537. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2538. "code":"602961",
  2539. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2540. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2541. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2542. }]
  2543. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2544. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191726420695]
  2545. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [7000.0000000000]
  2546. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2547. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2548. 17:26:42.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7869]
  2549. 17:28:39.488 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2550. 17:32:00.583 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202605191726420695_9057181,callback data:{"amount":"7000","bill_no":"PD202605191726420695_9057181","sign":"c64ed733883b43c3aab21a5b06444423","sys_no":"602961"}
  2551. 17:32:00.583 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  2552. 17:32:00.583 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2553. 17:32:00.583 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  2554. 17:32:00.583 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2555. 17:32:00.583 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2556. 17:32:00.583 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202605191726420695_9057181,signString:PD202605191726420695_9057181230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:c64ed733883b43c3aab21a5b06444423
  2557. 17:32:00.583 [http-nio-8004-exec-7] 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
  2558. 17:32:00.583 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202605191726420695]
  2559. 17:32:00.802 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code=?
  2560. 17:32:00.802 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2561. 17:32:00.818 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  2562. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [824]
  2563. 17:32:00.818 [http-nio-8004-exec-7] 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 ?
  2564. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20145]
  2565. 17:32:00.818 [http-nio-8004-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"154.12.178.16","addTime":1779201120818,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202605191726420695","V_DATE_TIME_V":"2026-05-19 17:32:00","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"12","V_APPLY_TIME_V":"2026-05-19 17:26:43","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202605191726420695_9057181","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2026-05-19 17:32:00","V_LOGIN_V":"9057181","V_TRANSFORM_AMOUNT_V":"7000.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"1000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mactor2020@126.com"}
  2566. 17:32:00.818 [http-nio-8004-exec-7] 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=?
  2567. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [154.12.178.16]
  2568. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2026-05-19 17:26:43.0]
  2569. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [824]
  2570. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2571. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Tue May 19 17:32:00 EEST 2026]
  2572. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2573. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2574. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2575. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2576. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2577. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2578. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2579. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20145]
  2580. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000.0000000000]
  2581. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2582. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2583. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500871]
  2584. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2585. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Tue May 19 17:32:00 EEST 2026]
  2586. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202605191726420695_9057181]
  2587. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [7000]
  2588. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2589. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [824]
  2590. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1000.0000000000]
  2591. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2592. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2593. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2594. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2026-05-20 03:26:43.0]
  2595. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.ymkjmall.com/created/?data=Z5fV1pJ%2BL%2FFoY4vpb7skdAoMxM%2FRZD85Teo1MB7rYM5ezGnCX5252yXegVjrt0G0ho3ykt3kWa0z2QNLm5sXXZjZzMiDN8OqkjkktzOLhQ4%3D?in_order_id=935415724387094528&user_id=205208]
  2596. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057181]
  2597. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2598. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [雷杭 张]
  2599. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2600. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2601. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2602. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2603. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2604. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2605. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2606. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2607. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2608. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2609. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2610. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2611. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2612. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2613. "code":"602961",
  2614. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2615. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2616. "baseUrl":"https://api.nowpayment.vip/UtInRecordApi/orderGateWay"
  2617. }]
  2618. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2619. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202605191726420695]
  2620. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [7000]
  2621. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2622. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2623. 17:32:00.818 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [7869]
  2624. 17:32:11.505 [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
  2625. 17:32:11.505 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2626. 17:32:11.505 [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 (? , ?)
  2627. 17:32:11.505 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2628. 17:32:11.505 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2629. 17:32:11.505 [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=?
  2630. 17:32:11.521 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2631. 17:32:11.521 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2632. 17:32:11.521 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2633. 17:33:39.502 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2634. 17:38:39.506 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2635. 17:43:39.507 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2636. 17:48:39.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2637. 17:53:39.534 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2638. 17:58:39.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2639. 18:03:39.536 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2640. 18:08:39.547 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2641. 18:13:39.548 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2642. 18:18:39.561 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2643. 18:23:39.567 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2644. 18:28:39.568 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2645. 18:33:39.574 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2646. 18:38:39.587 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2647. 18:43:39.603 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2648. 18:48:39.604 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2649. 18:53:39.605 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2650. 18:58:39.611 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2651. 19:03:39.620 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2652. 19:08:39.624 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2653. 19:13:39.630 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2654. 19:15:03.879 [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 (? , ?)
  2655. 19:15:03.879 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  2656. 19:15:03.879 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  2657. 19:15:08.269 [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 (? , ?)
  2658. 19:15:08.269 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  2659. 19:15:08.269 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  2660. 19:18:39.642 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2661. 19:21:14.695 [http-nio-8004-exec-1] 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
  2662. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2663. 19:21:14.711 [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 (? , ?)
  2664. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  2665. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  2666. 19:21:14.711 [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=?
  2667. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2668. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2669. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2670. 19:21:14.711 [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=?
  2671. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2672. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2673. 19:21:14.711 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2674. 19:21:14.742 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  2675. 19:21:14.742 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2676. 19:21:14.742 [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 (? , ?)
  2677. 19:21:14.742 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  2678. 19:21:14.742 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  2679. 19:21:14.758 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  2680. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2681. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2682. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2683. 19:21:14.758 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  2684. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2685. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2686. 19:21:14.758 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2687. 19:21:29.960 [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
  2688. 19:21:29.960 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2689. 19:21:29.960 [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 (? , ?)
  2690. 19:21:29.976 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2691. 19:21:29.976 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2692. 19:21:29.976 [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=?
  2693. 19:21:29.976 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2694. 19:21:29.976 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2695. 19:21:29.976 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2696. 19:21:32.179 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select syschannel0_.id as id1_73_, syschannel0_.add_ip as add_ip2_73_, syschannel0_.add_time as add_time3_73_, syschannel0_.add_user as add_user4_73_, syschannel0_.modify_ip as modify_i5_73_, syschannel0_.modify_time as modify_t6_73_, syschannel0_.modify_user as modify_u7_73_, syschannel0_.note as note8_73_, syschannel0_.channel_code as channel_9_73_, syschannel0_.code as code10_73_, syschannel0_.currency as currenc11_73_, syschannel0_.en_icon as en_icon12_73_, syschannel0_.en_name as en_name13_73_, syschannel0_.free as free14_73_, syschannel0_.funding_time as funding15_73_, syschannel0_.icon as icon16_73_, syschannel0_.max_amount as max_amo17_73_, syschannel0_.min_amount as min_amo18_73_, syschannel0_.name as name19_73_, syschannel0_.rate as rate20_73_, syschannel0_.sub_index as sub_ind21_73_, syschannel0_.valid as valid22_73_ from sys_channel_bank syschannel0_ where syschannel0_.channel_code=? and syschannel0_.valid=? order by syschannel0_.sub_index asc
  2697. 19:21:32.179 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [EXLINK_DIGITAL_PAY_KEY]
  2698. 19:21:32.179 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2699. 19:23:39.649 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2700. 19:27:24.196 [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 (? , ?)
  2701. 19:27:24.196 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  2702. 19:27:24.196 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  2703. 19:28:39.650 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2704. 19:33:39.664 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2705. 19:38:39.669 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2706. 19:43:39.679 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2707. 19:48:39.680 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2708. 19:53:39.684 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2709. 19:58:39.696 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2710. 20:03:39.710 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2711. 20:08:39.721 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2712. 20:13:39.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2713. 20:18:39.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2714. 20:23:39.737 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2715. 20:28:39.748 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2716. 20:33:39.761 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2717. 20:38:39.768 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2718. 20:43:39.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2719. 20:48:39.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2720. 20:53:39.788 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2721. 20:58:39.794 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2722. 21:03:39.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2723. 21:08:39.803 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2724. 21:13:39.814 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2725. 21:18:39.826 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2726. 21:23:39.839 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2727. 21:28:39.841 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2728. 21:33:39.855 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2729. 21:38:39.860 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2730. 21:43:39.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2731. 21:48:39.886 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2732. 21:53:39.902 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2733. 21:58:39.915 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2734. 22:03:39.917 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2735. 22:08:39.918 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2736. 22:13:39.931 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2737. 22:18:39.935 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2738. 22:23:39.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2739. 22:28:39.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2740. 22:33:39.958 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2741. 22:38:39.971 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2742. 22:43:39.982 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2743. 22:48:39.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2744. 22:53:39.989 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2745. 22:58:39.992 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2746. 23:03:40.005 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2747. 23:08:40.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2748. 23:13:40.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2749. 23:18:40.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2750. 23:23:40.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2751. 23:28:40.035 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2752. 23:33:40.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2753. 23:38:40.043 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2754. 23:43:40.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2755. 23:48:40.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2756. 23:53:40.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2757. 23:58:40.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration