logback.2024-05-13.log 572 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778
  1. 00:01:10.017 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:06:10.019 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:11:10.021 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:16:10.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:21:10.024 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:26:10.026 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:31:10.027 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:36:10.028 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:41:10.030 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:46:10.031 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:51:10.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:56:10.033 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:01:10.034 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:06:10.036 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:11:10.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:16:10.039 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:21:10.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:26:10.041 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:31:10.042 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:36:10.044 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:41:10.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:46:10.046 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:51:10.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:56:10.049 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:01:10.051 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:06:10.052 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:11:10.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:16:10.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:21:10.056 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:26:10.057 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:31:10.058 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:36:10.060 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:41:10.062 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:46:10.063 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:51:10.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:52:49.553 [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
  37. 02:52:49.558 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  38. 02:52:49.560 [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 (? , ?)
  39. 02:52:49.560 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  40. 02:52:49.560 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  41. 02:52:49.561 [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=?
  42. 02:52:49.561 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  43. 02:52:49.561 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  44. 02:52:49.561 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  45. 02:52:49.564 [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
  46. 02:52:49.568 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  47. 02:52:49.569 [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 (? , ?)
  48. 02:52:49.570 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  49. 02:52:49.570 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  50. 02:52:49.570 [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=?
  51. 02:52:49.571 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  52. 02:52:49.571 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  53. 02:52:49.571 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  54. 02:53:09.050 [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
  55. 02:53:09.052 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  56. 02:53:09.054 [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 (? , ?)
  57. 02:53:09.054 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  58. 02:53:09.054 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  59. 02:53:09.055 [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=?
  60. 02:53:09.055 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  61. 02:53:09.055 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  62. 02:53:09.055 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  63. 02:54:17.248 [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 ?
  64. 02:54:17.250 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  65. 02:54:17.252 [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 (? , ?)
  66. 02:54:17.252 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  67. 02:54:17.252 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  68. 02:54:17.255 [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 ?
  69. 02:54:17.256 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [320]
  70. 02:54:17.258 [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 ?
  71. 02:54:17.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [320]
  72. 02:54:17.259 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057351]
  73. 02:54:17.259 [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=?
  74. 02:54:17.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  75. 02:54:17.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  76. 02:54:17.260 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  77. 02:54:17.261 [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=?
  78. 02:54:17.262 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  79. 02:54:17.262 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  80. 02:54:17.262 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  81. 02:54:17.262 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  82. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  83. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 02:54:17 EEST 2024]
  84. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  85. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  86. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  87. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  88. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  89. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  90. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  91. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  92. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  93. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  94. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  95. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300]
  96. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  97. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  98. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  99. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  100. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  101. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  102. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360.0000000000]
  103. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  104. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  105. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300]
  106. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  107. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  108. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  109. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 12:54:17 EEST 2024]
  110. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  111. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  112. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  113. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  114. 02:54:17.263 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  115. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  116. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  117. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  118. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  119. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  120. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  121. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  122. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  123. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  124. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  125. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  126. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  127. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  128. "code":"602961",
  129. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  130. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  131. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  132. }]
  133. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  134. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130254172340]
  135. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360.0000000000]
  136. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  137. 02:54:17.264 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  138. 02:54:17.265 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130254172340_9057351,加密字符串为:order_amount=9360&order_id=PD202405130254172340_9057351&order_ip=112.254.202.144&order_time=2024-05-13+02%3A54%3A17&pay_user_name=%E4%B8%9A%E4%BA%AD%E8%B0%AD&sys_no=602961&user_id=500335469ad7b6cca3036e29f721606999b7fc,加密结果sign:63e7d4563a66d2f0ab3ef190020b8218
  139. 02:54:17.265 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130254172340_9057351","order_amount":"9360","sys_no":"602961","user_id":"500335","order_ip":"112.254.202.144","order_time":"2024-05-13 02:54:17","pay_user_name":"业亭谭","sign":"63e7d4563a66d2f0ab3ef190020b8218"}
  140. 02:54:18.234 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"D7405117-A9F1-8956-9355-EA0EFF522C79","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500335"},"code":111}
  141. 02:54:18.234 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130254172340_9057351,请求url:https://swpnep.one8719.com/?in_order_id=D7405117-A9F1-8956-9355-EA0EFF522C79&user_id=500335
  142. 02:54:18.234 [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=?
  143. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  144. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 02:54:17 EEST 2024]
  145. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  146. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  147. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  148. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  149. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  150. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  151. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  152. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  153. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  154. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  155. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  156. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300]
  157. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  158. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  159. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  160. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  161. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  162. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  163. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360.0000000000]
  164. 02:54:18.237 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  165. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  166. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300]
  167. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  168. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  169. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  170. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 12:54:17 EEST 2024]
  171. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D7405117-A9F1-8956-9355-EA0EFF522C79&user_id=500335]
  172. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  173. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  174. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  175. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  176. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  177. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  178. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  179. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  180. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  181. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  182. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  183. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  184. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  185. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  186. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  187. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  188. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  189. "code":"602961",
  190. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  191. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  192. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  193. }]
  194. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  195. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130254172340]
  196. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360.0000000000]
  197. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  198. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  199. 02:54:18.238 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2048]
  200. 02:56:10.065 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  201. 03:00:06.612 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202405130254172340_9057351,callback data:{"bill_no":"PD202405130254172340_9057351","bill_status":"1","sign":"bc7d6fbd258a663533afbb8133abfc7a","sys_no":"602961"}
  202. 03:00:06.612 [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 ?
  203. 03:00:06.614 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  204. 03:00:06.616 [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 (? , ?)
  205. 03:00:06.617 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  206. 03:00:06.617 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  207. 03:00:06.619 [http-nio-8004-exec-8] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202405130254172340_9057351,signString:bill_no=PD202405130254172340_9057351&bill_status=1&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:bc7d6fbd258a663533afbb8133abfc7a
  208. 03:00:06.619 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  209. 03:00:06.621 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130254172340]
  210. 03:00:06.752 [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=?
  211. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  212. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 02:54:17.0]
  213. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  214. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  215. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 03:00:06 EEST 2024]
  216. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  217. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  218. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  219. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  220. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  221. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  222. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  223. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  224. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300.0000000000]
  225. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  226. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  227. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  228. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  229. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 03:00:06 EEST 2024]
  230. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130254172340_9057351]
  231. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360.0000000000]
  232. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  233. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  234. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300.0000000000]
  235. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  236. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  237. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  238. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 12:54:17.0]
  239. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D7405117-A9F1-8956-9355-EA0EFF522C79&user_id=500335]
  240. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  241. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  242. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  243. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  244. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  245. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  246. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  247. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  248. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  249. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  250. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  251. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  252. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  253. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  254. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  255. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  256. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  257. "code":"602961",
  258. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  259. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  260. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  261. }]
  262. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  263. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130254172340]
  264. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360.0000000000]
  265. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  266. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  267. 03:00:06.754 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2048]
  268. 03:00:09.329 [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=?
  269. 03:00:09.331 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  270. 03:00:25.777 [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=?
  271. 03:00:25.779 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  272. 03:00:59.975 [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
  273. 03:00:59.977 [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
  274. 03:00:59.978 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  275. 03:00:59.980 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  276. 03:00:59.980 [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 (? , ?)
  277. 03:00:59.981 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  278. 03:00:59.981 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  279. 03:00:59.981 [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 (? , ?)
  280. 03:00:59.981 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  281. 03:00:59.981 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  282. 03:00:59.981 [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=?
  283. 03:00:59.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=?
  284. 03:00:59.982 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  285. 03:00:59.982 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  286. 03:00:59.982 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  287. 03:00:59.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  288. 03:00:59.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  289. 03:00:59.982 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  290. 03:01:10.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  291. 03:01:22.824 [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 ?
  292. 03:01:22.826 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  293. 03:01:22.828 [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 (? , ?)
  294. 03:01:22.829 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  295. 03:01:22.829 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  296. 03:01:22.832 [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 ?
  297. 03:01:22.833 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [320]
  298. 03:01:22.835 [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 ?
  299. 03:01:22.836 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [320]
  300. 03:01:22.836 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057351]
  301. 03:01:22.837 [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=?
  302. 03:01:22.837 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  303. 03:01:22.837 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  304. 03:01:22.837 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  305. 03:01:22.839 [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=?
  306. 03:01:22.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  307. 03:01:22.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  308. 03:01:22.839 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  309. 03:01:22.840 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  310. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  311. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 03:01:22 EEST 2024]
  312. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  313. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  314. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  315. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  316. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  317. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  318. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  319. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  320. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  321. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  322. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  323. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300]
  324. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  325. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  326. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  327. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  328. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  329. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  330. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360.0000000000]
  331. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  332. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  333. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300]
  334. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  335. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  336. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  337. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 13:01:22 EEST 2024]
  338. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  339. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  340. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  341. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  342. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  343. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  344. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  345. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  346. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  347. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  348. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  349. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  350. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  351. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  352. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  353. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  354. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  355. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  356. "code":"602961",
  357. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  358. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  359. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  360. }]
  361. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  362. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130301226701]
  363. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360.0000000000]
  364. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  365. 03:01:22.841 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  366. 03:01:22.843 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130301226701_9057351,加密字符串为:order_amount=9360&order_id=PD202405130301226701_9057351&order_ip=112.254.202.144&order_time=2024-05-13+03%3A01%3A22&pay_user_name=%E4%B8%9A%E4%BA%AD%E8%B0%AD&sys_no=602961&user_id=500335469ad7b6cca3036e29f721606999b7fc,加密结果sign:08526968464c49812ce5f824d00adcd5
  367. 03:01:22.843 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130301226701_9057351","order_amount":"9360","sys_no":"602961","user_id":"500335","order_ip":"112.254.202.144","order_time":"2024-05-13 03:01:22","pay_user_name":"业亭谭","sign":"08526968464c49812ce5f824d00adcd5"}
  368. 03:01:23.817 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"EC237591-6D00-DC18-883A-DF37F556210A","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500335"},"code":111}
  369. 03:01:23.817 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130301226701_9057351,请求url:https://swpnep.one8719.com/?in_order_id=EC237591-6D00-DC18-883A-DF37F556210A&user_id=500335
  370. 03:01:23.817 [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=?
  371. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  372. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 03:01:22 EEST 2024]
  373. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  374. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  375. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  376. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  377. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  378. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  379. 03:01:23.820 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  380. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  381. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  382. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  383. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  384. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300]
  385. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  386. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  387. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  388. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  389. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  390. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  391. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360.0000000000]
  392. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  393. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  394. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300]
  395. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  396. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  397. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  398. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 13:01:22 EEST 2024]
  399. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=EC237591-6D00-DC18-883A-DF37F556210A&user_id=500335]
  400. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  401. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  402. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  403. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  404. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  405. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  406. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  407. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  408. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  409. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  410. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  411. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  412. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  413. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  414. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  415. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  416. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  417. "code":"602961",
  418. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  419. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  420. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  421. }]
  422. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  423. 03:01:23.821 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130301226701]
  424. 03:01:23.822 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360.0000000000]
  425. 03:01:23.822 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  426. 03:01:23.822 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  427. 03:01:23.822 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2049]
  428. 03:03:33.206 [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=?
  429. 03:03:33.207 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  430. 03:05:36.824 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130301226701_9057351,callback data:{"amount":"9360","bill_no":"PD202405130301226701_9057351","sign":"2b6d66cd2ec598c59268816276946860","sys_no":"602961"}
  431. 03:05:36.824 [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 ?
  432. 03:05:36.827 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  433. 03:05:36.829 [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 (? , ?)
  434. 03:05:36.830 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  435. 03:05:36.830 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  436. 03:05:36.831 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130301226701_9057351,signString:PD202405130301226701_9057351230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:2b6d66cd2ec598c59268816276946860
  437. 03:05:36.831 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  438. 03:05:36.833 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130301226701]
  439. 03:05:36.969 [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=?
  440. 03:05:36.970 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  441. 03:05:36.972 [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 ?
  442. 03:05:36.973 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [320]
  443. 03:05:36.975 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  444. 03:05:36.976 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20117]
  445. 03:05:36.977 [http-nio-8004-exec-4] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715558736977,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130301226701","V_DATE_TIME_V":"2024-05-13 03:05:36","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0125","V_APPLY_TIME_V":"2024-05-13 03:01:23","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130301226701_9057351","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 03:05:36","V_LOGIN_V":"9057351","V_TRANSFORM_AMOUNT_V":"9360.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"1300.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  446. 03:05:36.983 [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=?
  447. 03:05:36.983 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [112.254.202.144]
  448. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 03:01:23.0]
  449. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [320]
  450. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  451. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 03:05:36 EEST 2024]
  452. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  453. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  454. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  455. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  456. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  457. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  458. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  459. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20117]
  460. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1300.0000000000]
  461. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  462. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  463. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500335]
  464. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  465. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 03:05:36 EEST 2024]
  466. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130301226701_9057351]
  467. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [9360]
  468. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  469. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [320]
  470. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [1300.0000000000]
  471. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  472. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  473. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  474. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 13:01:23.0]
  475. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=EC237591-6D00-DC18-883A-DF37F556210A&user_id=500335]
  476. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057351]
  477. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  478. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [业亭 谭]
  479. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  480. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  481. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  482. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  483. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  484. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  485. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  486. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  487. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  488. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  489. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  490. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  491. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  492. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  493. "code":"602961",
  494. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  495. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  496. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  497. }]
  498. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  499. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130301226701]
  500. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [9360]
  501. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  502. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  503. 03:05:36.984 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2049]
  504. 03:05:45.639 [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=?
  505. 03:05:45.640 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  506. 03:06:10.067 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  507. 03:11:10.068 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  508. 03:16:10.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  509. 03:21:10.072 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  510. 03:26:10.073 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  511. 03:31:10.075 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  512. 03:36:10.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  513. 03:41:10.078 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  514. 03:46:10.079 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  515. 03:51:10.080 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  516. 03:56:10.082 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  517. 04:01:10.083 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  518. 04:06:10.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  519. 04:11:10.086 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  520. 04:16:10.087 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  521. 04:18:51.333 [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
  522. 04:18:51.338 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  523. 04:18:51.340 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  524. 04:18:51.340 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  525. 04:18:51.340 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  526. 04:18:51.341 [http-nio-8004-exec-8] DEBUG org.hibernate.SQL - select financerat0_.id as id1_50_, financerat0_.add_ip as add_ip2_50_, financerat0_.add_time as add_time3_50_, financerat0_.add_user as add_user4_50_, financerat0_.modify_ip as modify_i5_50_, financerat0_.modify_time as modify_t6_50_, financerat0_.modify_user as modify_u7_50_, financerat0_.note as note8_50_, financerat0_.currency as currency9_50_, financerat0_.rate as rate10_50_, financerat0_.transform_currency as transfo11_50_, financerat0_.type as type12_50_ from finance_rate financerat0_ where financerat0_.type=? and financerat0_.currency=? and financerat0_.transform_currency=?
  527. 04:18:51.341 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  528. 04:18:51.341 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  529. 04:18:51.341 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  530. 04:19:10.861 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  531. 04:19:10.863 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  532. 04:19:10.865 [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 (? , ?)
  533. 04:19:10.866 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  534. 04:19:10.866 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  535. 04:19:10.868 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  536. 04:19:10.870 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  537. 04:19:10.871 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  538. 04:19:10.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  539. 04:19:10.873 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  540. 04:19:10.874 [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=?
  541. 04:19:10.874 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  542. 04:19:10.874 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  543. 04:19:10.874 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  544. 04:19:10.876 [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=?
  545. 04:19:10.876 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  546. 04:19:10.876 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  547. 04:19:10.876 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  548. 04:19:10.877 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  549. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  550. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:19:10 EEST 2024]
  551. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  552. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  553. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  554. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  555. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  556. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  557. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  558. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  559. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  560. 04:19:10.877 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  561. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  562. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  563. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  564. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  565. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  566. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  567. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  568. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  569. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  570. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  571. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  572. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  573. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  574. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  575. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  576. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:19:10 EEST 2024]
  577. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  578. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  579. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  580. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  581. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  582. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  583. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  584. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  585. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  586. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  587. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  588. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  589. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  590. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  591. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  592. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  593. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  594. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  595. "code":"602961",
  596. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  597. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  598. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  599. }]
  600. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  601. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130419105855]
  602. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  603. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  604. 04:19:10.878 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  605. 04:19:10.879 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130419105855_9057381,加密字符串为:order_amount=3600&order_id=PD202405130419105855_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A19%3A10&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:577e365f0f8360e91629b59524f2e1b3
  606. 04:19:10.880 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130419105855_9057381","order_amount":"3600","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:19:10","pay_user_name":"永红高","sign":"577e365f0f8360e91629b59524f2e1b3"}
  607. 04:19:11.886 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"error","msg":"\u5546\u6237\u6700\u5c0f\u5151\u5165\u91d1\u989d\u4e0d\u80fd\u5c11\u4e8e5000\u4eba\u6c11\u5e01","data":[],"code":101}
  608. 04:19:19.377 [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
  609. 04:19:19.380 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  610. 04:19:19.383 [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 (? , ?)
  611. 04:19:19.383 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  612. 04:19:19.383 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  613. 04:19:19.384 [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=?
  614. 04:19:19.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  615. 04:19:19.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  616. 04:19:19.385 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  617. 04:19:24.187 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  618. 04:19:24.191 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  619. 04:19:24.193 [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 (? , ?)
  620. 04:19:24.194 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  621. 04:19:24.194 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  622. 04:19:24.196 [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=?
  623. 04:19:24.197 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  624. 04:19:24.197 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  625. 04:19:24.197 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  626. 04:19:48.504 [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 ?
  627. 04:19:48.506 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  628. 04:19:48.508 [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 (? , ?)
  629. 04:19:48.509 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  630. 04:19:48.509 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  631. 04:19:48.511 [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 ?
  632. 04:19:48.513 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  633. 04:19:48.515 [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 ?
  634. 04:19:48.516 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  635. 04:19:48.516 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  636. 04:19:48.517 [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=?
  637. 04:19:48.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  638. 04:19:48.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  639. 04:19:48.517 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  640. 04:19:48.519 [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=?
  641. 04:19:48.519 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  642. 04:19:48.519 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  643. 04:19:48.519 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  644. 04:19:48.520 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  645. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  646. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:19:48 EEST 2024]
  647. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  648. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  649. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  650. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  651. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  652. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  653. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  654. 04:19:48.520 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  655. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  656. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  657. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  658. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  659. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  660. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  661. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  662. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  663. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  664. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  665. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  666. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  667. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  668. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  669. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  670. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  671. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  672. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:19:48 EEST 2024]
  673. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  674. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  675. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  676. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  677. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  678. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  679. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  680. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  681. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  682. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  683. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  684. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  685. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  686. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  687. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  688. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  689. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  690. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  691. "code":"602961",
  692. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  693. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  694. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  695. }]
  696. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  697. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130419485902]
  698. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  699. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  700. 04:19:48.521 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  701. 04:19:48.523 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130419485902_9057381,加密字符串为:order_amount=5040&order_id=PD202405130419485902_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A19%3A48&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:dbc5b084334179371affa16d6dc2196c
  702. 04:19:48.523 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130419485902_9057381","order_amount":"5040","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:19:48","pay_user_name":"永红高","sign":"dbc5b084334179371affa16d6dc2196c"}
  703. 04:19:49.472 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"D61AAAA4-F7ED-9B8B-B412-74A2085B78CE","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500079"},"code":111}
  704. 04:19:49.472 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130419485902_9057381,请求url:https://swpnep.one8719.com/?in_order_id=D61AAAA4-F7ED-9B8B-B412-74A2085B78CE&user_id=500079
  705. 04:19:49.472 [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=?
  706. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  707. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:19:48 EEST 2024]
  708. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  709. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  710. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  711. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  712. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  713. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  714. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  715. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  716. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  717. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  718. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  719. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  720. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  721. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  722. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  723. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  724. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  725. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  726. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  727. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  728. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  729. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  730. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  731. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  732. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  733. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:19:48 EEST 2024]
  734. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D61AAAA4-F7ED-9B8B-B412-74A2085B78CE&user_id=500079]
  735. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  736. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  737. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  738. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  739. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  740. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  741. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  742. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  743. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  744. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  745. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  746. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  747. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  748. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  749. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  750. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  751. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  752. "code":"602961",
  753. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  754. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  755. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  756. }]
  757. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  758. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130419485902]
  759. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  760. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  761. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  762. 04:19:49.474 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2051]
  763. 04:20:06.435 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202405130419485902_9057381,callback data:{"bill_no":"PD202405130419485902_9057381","bill_status":"2","sign":"732e8406ce18a9c9bb7ecd1af532e8be","sys_no":"602961"}
  764. 04:20:06.435 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  765. 04:20:06.438 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  766. 04:20:06.440 [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 (? , ?)
  767. 04:20:06.441 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  768. 04:20:06.441 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  769. 04:20:06.442 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202405130419485902_9057381,signString:bill_no=PD202405130419485902_9057381&bill_status=2&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:732e8406ce18a9c9bb7ecd1af532e8be
  770. 04:20:06.442 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  771. 04:20:06.444 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130419485902]
  772. 04:20:06.579 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  773. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  774. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 04:19:49.0]
  775. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  776. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  777. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 04:20:06 EEST 2024]
  778. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  779. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  780. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  781. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  782. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  783. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  784. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  785. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  786. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700.0000000000]
  787. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  788. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  789. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  790. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  791. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 04:20:06 EEST 2024]
  792. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130419485902_9057381]
  793. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  794. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  795. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  796. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700.0000000000]
  797. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  798. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  799. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  800. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 14:19:49.0]
  801. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D61AAAA4-F7ED-9B8B-B412-74A2085B78CE&user_id=500079]
  802. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  803. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  804. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  805. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  806. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  807. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  808. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  809. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  810. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  811. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  812. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  813. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  814. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  815. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  816. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  817. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  818. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  819. "code":"602961",
  820. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  821. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  822. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  823. }]
  824. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  825. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130419485902]
  826. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  827. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  828. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  829. 04:20:06.581 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2051]
  830. 04:20:47.436 [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
  831. 04:20:47.439 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  832. 04:20:47.441 [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 (? , ?)
  833. 04:20:47.442 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  834. 04:20:47.442 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  835. 04:20:47.443 [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=?
  836. 04:20:47.443 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  837. 04:20:47.443 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  838. 04:20:47.443 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  839. 04:20:58.858 [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 ?
  840. 04:20:58.860 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  841. 04:20:58.862 [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 (? , ?)
  842. 04:20:58.863 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  843. 04:20:58.863 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  844. 04:20:58.865 [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 ?
  845. 04:20:58.866 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  846. 04:20:58.868 [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 ?
  847. 04:20:58.870 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  848. 04:20:58.870 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  849. 04:20:58.871 [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=?
  850. 04:20:58.872 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  851. 04:20:58.872 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  852. 04:20:58.872 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  853. 04:20:58.873 [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=?
  854. 04:20:58.873 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  855. 04:20:58.873 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  856. 04:20:58.873 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  857. 04:20:58.874 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  858. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  859. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:20:58 EEST 2024]
  860. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  861. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  862. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  863. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  864. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  865. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  866. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  867. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  868. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  869. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  870. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  871. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  872. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  873. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  874. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  875. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  876. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  877. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  878. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  879. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  880. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  881. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  882. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  883. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  884. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  885. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:20:58 EEST 2024]
  886. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  887. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  888. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  889. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  890. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  891. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  892. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  893. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  894. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  895. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  896. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  897. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  898. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  899. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  900. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  901. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  902. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  903. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  904. "code":"602961",
  905. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  906. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  907. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  908. }]
  909. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  910. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130420584851]
  911. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  912. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  913. 04:20:58.875 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  914. 04:20:58.877 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130420584851_9057381,加密字符串为:order_amount=3600&order_id=PD202405130420584851_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A20%3A58&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:279d212a4ac96381264bbb115acca592
  915. 04:20:58.877 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130420584851_9057381","order_amount":"3600","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:20:58","pay_user_name":"永红高","sign":"279d212a4ac96381264bbb115acca592"}
  916. 04:20:59.860 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"error","msg":"\u5546\u6237\u6700\u5c0f\u5151\u5165\u91d1\u989d\u4e0d\u80fd\u5c11\u4e8e5000\u4eba\u6c11\u5e01","data":[],"code":101}
  917. 04:21:02.018 [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
  918. 04:21:02.021 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  919. 04:21:02.023 [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 (? , ?)
  920. 04:21:02.024 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  921. 04:21:02.024 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  922. 04:21:02.027 [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=?
  923. 04:21:02.028 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  924. 04:21:02.028 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  925. 04:21:02.028 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  926. 04:21:05.523 [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
  927. 04:21:05.527 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  928. 04:21:05.528 [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 (? , ?)
  929. 04:21:05.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  930. 04:21:05.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  931. 04:21:05.530 [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=?
  932. 04:21:05.530 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  933. 04:21:05.530 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  934. 04:21:05.530 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  935. 04:21:10.089 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  936. 04:21:15.319 [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 ?
  937. 04:21:15.321 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  938. 04:21:15.323 [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 (? , ?)
  939. 04:21:15.324 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  940. 04:21:15.324 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  941. 04:21:15.327 [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 ?
  942. 04:21:15.328 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  943. 04:21:15.330 [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 ?
  944. 04:21:15.331 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  945. 04:21:15.332 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  946. 04:21:15.332 [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=?
  947. 04:21:15.333 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  948. 04:21:15.333 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  949. 04:21:15.333 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  950. 04:21:15.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=?
  951. 04:21:15.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  952. 04:21:15.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  953. 04:21:15.334 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  954. 04:21:15.335 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  955. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  956. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:21:15 EEST 2024]
  957. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  958. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  959. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  960. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  961. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  962. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  963. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  964. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  965. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  966. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  967. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  968. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  969. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  970. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  971. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  972. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  973. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  974. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  975. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  976. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  977. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  978. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  979. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  980. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  981. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  982. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:21:15 EEST 2024]
  983. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  984. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  985. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  986. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  987. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  988. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  989. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  990. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  991. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  992. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  993. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  994. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  995. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  996. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  997. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  998. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  999. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1000. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1001. "code":"602961",
  1002. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1003. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1004. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1005. }]
  1006. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1007. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130421153438]
  1008. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  1009. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1010. 04:21:15.336 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1011. 04:21:15.338 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130421153438_9057381,加密字符串为:order_amount=5040&order_id=PD202405130421153438_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A21%3A15&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:b2f0e836978c70c7e04c7f6d8bce89ca
  1012. 04:21:15.338 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130421153438_9057381","order_amount":"5040","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:21:15","pay_user_name":"永红高","sign":"b2f0e836978c70c7e04c7f6d8bce89ca"}
  1013. 04:21:16.307 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"B78E51A5-EAA1-25E8-F181-285BE3BF5513","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500079"},"code":111}
  1014. 04:21:16.307 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130421153438_9057381,请求url:https://swpnep.one8719.com/?in_order_id=B78E51A5-EAA1-25E8-F181-285BE3BF5513&user_id=500079
  1015. 04:21:16.307 [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=?
  1016. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1017. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:21:15 EEST 2024]
  1018. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1019. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1020. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1021. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1022. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1023. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1024. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1025. 04:21:16.310 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1026. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1027. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1028. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1029. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  1030. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1031. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1032. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1033. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1034. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1035. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1036. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  1037. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1038. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1039. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  1040. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1041. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1042. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1043. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:21:15 EEST 2024]
  1044. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=B78E51A5-EAA1-25E8-F181-285BE3BF5513&user_id=500079]
  1045. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1046. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1047. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1048. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1049. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1050. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1051. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1052. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1053. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1054. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1055. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1056. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1057. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1058. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1059. 04:21:16.311 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1060. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1061. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1062. "code":"602961",
  1063. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1064. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1065. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1066. }]
  1067. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1068. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130421153438]
  1069. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  1070. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1071. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1072. 04:21:16.312 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2053]
  1073. 04:21:30.623 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback orderNo:PD202405130421153438_9057381,callback data:{"bill_no":"PD202405130421153438_9057381","bill_status":"2","sign":"13f0c208624cf7f3bc1d159c858b3634","sys_no":"602961"}
  1074. 04:21:30.623 [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 ?
  1075. 04:21:30.625 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1076. 04:21:30.627 [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 (? , ?)
  1077. 04:21:30.628 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1078. 04:21:30.628 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1079. 04:21:30.628 [http-nio-8004-exec-4] INFO c.c.p.s.i.pay.InoutworkServiceImpl - cancel callback--orderNo:PD202405130421153438_9057381,signString:bill_no=PD202405130421153438_9057381&bill_status=2&sys_no=602961230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:13f0c208624cf7f3bc1d159c858b3634
  1080. 04:21:30.629 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  1081. 04:21:30.631 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130421153438]
  1082. 04:21:30.730 [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=?
  1083. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1084. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 04:21:15.0]
  1085. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1086. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1087. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 04:21:30 EEST 2024]
  1088. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1089. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1090. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1091. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1092. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1093. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1094. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1095. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1096. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700.0000000000]
  1097. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1098. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1099. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1100. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [2]
  1101. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 04:21:30 EEST 2024]
  1102. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130421153438_9057381]
  1103. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  1104. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1105. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1106. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700.0000000000]
  1107. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1108. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1109. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1110. 04:21:30.732 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 14:21:15.0]
  1111. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=B78E51A5-EAA1-25E8-F181-285BE3BF5513&user_id=500079]
  1112. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1113. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1114. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1115. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1116. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1117. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1118. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1119. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1120. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1121. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1122. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1123. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1124. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1125. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1126. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1127. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1128. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1129. "code":"602961",
  1130. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1131. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1132. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1133. }]
  1134. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1135. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130421153438]
  1136. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  1137. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1138. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1139. 04:21:30.733 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2053]
  1140. 04:26:10.091 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1141. 04:30:10.927 [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
  1142. 04:30:10.929 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1143. 04:30:10.931 [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 (? , ?)
  1144. 04:30:10.931 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1145. 04:30:10.931 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1146. 04:30:10.934 [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=?
  1147. 04:30:10.934 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1148. 04:30:10.934 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1149. 04:30:10.934 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1150. 04:30:10.953 [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
  1151. 04:30:10.955 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1152. 04:30:10.956 [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 (? , ?)
  1153. 04:30:10.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1154. 04:30:10.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1155. 04:30:10.957 [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=?
  1156. 04:30:10.958 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1157. 04:30:10.958 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1158. 04:30:10.958 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1159. 04:30:29.102 [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 ?
  1160. 04:30:29.104 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1161. 04:30:29.106 [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 (? , ?)
  1162. 04:30:29.107 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1163. 04:30:29.107 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1164. 04:30:29.110 [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 ?
  1165. 04:30:29.111 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [536]
  1166. 04:30:29.113 [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 ?
  1167. 04:30:29.115 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [536]
  1168. 04:30:29.115 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057468]
  1169. 04:30:29.115 [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=?
  1170. 04:30:29.115 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1171. 04:30:29.116 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1172. 04:30:29.116 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1173. 04:30:29.117 [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=?
  1174. 04:30:29.117 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1175. 04:30:29.117 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1176. 04:30:29.117 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1177. 04:30:29.118 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1178. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.92.242.78]
  1179. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:30:29 EEST 2024]
  1180. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [536]
  1181. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1182. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1183. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1184. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1185. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1186. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1187. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1188. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1189. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1190. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1191. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [6000]
  1192. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1193. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1194. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500569]
  1195. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1196. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1197. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1198. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [43200.0000000000]
  1199. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1200. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [536]
  1201. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [6000]
  1202. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1203. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1204. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1205. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:30:29 EEST 2024]
  1206. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1207. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057468]
  1208. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1209. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [一谦 邢]
  1210. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1211. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1212. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1213. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1214. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1215. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1216. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1217. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1218. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1219. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1220. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1221. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1222. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1223. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1224. "code":"602961",
  1225. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1226. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1227. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1228. }]
  1229. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1230. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130430291540]
  1231. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [43200.0000000000]
  1232. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1233. 04:30:29.119 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1234. 04:30:29.121 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130430291540_9057468,加密字符串为:order_amount=43200&order_id=PD202405130430291540_9057468&order_ip=42.92.242.78&order_time=2024-05-13+04%3A30%3A29&pay_user_name=%E4%B8%80%E8%B0%A6%E9%82%A2&sys_no=602961&user_id=500569469ad7b6cca3036e29f721606999b7fc,加密结果sign:fd6a22c9776c41d2d6c0c76c7f9efd55
  1235. 04:30:29.121 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130430291540_9057468","order_amount":"43200","sys_no":"602961","user_id":"500569","order_ip":"42.92.242.78","order_time":"2024-05-13 04:30:29","pay_user_name":"一谦邢","sign":"fd6a22c9776c41d2d6c0c76c7f9efd55"}
  1236. 04:30:30.083 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"D7EF5EC0-9E09-6592-7617-2186A94A550D","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500569"},"code":111}
  1237. 04:30:30.083 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130430291540_9057468,请求url:https://swpnep.one8719.com/?in_order_id=D7EF5EC0-9E09-6592-7617-2186A94A550D&user_id=500569
  1238. 04:30:30.083 [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=?
  1239. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.92.242.78]
  1240. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:30:29 EEST 2024]
  1241. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [536]
  1242. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1243. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1244. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1245. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1246. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1247. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1248. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1249. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1250. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1251. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1252. 04:30:30.086 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [6000]
  1253. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1254. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1255. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500569]
  1256. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1257. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1258. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1259. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [43200.0000000000]
  1260. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1261. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [536]
  1262. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [6000]
  1263. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1264. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1265. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1266. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:30:29 EEST 2024]
  1267. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D7EF5EC0-9E09-6592-7617-2186A94A550D&user_id=500569]
  1268. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057468]
  1269. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1270. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [一谦 邢]
  1271. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1272. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1273. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1274. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1275. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1276. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1277. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1278. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1279. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1280. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1281. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1282. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1283. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1284. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1285. "code":"602961",
  1286. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1287. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1288. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1289. }]
  1290. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1291. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130430291540]
  1292. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [43200.0000000000]
  1293. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1294. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1295. 04:30:30.087 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2054]
  1296. 04:31:10.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1297. 04:32:32.126 [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
  1298. 04:32:32.128 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1299. 04:32:32.130 [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 (? , ?)
  1300. 04:32:32.130 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1301. 04:32:32.130 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1302. 04:32:32.141 [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=?
  1303. 04:32:32.142 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1304. 04:32:32.142 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1305. 04:32:32.142 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1306. 04:32:42.042 [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 ?
  1307. 04:32:42.044 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1308. 04:32:42.046 [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 (? , ?)
  1309. 04:32:42.046 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1310. 04:32:42.046 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1311. 04:32:42.049 [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 ?
  1312. 04:32:42.050 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  1313. 04:32:42.052 [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 ?
  1314. 04:32:42.053 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  1315. 04:32:42.053 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  1316. 04:32:42.054 [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=?
  1317. 04:32:42.054 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1318. 04:32:42.054 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1319. 04:32:42.054 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1320. 04:32:42.056 [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=?
  1321. 04:32:42.056 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1322. 04:32:42.056 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1323. 04:32:42.056 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1324. 04:32:42.057 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1325. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1326. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:32:42 EEST 2024]
  1327. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1328. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1329. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1330. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1331. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1332. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1333. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1334. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1335. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1336. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1337. 04:32:42.057 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1338. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  1339. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1340. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1341. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1342. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1343. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1344. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1345. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  1346. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1347. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1348. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  1349. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1350. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1351. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1352. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:32:42 EEST 2024]
  1353. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1354. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1355. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1356. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1357. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1358. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1359. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1360. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1361. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1362. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1363. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1364. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1365. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1366. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1367. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1368. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1369. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1370. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1371. "code":"602961",
  1372. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1373. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1374. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1375. }]
  1376. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1377. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130432429516]
  1378. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  1379. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1380. 04:32:42.058 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1381. 04:32:42.060 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130432429516_9057381,加密字符串为:order_amount=3600&order_id=PD202405130432429516_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A32%3A42&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:52faee851f6851327952d9529933e2fa
  1382. 04:32:42.060 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130432429516_9057381","order_amount":"3600","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:32:42","pay_user_name":"永红高","sign":"52faee851f6851327952d9529933e2fa"}
  1383. 04:32:42.987 [http-nio-8004-exec-9] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"error","msg":"\u5546\u6237\u6700\u5c0f\u5151\u5165\u91d1\u989d\u4e0d\u80fd\u5c11\u4e8e5000\u4eba\u6c11\u5e01","data":[],"code":101}
  1384. 04:32:45.638 [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
  1385. 04:32:45.642 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1386. 04:32:45.644 [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 (? , ?)
  1387. 04:32:45.645 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1388. 04:32:45.645 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1389. 04:32:45.645 [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=?
  1390. 04:32:45.646 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1391. 04:32:45.646 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1392. 04:32:45.646 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1393. 04:32:48.677 [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
  1394. 04:32:48.681 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1395. 04:32:48.682 [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 (? , ?)
  1396. 04:32:48.682 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1397. 04:32:48.683 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1398. 04:32:48.683 [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=?
  1399. 04:32:48.684 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1400. 04:32:48.684 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1401. 04:32:48.684 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1402. 04:32:59.651 [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 ?
  1403. 04:32:59.652 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1404. 04:32:59.654 [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 (? , ?)
  1405. 04:32:59.655 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1406. 04:32:59.655 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1407. 04:32:59.658 [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 ?
  1408. 04:32:59.659 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  1409. 04:32:59.661 [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 ?
  1410. 04:32:59.662 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  1411. 04:32:59.662 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057381]
  1412. 04:32:59.663 [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=?
  1413. 04:32:59.663 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1414. 04:32:59.663 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1415. 04:32:59.663 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1416. 04:32:59.665 [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=?
  1417. 04:32:59.665 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1418. 04:32:59.665 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1419. 04:32:59.665 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1420. 04:32:59.666 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1421. 04:32:59.666 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1422. 04:32:59.666 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:32:59 EEST 2024]
  1423. 04:32:59.666 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1424. 04:32:59.666 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1425. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1426. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1427. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1428. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1429. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1430. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1431. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1432. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1433. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1434. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  1435. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1436. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1437. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1438. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1439. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1440. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1441. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  1442. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1443. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1444. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  1445. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1446. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1447. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1448. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:32:59 EEST 2024]
  1449. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1450. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1451. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1452. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1453. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1454. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1455. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1456. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1457. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1458. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1459. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1460. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1461. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1462. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1463. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1464. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1465. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1466. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1467. "code":"602961",
  1468. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1469. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1470. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1471. }]
  1472. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1473. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130432599411]
  1474. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  1475. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1476. 04:32:59.667 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1477. 04:32:59.669 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130432599411_9057381,加密字符串为:order_amount=5040&order_id=PD202405130432599411_9057381&order_ip=14.151.16.41&order_time=2024-05-13+04%3A32%3A59&pay_user_name=%E6%B0%B8%E7%BA%A2%E9%AB%98&sys_no=602961&user_id=500079469ad7b6cca3036e29f721606999b7fc,加密结果sign:fc26d64b4dad7139959400b4307d3b39
  1478. 04:32:59.669 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130432599411_9057381","order_amount":"5040","sys_no":"602961","user_id":"500079","order_ip":"14.151.16.41","order_time":"2024-05-13 04:32:59","pay_user_name":"永红高","sign":"fc26d64b4dad7139959400b4307d3b39"}
  1479. 04:33:00.625 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"41B61428-F236-DB66-0A00-A07D637D293A","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500079"},"code":111}
  1480. 04:33:00.625 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130432599411_9057381,请求url:https://swpnep.one8719.com/?in_order_id=41B61428-F236-DB66-0A00-A07D637D293A&user_id=500079
  1481. 04:33:00.625 [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=?
  1482. 04:33:00.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1483. 04:33:00.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 04:32:59 EEST 2024]
  1484. 04:33:00.626 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1485. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1486. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1487. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1488. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1489. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1490. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1491. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1492. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1493. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1494. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1495. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700]
  1496. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1497. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1498. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1499. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1500. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1501. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1502. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040.0000000000]
  1503. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1504. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1505. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700]
  1506. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1507. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1508. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1509. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 14:32:59 EEST 2024]
  1510. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=41B61428-F236-DB66-0A00-A07D637D293A&user_id=500079]
  1511. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1512. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1513. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1514. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1515. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1516. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1517. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1518. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1519. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1520. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1521. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1522. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1523. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1524. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1525. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1526. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1527. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1528. "code":"602961",
  1529. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1530. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1531. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1532. }]
  1533. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1534. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130432599411]
  1535. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040.0000000000]
  1536. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1537. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1538. 04:33:00.627 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2056]
  1539. 04:34:54.796 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130430291540_9057468,callback data:{"amount":"43200","bill_no":"PD202405130430291540_9057468","sign":"0beb5e7abd967ee9ab1caae7fae7d49e","sys_no":"602961"}
  1540. 04:34:54.796 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.code=? limit ?
  1541. 04:34:54.797 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1542. 04:34:54.800 [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 (? , ?)
  1543. 04:34:54.800 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1544. 04:34:54.800 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1545. 04:34:54.802 [http-nio-8004-exec-1] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130430291540_9057468,signString:PD202405130430291540_9057468230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:0beb5e7abd967ee9ab1caae7fae7d49e
  1546. 04:34:54.802 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  1547. 04:34:54.803 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130430291540]
  1548. 04:34:54.941 [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=?
  1549. 04:34:54.943 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1550. 04:34:54.945 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select custominfo0_.id as id1_36_, custominfo0_.add_ip as add_ip2_36_, custominfo0_.add_time as add_time3_36_, custominfo0_.add_user as add_user4_36_, custominfo0_.modify_ip as modify_i5_36_, custominfo0_.modify_time as modify_t6_36_, custominfo0_.modify_user as modify_u7_36_, custominfo0_.note as note8_36_, custominfo0_.approve_desc as approve_9_36_, custominfo0_.approve_time as approve10_36_, custominfo0_.approve_user as approve11_36_, custominfo0_.status as status12_36_, custominfo0_.address_line as address13_36_, custominfo0_.agent_id as agent_i14_36_, custominfo0_.apply_real_status as apply_r15_36_, custominfo0_.apply_real_time as apply_r16_36_, custominfo0_.area_code as area_co17_36_, custominfo0_.birth as birth18_36_, custominfo0_.c_id as c_id19_36_, custominfo0_.check_email as check_e20_36_, custominfo0_.check_phone as check_p21_36_, custominfo0_.city as city22_36_, custominfo0_.com_point as com_poi23_36_, custominfo0_.country as country24_36_, custominfo0_.country_en_name as country25_36_, custominfo0_.country_name as country26_36_, custominfo0_.email as email27_36_, custominfo0_.first_name as first_n28_36_, custominfo0_.gender as gender29_36_, custominfo0_.head_picture as head_pi30_36_, custominfo0_.hide as hide31_36_, custominfo0_.ib_id as ib_id32_36_, custominfo0_.ib_invalid as ib_inva33_36_, custominfo0_.identity as identit34_36_, custominfo0_.lang as lang35_36_, custominfo0_.last_address as last_ad36_36_, custominfo0_.last_ip as last_ip37_36_, custominfo0_.last_name as last_na38_36_, custominfo0_.last_time as last_ti39_36_, custominfo0_.middle as middle40_36_, custominfo0_.name_en as name_en41_36_, custominfo0_.nationality as nationa42_36_, custominfo0_.password as passwor43_36_, custominfo0_.phone as phone44_36_, custominfo0_.state as state45_36_, custominfo0_.tax_number as tax_num46_36_, custominfo0_.valid as valid47_36_, custominfo0_.zip_code as zip_cod48_36_ from custom_info custominfo0_ where custominfo0_.id=? limit ?
  1551. 04:34:54.946 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [536]
  1552. 04:34:54.948 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  1553. 04:34:54.949 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20101]
  1554. 04:34:54.950 [http-nio-8004-exec-1] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715564094950,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130430291540","V_DATE_TIME_V":"2024-05-13 04:34:54","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"07","V_APPLY_TIME_V":"2024-05-13 04:30:29","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130430291540_9057468","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 04:34:54","V_LOGIN_V":"9057468","V_TRANSFORM_AMOUNT_V":"43200.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"6000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  1555. 04:34:54.955 [http-nio-8004-exec-1] DEBUG org.hibernate.SQL - update finance_deposit set add_ip=?, add_time=?, add_user=?, modify_ip=?, modify_time=?, modify_user=?, note=?, approve_desc=?, approve_time=?, approve_user=?, status=?, activity_deposit=?, agent_id=?, amount=?, bank_code=?, bank_msg=?, c_id=?, callback_status=?, callback_time=?, channel_serial=?, cny=?, currency=?, custom_id=?, deposit_amount=?, deposit_currency=?, deposit_status=?, deposit_ticket=?, expire_time=?, form_url=?, login=?, login_type=?, name=?, operation_type=?, pay_type=?, platform=?, promo_code=?, rate=?, remittance_channel_code=?, remittance_channel_currency=?, remittance_channel_en_icon=?, remittance_channel_en_introduce=?, remittance_channel_en_name=?, remittance_channel_icon=?, remittance_channel_introduce=?, remittance_channel_name=?, remittance_channel_property=?, remittance_channel_request_url=?, serial=?, transform_amount=?, transform_currency=?, voucher_url=? where id=?
  1556. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [42.92.242.78]
  1557. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 04:30:29.0]
  1558. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [536]
  1559. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1560. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 04:34:54 EEST 2024]
  1561. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1562. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1563. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1564. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1565. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1566. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1567. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1568. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1569. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [6000.0000000000]
  1570. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1571. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1572. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500569]
  1573. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1574. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 04:34:54 EEST 2024]
  1575. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130430291540_9057468]
  1576. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [43200]
  1577. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1578. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [536]
  1579. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [6000.0000000000]
  1580. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1581. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1582. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1583. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 14:30:29.0]
  1584. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=D7EF5EC0-9E09-6592-7617-2186A94A550D&user_id=500569]
  1585. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057468]
  1586. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1587. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [一谦 邢]
  1588. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1589. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1590. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1591. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1592. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1593. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1594. 04:34:54.956 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1595. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1596. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1597. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1598. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1599. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1600. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1601. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1602. "code":"602961",
  1603. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1604. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1605. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1606. }]
  1607. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1608. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130430291540]
  1609. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [43200]
  1610. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1611. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1612. 04:34:54.957 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2054]
  1613. 04:35:06.164 [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=?
  1614. 04:35:06.165 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1615. 04:36:10.094 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1616. 04:41:10.095 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1617. 04:46:10.097 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1618. 04:51:10.098 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1619. 04:52:18.034 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130432599411_9057381,callback data:{"amount":"5040","bill_no":"PD202405130432599411_9057381","sign":"9037dbec3125d18edddf5d156e0444bd","sys_no":"602961"}
  1620. 04:52:18.034 [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 ?
  1621. 04:52:18.038 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1622. 04:52:18.040 [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 (? , ?)
  1623. 04:52:18.041 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1624. 04:52:18.041 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1625. 04:52:18.043 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130432599411_9057381,signString:PD202405130432599411_9057381230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:9037dbec3125d18edddf5d156e0444bd
  1626. 04:52:18.043 [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
  1627. 04:52:18.044 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130432599411]
  1628. 04:52:18.186 [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=?
  1629. 04:52:18.187 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1630. 04:52:18.189 [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 ?
  1631. 04:52:18.190 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [70]
  1632. 04:52:18.192 [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 ?
  1633. 04:52:18.193 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20095]
  1634. 04:52:18.195 [http-nio-8004-exec-7] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715565138194,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130432599411","V_DATE_TIME_V":"2024-05-13 04:52:18","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"001","V_APPLY_TIME_V":"2024-05-13 04:33:00","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130432599411_9057381","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 04:52:18","V_LOGIN_V":"9057381","V_TRANSFORM_AMOUNT_V":"5040.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"700.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  1635. 04:52:18.202 [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=?
  1636. 04:52:18.202 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [14.151.16.41]
  1637. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 04:33:00.0]
  1638. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [70]
  1639. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1640. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 04:52:18 EEST 2024]
  1641. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1642. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1643. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1644. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1645. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1646. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1647. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1648. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1649. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [700.0000000000]
  1650. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1651. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1652. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500079]
  1653. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1654. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 04:52:18 EEST 2024]
  1655. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130432599411_9057381]
  1656. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [5040]
  1657. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1658. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [70]
  1659. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [700.0000000000]
  1660. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1661. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1662. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1663. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 14:33:00.0]
  1664. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=41B61428-F236-DB66-0A00-A07D637D293A&user_id=500079]
  1665. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057381]
  1666. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1667. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [永红 高]
  1668. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1669. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1670. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1671. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1672. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1673. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1674. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1675. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1676. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1677. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1678. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1679. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1680. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1681. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1682. "code":"602961",
  1683. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1684. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1685. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1686. }]
  1687. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1688. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130432599411]
  1689. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [5040]
  1690. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1691. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1692. 04:52:18.203 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2056]
  1693. 04:56:10.100 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1694. 05:01:10.101 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1695. 05:06:10.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1696. 05:11:10.104 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1697. 05:12:10.516 [http-nio-8004-exec-8] 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
  1698. 05:12:10.518 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1699. 05:12:10.520 [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 (? , ?)
  1700. 05:12:10.520 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1701. 05:12:10.520 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1702. 05:12:10.521 [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=?
  1703. 05:12:10.521 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1704. 05:12:10.521 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1705. 05:12:10.521 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1706. 05:12:10.522 [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=?
  1707. 05:12:10.523 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1708. 05:12:10.523 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1709. 05:12:10.523 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1710. 05:12:10.557 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1711. 05:12:10.559 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1712. 05:12:10.559 [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 (? , ?)
  1713. 05:12:10.560 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1714. 05:12:10.560 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1715. 05:12:10.560 [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=?
  1716. 05:12:10.561 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1717. 05:12:10.561 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1718. 05:12:10.561 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1719. 05:12:10.561 [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=?
  1720. 05:12:10.561 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1721. 05:12:10.562 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1722. 05:12:10.562 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1723. 05:12:13.751 [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
  1724. 05:12:13.754 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1725. 05:12:13.755 [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 (? , ?)
  1726. 05:12:13.756 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1727. 05:12:13.756 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1728. 05:12:13.757 [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=?
  1729. 05:12:13.758 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1730. 05:12:13.758 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1731. 05:12:13.758 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1732. 05:12:13.758 [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=?
  1733. 05:12:13.759 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1734. 05:12:13.759 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1735. 05:12:13.759 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1736. 05:12:29.783 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.code=? and sysremitch0_.valid=? limit ?
  1737. 05:12:29.784 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  1738. 05:12:29.784 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1739. 05:12:29.786 [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 (? , ?)
  1740. 05:12:29.787 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1741. 05:12:29.787 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1742. 05:12:29.787 [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 ?
  1743. 05:12:29.788 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [464]
  1744. 05:12:29.790 [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 ?
  1745. 05:12:29.791 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [464]
  1746. 05:12:29.791 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057017]
  1747. 05:12:29.791 [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=?
  1748. 05:12:29.791 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1749. 05:12:29.791 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1750. 05:12:29.791 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1751. 05:12:29.793 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - insert into finance_withdraw (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, address, agent_id, amount, bank_addr, bank_back, bank_branch_name, bank_card_num, bank_code, bank_front, bank_name, bank_uname, c_id, callback_status, channel_serial, currency, custom_bank_code, custom_id, login, login_type, message, name, operation_type, pay_type, platform, rate, remit_channel_code, remit_channel_currency, remit_channel_en_icon, remit_channel_en_introduce, remit_channel_en_name, remit_channel_icon, remit_channel_introduce, remit_channel_name, remit_channel_request_url, remit_channel_type, serial, swift_code, transform_amount, transform_currency, withdraw_amount, withdraw_currency, withdraw_status, withdraw_ticket) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1752. 05:12:29.794 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [117.136.55.102]
  1753. 05:12:29.794 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 05:12:29 EEST 2024]
  1754. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [464]
  1755. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1756. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1757. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1758. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1759. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1760. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1761. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1762. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1763. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1764. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  1765. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [254.39]
  1766. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1767. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1768. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [杏花岭区柏杨树]
  1769. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6222030502005798817]
  1770. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1771. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/464/bank/97975a46709e4a83b6d286d8151284d1.jpg]
  1772. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国工商银行-ICBC]
  1773. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [博文 姚]
  1774. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500494]
  1775. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  1776. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1777. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1778. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1779. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [464]
  1780. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057017]
  1781. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1782. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1783. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [博文 姚]
  1784. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1785. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1786. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1787. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [7.0000000000]
  1788. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1789. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1790. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1791. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  1792. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1793. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1794. <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>
  1795. <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>
  1796. <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>
  1797. <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>
  1798. <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>
  1799. <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>
  1800. <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>]
  1801. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1802. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1803. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [<p style="line-height: 2;"><span style="font-size: 12pt;"><strong>取款注意事项:</strong></span></p>
  1804. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1805. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1806. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1807. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1808. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1809. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1810. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1811. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1812. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1813. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1814. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1815. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1816. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202405130512290913]
  1817. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1818. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [1780.730000000000]
  1819. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1820. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [254.39]
  1821. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1822. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  1823. 05:12:29.795 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  1824. 05:12:29.796 [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=?
  1825. 05:12:29.797 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1826. 05:12:29.797 [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 ?
  1827. 05:12:29.798 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [464]
  1828. 05:12:29.799 [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 is null limit ?
  1829. 05:12:29.803 [http-nio-8004-exec-6] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"117.136.55.102","addTime":1715566349803,"addUser":464,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"博文 姚","V_SERIAL_V":"PW202405130512290913","V_DATE_TIME_V":"2024-05-13 05:12:29","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2024-05-13 05:12:29","V_BANK_CARD_NUM_V":"6222030502005798817","V_LOGIN_V":"9057017","V_TRANSFORM_AMOUNT_V":"1780.73","V_BANK_BRANCH_NAME_V":"杏花岭区柏杨树","V_WITHDRAW_AMOUNT_V":"254.39","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国工商银行-ICBC"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mic_partnership@126.com"}
  1830. 05:12:31.090 [http-nio-8004-exec-8] 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
  1831. 05:12:31.094 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1832. 05:12:31.096 [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 (? , ?)
  1833. 05:12:31.097 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1834. 05:12:31.097 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1835. 05:12:31.097 [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=?
  1836. 05:12:31.098 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1837. 05:12:31.098 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1838. 05:12:31.098 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1839. 05:12:31.100 [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=?
  1840. 05:12:31.101 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1841. 05:12:31.101 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1842. 05:12:31.101 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1843. 05:16:10.105 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1844. 05:21:10.107 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1845. 05:26:10.108 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1846. 05:31:10.109 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1847. 05:31:10.991 [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
  1848. 05:31:10.993 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1849. 05:31:10.994 [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 (? , ?)
  1850. 05:31:10.995 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1851. 05:31:10.995 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1852. 05:31:10.995 [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=?
  1853. 05:31:10.996 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1854. 05:31:10.996 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1855. 05:31:10.996 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1856. 05:31:19.524 [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 ?
  1857. 05:31:19.526 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1858. 05:31:19.528 [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 (? , ?)
  1859. 05:31:19.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1860. 05:31:19.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1861. 05:31:19.531 [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 ?
  1862. 05:31:19.532 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [303]
  1863. 05:31:19.534 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  1864. 05:31:19.536 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [303]
  1865. 05:31:19.536 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057366]
  1866. 05:31:19.537 [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=?
  1867. 05:31:19.537 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1868. 05:31:19.537 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1869. 05:31:19.537 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1870. 05:31:19.539 [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=?
  1871. 05:31:19.539 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1872. 05:31:19.539 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1873. 05:31:19.539 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1874. 05:31:19.540 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1875. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  1876. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 05:31:19 EEST 2024]
  1877. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [303]
  1878. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1879. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1880. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1881. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1882. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1883. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1884. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1885. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1886. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1887. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1888. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  1889. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1890. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1891. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500318]
  1892. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1893. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1894. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1895. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400.0000000000]
  1896. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1897. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [303]
  1898. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  1899. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1900. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1901. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1902. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 15:31:19 EEST 2024]
  1903. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1904. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057366]
  1905. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1906. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [恩洲 夏]
  1907. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1908. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1909. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1910. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1911. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1912. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1913. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1914. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1915. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1916. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1917. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1918. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1919. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1920. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1921. "code":"602961",
  1922. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1923. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1924. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1925. }]
  1926. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1927. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130531193264]
  1928. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [14400.0000000000]
  1929. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1930. 05:31:19.541 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1931. 05:31:19.543 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130531193264_9057366,加密字符串为:order_amount=14400&order_id=PD202405130531193264_9057366&order_ip=122.4.122.162&order_time=2024-05-13+05%3A31%3A19&pay_user_name=%E6%81%A9%E6%B4%B2%E5%A4%8F&sys_no=602961&user_id=500318469ad7b6cca3036e29f721606999b7fc,加密结果sign:99b9ebf7528ed4834c2858b0552f1a3d
  1932. 05:31:19.543 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130531193264_9057366","order_amount":"14400","sys_no":"602961","user_id":"500318","order_ip":"122.4.122.162","order_time":"2024-05-13 05:31:19","pay_user_name":"恩洲夏","sign":"99b9ebf7528ed4834c2858b0552f1a3d"}
  1933. 05:31:20.526 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"C06CD87B-F07C-8574-8247-862290A31F38","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500318"},"code":111}
  1934. 05:31:20.526 [http-nio-8004-exec-3] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130531193264_9057366,请求url:https://swpnep.one8719.com/?in_order_id=C06CD87B-F07C-8574-8247-862290A31F38&user_id=500318
  1935. 05:31:20.526 [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=?
  1936. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  1937. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 05:31:19 EEST 2024]
  1938. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [303]
  1939. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1940. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1941. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1942. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1943. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1944. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1945. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1946. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1947. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1948. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  1949. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  1950. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1951. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1952. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500318]
  1953. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1954. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1955. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1956. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400.0000000000]
  1957. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1958. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [303]
  1959. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  1960. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1961. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1962. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1963. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 15:31:19 EEST 2024]
  1964. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=C06CD87B-F07C-8574-8247-862290A31F38&user_id=500318]
  1965. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057366]
  1966. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1967. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [恩洲 夏]
  1968. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1969. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1970. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1971. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  1972. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  1973. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1974. 05:31:20.528 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1975. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1976. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1977. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1978. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  1979. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  1980. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1981. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1982. "code":"602961",
  1983. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  1984. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  1985. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  1986. }]
  1987. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  1988. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130531193264]
  1989. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [14400.0000000000]
  1990. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1991. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1992. 05:31:20.529 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2057]
  1993. 05:36:10.111 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1994. 05:37:29.541 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130531193264_9057366,callback data:{"amount":"14400","bill_no":"PD202405130531193264_9057366","sign":"455626a2e303eebea5f659e0ff6f0668","sys_no":"602961"}
  1995. 05:37:29.542 [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 ?
  1996. 05:37:29.544 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  1997. 05:37:29.547 [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 (? , ?)
  1998. 05:37:29.547 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1999. 05:37:29.547 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2000. 05:37:29.549 [http-nio-8004-exec-2] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130531193264_9057366,signString:PD202405130531193264_9057366230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:455626a2e303eebea5f659e0ff6f0668
  2001. 05:37:29.550 [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
  2002. 05:37:29.552 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130531193264]
  2003. 05:37:29.741 [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=?
  2004. 05:37:29.742 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2005. 05:37:29.743 [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 ?
  2006. 05:37:29.744 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [303]
  2007. 05:37:29.746 [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 ?
  2008. 05:37:29.747 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20116]
  2009. 05:37:29.748 [http-nio-8004-exec-2] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715567849748,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130531193264","V_DATE_TIME_V":"2024-05-13 05:37:29","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0124","V_APPLY_TIME_V":"2024-05-13 05:31:20","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130531193264_9057366","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 05:37:29","V_LOGIN_V":"9057366","V_TRANSFORM_AMOUNT_V":"14400.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"2000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  2010. 05:37:29.754 [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=?
  2011. 05:37:29.754 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  2012. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 05:31:20.0]
  2013. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [303]
  2014. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2015. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 05:37:29 EEST 2024]
  2016. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2017. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2018. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2019. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2020. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2021. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2022. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2023. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20116]
  2024. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000.0000000000]
  2025. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2026. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2027. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500318]
  2028. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2029. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 05:37:29 EEST 2024]
  2030. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130531193264_9057366]
  2031. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14400]
  2032. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2033. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [303]
  2034. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000.0000000000]
  2035. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2036. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2037. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2038. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 15:31:20.0]
  2039. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=C06CD87B-F07C-8574-8247-862290A31F38&user_id=500318]
  2040. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057366]
  2041. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2042. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [恩洲 夏]
  2043. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2044. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2045. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2046. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2047. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2048. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2049. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2050. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2051. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2052. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2053. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2054. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2055. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2056. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2057. "code":"602961",
  2058. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2059. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2060. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2061. }]
  2062. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2063. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130531193264]
  2064. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [14400]
  2065. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2066. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2067. 05:37:29.755 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2057]
  2068. 05:38:31.328 [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=?
  2069. 05:38:31.330 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  2070. 05:41:10.113 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2071. 05:46:10.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2072. 05:47:47.146 [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
  2073. 05:47:47.148 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2074. 05:47:47.150 [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 (? , ?)
  2075. 05:47:47.150 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2076. 05:47:47.150 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2077. 05:47:47.151 [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=?
  2078. 05:47:47.151 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2079. 05:47:47.151 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2080. 05:47:47.151 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2081. 05:51:10.115 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2082. 05:56:10.117 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2083. 06:00:37.165 [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
  2084. 06:00:37.167 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2085. 06:00:37.168 [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 (? , ?)
  2086. 06:00:37.169 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2087. 06:00:37.169 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2088. 06:00:37.170 [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=?
  2089. 06:00:37.171 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2090. 06:00:37.171 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2091. 06:00:37.171 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2092. 06:00:37.188 [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
  2093. 06:00:37.190 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2094. 06:00:37.190 [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 (? , ?)
  2095. 06:00:37.191 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2096. 06:00:37.191 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2097. 06:00:37.191 [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=?
  2098. 06:00:37.192 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2099. 06:00:37.192 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2100. 06:00:37.192 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2101. 06:01:10.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2102. 06:01:11.902 [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 ?
  2103. 06:01:11.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2104. 06:01:11.906 [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 (? , ?)
  2105. 06:01:11.906 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2106. 06:01:11.906 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2107. 06:01:11.910 [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 ?
  2108. 06:01:11.911 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [205]
  2109. 06:01:11.913 [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 ?
  2110. 06:01:11.914 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [205]
  2111. 06:01:11.914 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057095]
  2112. 06:01:11.915 [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=?
  2113. 06:01:11.915 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2114. 06:01:11.915 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2115. 06:01:11.915 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2116. 06:01:11.917 [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=?
  2117. 06:01:11.917 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2118. 06:01:11.917 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2119. 06:01:11.917 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2120. 06:01:11.918 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2121. 06:01:11.918 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  2122. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 06:01:11 EEST 2024]
  2123. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [205]
  2124. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2125. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2126. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2127. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2128. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2129. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2130. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2131. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2132. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2133. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  2134. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [4000]
  2135. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2136. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2137. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500214]
  2138. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2139. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2140. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2141. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [28800.0000000000]
  2142. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2143. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [205]
  2144. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [4000]
  2145. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2146. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2147. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2148. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 16:01:11 EEST 2024]
  2149. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2150. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057095]
  2151. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2152. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [佳静 吕]
  2153. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2154. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2155. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2156. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2157. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2158. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2159. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2160. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2161. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2162. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2163. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2164. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2165. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2166. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2167. "code":"602961",
  2168. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2169. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2170. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2171. }]
  2172. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2173. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130601118523]
  2174. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [28800.0000000000]
  2175. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2176. 06:01:11.919 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2177. 06:01:11.921 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130601118523_9057095,加密字符串为:order_amount=28800&order_id=PD202405130601118523_9057095&order_ip=122.4.122.162&order_time=2024-05-13+06%3A01%3A11&pay_user_name=%E4%BD%B3%E9%9D%99%E5%90%95&sys_no=602961&user_id=500214469ad7b6cca3036e29f721606999b7fc,加密结果sign:9e324a73bed1299cb5790d2b0e6f62f3
  2178. 06:01:11.921 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130601118523_9057095","order_amount":"28800","sys_no":"602961","user_id":"500214","order_ip":"122.4.122.162","order_time":"2024-05-13 06:01:11","pay_user_name":"佳静吕","sign":"9e324a73bed1299cb5790d2b0e6f62f3"}
  2179. 06:01:12.902 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"29AEED77-2304-C300-60E1-7518D658F84D","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500214"},"code":111}
  2180. 06:01:12.902 [http-nio-8004-exec-6] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130601118523_9057095,请求url:https://swpnep.one8719.com/?in_order_id=29AEED77-2304-C300-60E1-7518D658F84D&user_id=500214
  2181. 06:01:12.902 [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=?
  2182. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  2183. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 06:01:11 EEST 2024]
  2184. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [205]
  2185. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2186. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2187. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2188. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2189. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2190. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2191. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2192. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2193. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2194. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  2195. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [4000]
  2196. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2197. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2198. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500214]
  2199. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2200. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2201. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2202. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [28800.0000000000]
  2203. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2204. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [205]
  2205. 06:01:12.904 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [4000]
  2206. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2207. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2208. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2209. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 16:01:11 EEST 2024]
  2210. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=29AEED77-2304-C300-60E1-7518D658F84D&user_id=500214]
  2211. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057095]
  2212. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2213. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [佳静 吕]
  2214. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2215. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2216. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2217. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2218. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2219. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2220. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2221. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2222. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2223. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2224. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2225. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2226. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2227. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2228. "code":"602961",
  2229. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2230. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2231. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2232. }]
  2233. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2234. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130601118523]
  2235. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [28800.0000000000]
  2236. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2237. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2238. 06:01:12.905 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2058]
  2239. 06:04:23.715 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130601118523_9057095,callback data:{"amount":"28800","bill_no":"PD202405130601118523_9057095","sign":"ef484286cd4e8e6703c756d1c82fee7e","sys_no":"602961"}
  2240. 06:04:23.715 [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 ?
  2241. 06:04:23.717 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2242. 06:04:23.719 [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 (? , ?)
  2243. 06:04:23.720 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2244. 06:04:23.720 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2245. 06:04:23.720 [http-nio-8004-exec-10] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130601118523_9057095,signString:PD202405130601118523_9057095230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:ef484286cd4e8e6703c756d1c82fee7e
  2246. 06:04:23.721 [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
  2247. 06:04:23.722 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130601118523]
  2248. 06:04:23.853 [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=?
  2249. 06:04:23.855 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2250. 06:04:23.857 [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 ?
  2251. 06:04:23.858 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [205]
  2252. 06:04:23.860 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id=? limit ?
  2253. 06:04:23.861 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20118]
  2254. 06:04:23.862 [http-nio-8004-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715569463862,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130601118523","V_DATE_TIME_V":"2024-05-13 06:04:23","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0126","V_APPLY_TIME_V":"2024-05-13 06:01:12","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130601118523_9057095","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 06:04:23","V_LOGIN_V":"9057095","V_TRANSFORM_AMOUNT_V":"28800.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"4000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  2255. 06:04:23.870 [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=?
  2256. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.162]
  2257. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 06:01:12.0]
  2258. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [205]
  2259. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2260. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 06:04:23 EEST 2024]
  2261. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2262. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2263. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2264. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2265. 06:04:23.871 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2266. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2267. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2268. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  2269. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [4000.0000000000]
  2270. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2271. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2272. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500214]
  2273. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2274. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 06:04:23 EEST 2024]
  2275. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130601118523_9057095]
  2276. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [28800]
  2277. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2278. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [205]
  2279. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [4000.0000000000]
  2280. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2281. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2282. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2283. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 16:01:12.0]
  2284. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=29AEED77-2304-C300-60E1-7518D658F84D&user_id=500214]
  2285. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057095]
  2286. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2287. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [佳静 吕]
  2288. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2289. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2290. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2291. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2292. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2293. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2294. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2295. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2296. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2297. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2298. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2299. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2300. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2301. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2302. "code":"602961",
  2303. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2304. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2305. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2306. }]
  2307. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2308. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130601118523]
  2309. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [28800]
  2310. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2311. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2312. 06:04:23.872 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2058]
  2313. 06:04:31.188 [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=?
  2314. 06:04:31.190 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  2315. 06:06:10.120 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2316. 06:11:10.122 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2317. 06:16:10.123 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2318. 06:21:10.125 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2319. 06:26:10.126 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2320. 06:31:10.127 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2321. 06:36:10.129 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2322. 06:41:10.131 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2323. 06:46:10.133 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2324. 06:51:10.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2325. 06:56:10.136 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2326. 07:01:10.138 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2327. 07:06:10.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2328. 07:11:10.140 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2329. 07:16:10.142 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2330. 07:18:30.675 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  2331. 07:18:30.684 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2332. 07:18:30.722 [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 (? , ?)
  2333. 07:18:30.724 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2334. 07:18:30.724 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2335. 07:18:30.725 [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=?
  2336. 07:18:30.726 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2337. 07:18:30.726 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2338. 07:18:30.726 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2339. 07:18:30.986 [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
  2340. 07:18:30.990 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2341. 07:18:30.991 [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 (? , ?)
  2342. 07:18:30.992 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2343. 07:18:30.992 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2344. 07:18:30.993 [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=?
  2345. 07:18:30.994 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2346. 07:18:30.994 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2347. 07:18:30.994 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2348. 07:18:34.410 [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
  2349. 07:18:34.414 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2350. 07:18:34.416 [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 (? , ?)
  2351. 07:18:34.416 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2352. 07:18:34.417 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2353. 07:18:34.417 [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=?
  2354. 07:18:34.418 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2355. 07:18:34.418 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2356. 07:18:34.418 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2357. 07:19:33.858 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitta0_.id as id1_87_, sysremitta0_.add_ip as add_ip2_87_, sysremitta0_.add_time as add_time3_87_, sysremitta0_.add_user as add_user4_87_, sysremitta0_.modify_ip as modify_i5_87_, sysremitta0_.modify_time as modify_t6_87_, sysremitta0_.modify_user as modify_u7_87_, sysremitta0_.note as note8_87_, sysremitta0_.bank_valid as bank_val9_87_, sysremitta0_.code as code10_87_, sysremitta0_.currency as currenc11_87_, sysremitta0_.en_icon as en_icon12_87_, sysremitta0_.en_introduce as en_intr13_87_, sysremitta0_.en_name as en_name14_87_, sysremitta0_.expire as expire15_87_, sysremitta0_.free as free16_87_, sysremitta0_.funding_time as funding17_87_, sysremitta0_.icon as icon18_87_, sysremitta0_.introduce as introdu19_87_, sysremitta0_.max_amount as max_amo20_87_, sysremitta0_.min_amount as min_amo21_87_, sysremitta0_.name as name22_87_, sysremitta0_.property as propert23_87_, sysremitta0_.rate as rate24_87_, sysremitta0_.request_url as request25_87_, sysremitta0_.sub_index as sub_ind26_87_, sysremitta0_.transform_currency as transfo27_87_, sysremitta0_.valid as valid28_87_ from sys_remittance_channel sysremitta0_ where sysremitta0_.valid=? order by sysremitta0_.sub_index asc
  2358. 07:19:33.860 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2359. 07:19:33.862 [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 (? , ?)
  2360. 07:19:33.862 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2361. 07:19:33.862 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2362. 07:19:33.864 [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=?
  2363. 07:19:33.864 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2364. 07:19:33.864 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2365. 07:19:33.864 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2366. 07:20:32.962 [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 ?
  2367. 07:20:32.964 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2368. 07:20:32.966 [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 (? , ?)
  2369. 07:20:32.966 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2370. 07:20:32.966 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2371. 07:20:32.974 [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 ?
  2372. 07:20:32.975 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
  2373. 07:20:32.977 [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 ?
  2374. 07:20:32.978 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
  2375. 07:20:32.978 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057454]
  2376. 07:20:32.978 [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=?
  2377. 07:20:32.979 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2378. 07:20:32.979 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2379. 07:20:32.979 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2380. 07:20:32.980 [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=?
  2381. 07:20:32.980 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2382. 07:20:32.980 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2383. 07:20:32.980 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2384. 07:20:32.981 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2385. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.78.152.202]
  2386. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 07:20:32 EEST 2024]
  2387. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
  2388. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2389. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2390. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2391. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2392. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2393. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2394. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2395. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2396. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2397. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  2398. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  2399. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2400. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2401. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500561]
  2402. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2403. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2404. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2405. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  2406. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2407. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [528]
  2408. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  2409. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2410. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2411. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2412. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 17:20:32 EEST 2024]
  2413. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2414. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057454]
  2415. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2416. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [锦堃 董]
  2417. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2418. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2419. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2420. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2421. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2422. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2423. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2424. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2425. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2426. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2427. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2428. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2429. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2430. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2431. "code":"602961",
  2432. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2433. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2434. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2435. }]
  2436. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2437. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130720325488]
  2438. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  2439. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2440. 07:20:32.982 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2441. 07:20:32.984 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 加密处理--请求orderNo:PD202405130720325488_9057454,加密字符串为:order_amount=3600&order_id=PD202405130720325488_9057454&order_ip=223.78.152.202&order_time=2024-05-13+07%3A20%3A32&pay_user_name=%E9%94%A6%E5%A0%83%E8%91%A3&sys_no=602961&user_id=500561469ad7b6cca3036e29f721606999b7fc,加密结果sign:55dff1f73907314f73f66f08c5bb61fb
  2442. 07:20:32.984 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - send rul:https://swpapi.jy6989.com/UtInRecordApi/orderGateWay,params:{"order_id":"PD202405130720325488_9057454","order_amount":"3600","sys_no":"602961","user_id":"500561","order_ip":"223.78.152.202","order_time":"2024-05-13 07:20:32","pay_user_name":"锦堃董","sign":"55dff1f73907314f73f66f08c5bb61fb"}
  2443. 07:20:33.939 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - get url body:{"status":"success","msg":"\u6210\u529f","data":{"order_no":"6A1594E8-FEB0-592C-05F3-D821619B7E4B","send_url":"https:\/\/swpnep.one8719.com\/","user_id":"500561"},"code":111}
  2444. 07:20:33.939 [http-nio-8004-exec-7] INFO c.c.p.s.i.pay.InoutworkServiceImpl - 支付请求,请求orderNo:PD202405130720325488_9057454,请求url:https://swpnep.one8719.com/?in_order_id=6A1594E8-FEB0-592C-05F3-D821619B7E4B&user_id=500561
  2445. 07:20:33.940 [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=?
  2446. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.78.152.202]
  2447. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Mon May 13 07:20:32 EEST 2024]
  2448. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
  2449. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2450. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2451. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2452. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2453. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2454. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2455. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2456. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2457. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2458. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  2459. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  2460. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2461. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2462. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500561]
  2463. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2464. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2465. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2466. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600.0000000000]
  2467. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2468. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [528]
  2469. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  2470. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2471. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2472. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2473. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Mon May 13 17:20:32 EEST 2024]
  2474. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=6A1594E8-FEB0-592C-05F3-D821619B7E4B&user_id=500561]
  2475. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057454]
  2476. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2477. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [锦堃 董]
  2478. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2479. 07:20:33.943 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2480. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2481. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2482. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2483. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2484. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2485. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2486. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2487. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2488. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2489. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2490. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2491. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2492. "code":"602961",
  2493. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2494. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2495. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2496. }]
  2497. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2498. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130720325488]
  2499. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600.0000000000]
  2500. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2501. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2502. 07:20:33.944 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2059]
  2503. 07:21:10.143 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2504. 07:25:52.870 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback orderNo:PD202405130720325488_9057454,callback data:{"amount":"3600","bill_no":"PD202405130720325488_9057454","sign":"e06a9416c1b5d98ab86eb53a917a6db1","sys_no":"602961"}
  2505. 07:25:52.870 [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 ?
  2506. 07:25:52.872 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2507. 07:25:52.874 [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 (? , ?)
  2508. 07:25:52.875 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2509. 07:25:52.875 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2510. 07:25:52.875 [http-nio-8004-exec-5] INFO c.c.p.s.i.pay.InoutworkServiceImpl - callback--orderNo:PD202405130720325488_9057454,signString:PD202405130720325488_9057454230075D1-022D-42E4-1CFA-F5B94E9EA195,sign:e06a9416c1b5d98ab86eb53a917a6db1
  2511. 07:25:52.875 [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
  2512. 07:25:52.877 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202405130720325488]
  2513. 07:25:53.016 [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=?
  2514. 07:25:53.017 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  2515. 07:25:53.018 [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 ?
  2516. 07:25:53.019 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [528]
  2517. 07:25:53.021 [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 ?
  2518. 07:25:53.022 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20121]
  2519. 07:25:53.024 [http-nio-8004-exec-5] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"3.213.178.122","addTime":1715574353023,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202405130720325488","V_DATE_TIME_V":"2024-05-13 07:25:53","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0127","V_APPLY_TIME_V":"2024-05-13 07:20:33","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"PD202405130720325488_9057454","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2024-05-13 07:25:53","V_LOGIN_V":"9057454","V_TRANSFORM_AMOUNT_V":"3600.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"500.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  2520. 07:25:53.029 [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=?
  2521. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [223.78.152.202]
  2522. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2024-05-13 07:20:33.0]
  2523. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [528]
  2524. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2525. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Mon May 13 07:25:53 EEST 2024]
  2526. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2527. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2528. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2529. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2530. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2531. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2532. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2533. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  2534. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500.0000000000]
  2535. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2536. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2537. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500561]
  2538. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  2539. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Mon May 13 07:25:52 EEST 2024]
  2540. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [PD202405130720325488_9057454]
  2541. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3600]
  2542. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2543. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [528]
  2544. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500.0000000000]
  2545. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2546. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2547. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2548. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2024-05-13 17:20:33.0]
  2549. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://swpnep.one8719.com/?in_order_id=6A1594E8-FEB0-592C-05F3-D821619B7E4B&user_id=500561]
  2550. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057454]
  2551. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2552. 07:25:53.030 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [锦堃 董]
  2553. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2554. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2555. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2556. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - []
  2557. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.2000000000]
  2558. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [INOUTWORK_PAY_KEY]
  2559. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2560. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2561. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2562. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2563. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0f48cd14d0f546ccbd4cdfb512e8e388.png]
  2564. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - []
  2565. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2566. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2567. "code":"602961",
  2568. "signKey":"469ad7b6cca3036e29f721606999b7fc",
  2569. "callbackSignKey":"230075D1-022D-42E4-1CFA-F5B94E9EA195",
  2570. "baseUrl":"https://swpapi.jy6989.com/UtInRecordApi/orderGateWay"
  2571. }]
  2572. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/inoutwork/pay]
  2573. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202405130720325488]
  2574. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3600]
  2575. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2576. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2577. 07:25:53.031 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [2059]
  2578. 07:26:03.039 [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=?
  2579. 07:26:03.040 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  2580. 07:26:10.145 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2581. 07:31:10.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2582. 07:36:10.148 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2583. 07:41:10.150 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2584. 07:46:10.152 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2585. 07:51:10.153 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2586. 07:56:10.155 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2587. 08:01:10.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2588. 08:06:10.158 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2589. 08:11:10.159 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2590. 08:16:10.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2591. 08:21:10.161 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2592. 08:26:10.163 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2593. 08:31:10.164 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2594. 08:36:10.165 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2595. 08:41:10.167 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2596. 08:46:10.169 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2597. 08:51:10.171 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2598. 08:56:10.172 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2599. 09:01:10.174 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2600. 09:06:10.175 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2601. 09:11:10.177 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2602. 09:16:10.178 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2603. 09:21:10.180 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2604. 09:26:10.182 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2605. 09:31:10.184 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2606. 09:36:10.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2607. 09:41:10.187 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2608. 09:46:10.189 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2609. 09:51:10.190 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2610. 09:56:10.192 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2611. 10:01:10.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2612. 10:06:10.195 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2613. 10:11:10.197 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2614. 10:16:10.198 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2615. 10:21:10.200 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2616. 10:26:10.201 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2617. 10:31:10.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2618. 10:36:10.204 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2619. 10:41:10.205 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2620. 10:46:10.206 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2621. 10:51:10.207 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2622. 10:56:10.208 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2623. 11:01:10.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2624. 11:06:10.212 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2625. 11:11:10.214 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2626. 11:16:10.215 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2627. 11:21:10.216 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2628. 11:26:10.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2629. 11:31:10.220 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2630. 11:36:10.221 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2631. 11:41:10.223 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2632. 11:46:10.224 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2633. 11:51:10.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2634. 11:56:10.226 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2635. 12:01:10.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2636. 12:06:10.229 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2637. 12:11:10.231 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2638. 12:16:10.232 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2639. 12:21:10.233 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2640. 12:26:10.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2641. 12:31:10.236 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2642. 12:36:10.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2643. 12:41:10.238 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2644. 12:46:10.240 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2645. 12:51:10.242 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2646. 12:56:10.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2647. 13:01:10.245 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2648. 13:06:10.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2649. 13:11:10.248 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2650. 13:16:10.250 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2651. 13:21:10.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2652. 13:26:10.253 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2653. 13:31:10.255 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2654. 13:36:10.256 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2655. 13:41:10.257 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2656. 13:46:10.258 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2657. 13:51:10.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2658. 13:56:10.261 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2659. 14:01:10.262 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2660. 14:06:10.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2661. 14:11:10.266 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2662. 14:16:10.267 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2663. 14:21:10.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2664. 14:26:10.270 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2665. 14:31:10.271 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2666. 14:36:10.273 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2667. 14:41:10.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2668. 14:46:10.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2669. 14:51:10.278 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2670. 14:56:10.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2671. 15:01:10.281 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2672. 15:06:10.283 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2673. 15:11:10.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2674. 15:16:10.286 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2675. 15:21:10.287 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2676. 15:26:10.289 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2677. 15:31:10.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2678. 15:36:10.293 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2679. 15:41:10.295 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2680. 15:46:10.296 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2681. 15:51:10.298 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2682. 15:56:10.300 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2683. 16:01:10.302 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2684. 16:06:10.303 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2685. 16:11:10.305 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2686. 16:16:10.306 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2687. 16:21:10.308 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2688. 16:26:10.310 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2689. 16:31:10.311 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2690. 16:36:10.313 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2691. 16:41:10.314 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2692. 16:46:10.316 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2693. 16:51:10.318 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2694. 16:56:10.320 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2695. 17:01:10.321 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2696. 17:06:10.323 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2697. 17:11:10.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2698. 17:16:10.326 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2699. 17:21:10.327 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2700. 17:26:10.328 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2701. 17:31:10.330 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2702. 17:36:10.332 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2703. 17:41:10.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2704. 17:46:10.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2705. 17:51:10.336 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2706. 17:56:10.338 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2707. 18:01:10.338 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2708. 18:06:10.339 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2709. 18:11:10.340 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2710. 18:16:10.342 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2711. 18:21:10.343 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2712. 18:26:10.345 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2713. 18:31:10.346 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2714. 18:36:10.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2715. 18:41:10.348 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2716. 18:46:10.350 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2717. 18:51:10.352 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2718. 18:56:10.354 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2719. 19:01:10.356 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2720. 19:06:10.357 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2721. 19:11:10.359 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2722. 19:16:10.361 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2723. 19:21:10.362 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2724. 19:26:10.363 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2725. 19:31:10.365 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2726. 19:36:10.367 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2727. 19:41:10.368 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2728. 19:46:10.370 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2729. 19:51:10.371 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2730. 19:56:10.373 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2731. 20:01:10.374 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2732. 20:06:10.375 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2733. 20:11:10.377 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2734. 20:16:10.378 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2735. 20:21:10.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2736. 20:26:10.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2737. 20:31:10.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2738. 20:36:10.383 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2739. 20:41:10.385 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2740. 20:46:10.386 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2741. 20:51:10.388 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2742. 20:56:10.390 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2743. 21:01:10.392 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2744. 21:06:10.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2745. 21:11:10.394 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2746. 21:16:10.396 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2747. 21:21:10.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2748. 21:26:10.399 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2749. 21:31:10.401 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2750. 21:36:10.402 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2751. 21:41:10.404 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2752. 21:46:10.405 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2753. 21:51:10.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2754. 21:56:10.409 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2755. 22:01:10.411 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2756. 22:06:10.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2757. 22:11:10.414 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2758. 22:16:10.416 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2759. 22:21:10.418 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2760. 22:26:10.419 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2761. 22:31:10.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2762. 22:36:10.423 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2763. 22:41:10.425 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2764. 22:46:10.426 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2765. 22:51:10.428 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2766. 22:56:10.429 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2767. 23:01:10.431 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2768. 23:06:10.433 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2769. 23:11:10.434 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2770. 23:16:10.436 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2771. 23:21:10.438 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2772. 23:26:10.440 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2773. 23:31:10.441 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2774. 23:36:10.443 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2775. 23:41:10.444 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2776. 23:46:10.446 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2777. 23:51:10.447 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2778. 23:56:10.448 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration