logback.2023-09-27.log 883 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443
  1. 00:00:37.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2. 00:05:37.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3. 00:10:37.246 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4. 00:15:37.264 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  5. 00:20:37.274 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  6. 00:25:37.279 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  7. 00:30:37.285 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  8. 00:35:37.291 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  9. 00:40:37.297 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  10. 00:45:37.334 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  11. 00:50:37.360 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  12. 00:55:37.372 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  13. 01:00:37.380 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  14. 01:05:37.386 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  15. 01:10:37.393 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  16. 01:15:37.398 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  17. 01:20:37.405 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  18. 01:25:37.411 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  19. 01:30:37.416 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  20. 01:35:37.454 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  21. 01:40:37.499 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  22. 01:45:37.516 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  23. 01:50:37.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  24. 01:55:37.533 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  25. 02:00:37.540 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  26. 02:05:37.546 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  27. 02:10:37.579 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  28. 02:15:37.606 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  29. 02:20:37.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  30. 02:25:37.627 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  31. 02:30:37.634 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  32. 02:35:37.641 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  33. 02:40:37.648 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  34. 02:45:37.655 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  35. 02:50:37.662 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  36. 02:55:37.668 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  37. 03:00:37.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  38. 03:05:37.680 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  39. 03:10:37.687 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  40. 03:15:37.694 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  41. 03:20:37.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  42. 03:25:37.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  43. 03:30:37.713 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  44. 03:35:37.784 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  45. 03:40:37.849 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  46. 03:45:37.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  47. 03:47:58.203 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  48. 03:47:58.206 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  49. 03:47:58.209 [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 (? , ?)
  50. 03:47:58.209 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  51. 03:47:58.209 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  52. 03:47:58.211 [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=?
  53. 03:47:58.211 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  54. 03:47:58.211 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  55. 03:47:58.211 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  56. 03:47:58.213 [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=?
  57. 03:47:58.213 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  58. 03:47:58.213 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  59. 03:47:58.213 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  60. 03:50:37.887 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  61. 03:50:57.210 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  62. 03:50:57.211 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  63. 03:50:57.213 [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 (? , ?)
  64. 03:50:57.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  65. 03:50:57.214 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  66. 03:50:57.214 [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=?
  67. 03:50:57.214 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  68. 03:50:57.214 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  69. 03:50:57.214 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  70. 03:50:57.216 [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=?
  71. 03:50:57.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  72. 03:50:57.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  73. 03:50:57.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  74. 03:54:27.280 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  75. 03:54:27.281 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  76. 03:54:27.283 [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 (? , ?)
  77. 03:54:27.283 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  78. 03:54:27.283 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  79. 03:54:27.283 [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=?
  80. 03:54:27.284 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  81. 03:54:27.284 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  82. 03:54:27.284 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  83. 03:54:27.285 [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=?
  84. 03:54:27.285 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  85. 03:54:27.285 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  86. 03:54:27.285 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  87. 03:54:27.300 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  88. 03:54:27.302 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  89. 03:54:27.303 [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 (? , ?)
  90. 03:54:27.303 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  91. 03:54:27.304 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  92. 03:54:27.304 [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=?
  93. 03:54:27.304 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  94. 03:54:27.304 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  95. 03:54:27.304 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  96. 03:54:27.305 [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=?
  97. 03:54:27.305 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  98. 03:54:27.305 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  99. 03:54:27.305 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  100. 03:54:30.457 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  101. 03:54:30.458 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  102. 03:54:30.460 [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 (? , ?)
  103. 03:54:30.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  104. 03:54:30.460 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  105. 03:54:30.460 [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=?
  106. 03:54:30.461 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  107. 03:54:30.461 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  108. 03:54:30.461 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  109. 03:54:30.462 [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=?
  110. 03:54:30.462 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  111. 03:54:30.462 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  112. 03:54:30.462 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  113. 03:54:46.202 [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_.code=? and sysremitch0_.valid=? limit ?
  114. 03:54:46.203 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  115. 03:54:46.203 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  116. 03:54:46.205 [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 (? , ?)
  117. 03:54:46.205 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  118. 03:54:46.205 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  119. 03:54:46.206 [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 ?
  120. 03:54:46.207 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [145]
  121. 03:54:46.208 [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 ?
  122. 03:54:46.209 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [145]
  123. 03:54:46.209 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057042]
  124. 03:54:46.210 [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=?
  125. 03:54:46.210 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  126. 03:54:46.210 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  127. 03:54:46.210 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  128. 03:54:46.211 [http-nio-8004-exec-9] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  129. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [60.25.81.74]
  130. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 03:54:46 AST 2023]
  131. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [145]
  132. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  133. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  134. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  135. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  136. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  137. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  138. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  139. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  140. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  141. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20101]
  142. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [199]
  143. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  144. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  145. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [农行石家庄广安支行]
  146. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6228480639034903372]
  147. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  148. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/145/bank/4d5876ac3e364a4a88305989287e5cef.jpg]
  149. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国农业银行-ABC]
  150. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [红柳 于]
  151. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500154]
  152. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  153. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  154. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  155. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  156. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [145]
  157. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057042]
  158. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  159. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  160. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [红柳 于]
  161. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  162. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  163. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  164. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  165. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  166. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  167. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  168. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  169. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  170. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  171. <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>
  172. <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>
  173. <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>
  174. <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>
  175. <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>
  176. <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>
  177. <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>]
  178. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  179. 03:54:46.212 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  180. 03:54:46.212 [http-nio-8004-exec-9] 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>
  181. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  182. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  183. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  184. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  185. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  186. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  187. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  188. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  189. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  190. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  191. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  192. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  193. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202309270354464927]
  194. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  195. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [1353.2000000000]
  196. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  197. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [199]
  198. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  199. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  200. 03:54:46.213 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  201. 03:54:46.214 [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=?
  202. 03:54:46.215 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  203. 03:54:46.215 [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 ?
  204. 03:54:46.216 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [145]
  205. 03:54:46.217 [http-nio-8004-exec-9] DEBUG org.hibernate.SQL - select userinfota0_.id as id1_96_, userinfota0_.add_ip as add_ip2_96_, userinfota0_.add_time as add_time3_96_, userinfota0_.add_user as add_user4_96_, userinfota0_.modify_ip as modify_i5_96_, userinfota0_.modify_time as modify_t6_96_, userinfota0_.modify_user as modify_u7_96_, userinfota0_.note as note8_96_, userinfota0_.agent_level as agent_le9_96_, userinfota0_.all_commission as all_com10_96_, userinfota0_.balance as balance11_96_, userinfota0_.c_id as c_id12_96_, userinfota0_.commission as commiss13_96_, userinfota0_.commission_approval as commiss14_96_, userinfota0_.custom_id as custom_15_96_, userinfota0_.email as email16_96_, userinfota0_.frozen as frozen17_96_, userinfota0_.group_id as group_i18_96_, userinfota0_.hide as hide19_96_, userinfota0_.ib_no as ib_no20_96_, userinfota0_.lang as lang21_96_, userinfota0_.last_address as last_ad22_96_, userinfota0_.last_ip as last_ip23_96_, userinfota0_.last_time as last_ti24_96_, userinfota0_.mt_five_account as mt_five25_96_, userinfota0_.mt_four_account as mt_four26_96_, userinfota0_.name as name27_96_, userinfota0_.p_stamp as p_stamp28_96_, userinfota0_.password as passwor29_96_, userinfota0_.pid as pid30_96_, userinfota0_.point_id as point_i31_96_, userinfota0_.role_id as role_id32_96_, userinfota0_.sales_id as sales_i33_96_, userinfota0_.stamp as stamp34_96_, userinfota0_.unresolved as unresol35_96_, userinfota0_.username as usernam36_96_, userinfota0_.valid as valid37_96_ from user_info userinfota0_ where userinfota0_.id is null limit ?
  206. 03:54:46.220 [http-nio-8004-exec-9] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"60.25.81.74","addTime":1695776086220,"addUser":145,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"红柳 于","V_SERIAL_V":"PW202309270354464927","V_DATE_TIME_V":"2023-09-27 03:54:46","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2023-09-27 03:54:46","V_BANK_CARD_NUM_V":"6228480639034903372","V_LOGIN_V":"9057042","V_TRANSFORM_AMOUNT_V":"1353.20","V_BANK_BRANCH_NAME_V":"农行石家庄广安支行","V_WITHDRAW_AMOUNT_V":"199.00","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国农业银行-ABC"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mic_partnership@126.com"}
  207. 03:54:47.750 [http-nio-8004-exec-2] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  208. 03:54:47.751 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  209. 03:54:47.752 [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 (? , ?)
  210. 03:54:47.752 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  211. 03:54:47.752 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  212. 03:54:47.753 [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=?
  213. 03:54:47.753 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  214. 03:54:47.753 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  215. 03:54:47.753 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  216. 03:54:47.753 [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=?
  217. 03:54:47.754 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  218. 03:54:47.754 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  219. 03:54:47.754 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  220. 03:55:37.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  221. 04:00:37.904 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  222. 04:05:37.912 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  223. 04:10:37.919 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  224. 04:15:37.926 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  225. 04:20:37.933 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  226. 04:25:37.941 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  227. 04:30:37.948 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  228. 04:35:37.955 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  229. 04:40:37.962 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  230. 04:45:38.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  231. 04:50:38.076 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  232. 04:55:38.092 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  233. 05:00:38.114 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  234. 05:05:38.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  235. 05:10:38.147 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  236. 05:15:38.157 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  237. 05:20:38.181 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  238. 05:25:38.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  239. 05:30:38.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  240. 05:35:38.221 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  241. 05:40:38.237 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  242. 05:45:38.247 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  243. 05:50:38.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  244. 05:55:38.282 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  245. 06:00:38.294 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  246. 06:05:38.303 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  247. 06:10:38.312 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  248. 06:15:38.321 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  249. 06:20:38.329 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  250. 06:25:38.338 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  251. 06:30:38.346 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  252. 06:35:38.355 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  253. 06:40:38.364 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  254. 06:45:38.372 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  255. 06:50:38.381 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  256. 06:55:38.389 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  257. 07:00:38.397 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  258. 07:03:23.951 [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
  259. 07:03:23.953 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  260. 07:03:23.955 [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 (? , ?)
  261. 07:03:23.955 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  262. 07:03:23.956 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  263. 07:03:23.957 [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=?
  264. 07:03:23.958 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  265. 07:03:23.958 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  266. 07:03:23.958 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  267. 07:03:23.959 [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=?
  268. 07:03:23.959 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  269. 07:03:23.959 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  270. 07:03:23.959 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  271. 07:03:23.974 [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
  272. 07:03:23.978 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  273. 07:03:23.979 [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 (? , ?)
  274. 07:03:23.979 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  275. 07:03:23.979 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  276. 07:03:23.980 [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=?
  277. 07:03:23.980 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  278. 07:03:23.980 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  279. 07:03:23.980 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  280. 07:03:23.981 [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=?
  281. 07:03:23.981 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  282. 07:03:23.981 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  283. 07:03:23.981 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  284. 07:03:28.149 [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
  285. 07:03:28.149 [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
  286. 07:03:28.150 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  287. 07:03:28.150 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  288. 07:03:28.152 [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 (? , ?)
  289. 07:03:28.152 [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 (? , ?)
  290. 07:03:28.152 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  291. 07:03:28.152 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  292. 07:03:28.152 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  293. 07:03:28.152 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  294. 07:03:28.153 [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=?
  295. 07:03:28.153 [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=?
  296. 07:03:28.153 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  297. 07:03:28.153 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  298. 07:03:28.153 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  299. 07:03:28.153 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  300. 07:03:28.153 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  301. 07:03:28.153 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  302. 07:03:37.232 [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=? and sysremitta0_.valid=? limit ?
  303. 07:03:37.233 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  304. 07:03:37.233 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  305. 07:03:37.235 [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 (? , ?)
  306. 07:03:37.235 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  307. 07:03:37.235 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  308. 07:03:37.238 [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 ?
  309. 07:03:37.239 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [407]
  310. 07:03:37.241 [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 ?
  311. 07:03:37.241 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [407]
  312. 07:03:37.241 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057131]
  313. 07:03:37.242 [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=?
  314. 07:03:37.242 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  315. 07:03:37.242 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  316. 07:03:37.242 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  317. 07:03:37.243 [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=?
  318. 07:03:37.244 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  319. 07:03:37.244 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  320. 07:03:37.244 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  321. 07:03:37.244 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  322. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.200.67.158]
  323. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 07:03:37 AST 2023]
  324. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [407]
  325. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  326. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  327. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  328. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  329. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  330. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  331. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  332. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  333. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  334. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  335. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  336. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  337. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  338. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500430]
  339. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  340. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  341. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  342. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  343. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  344. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [407]
  345. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  346. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  347. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  348. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  349. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 17:03:37 AST 2023]
  350. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  351. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057131]
  352. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  353. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [杨 栗]
  354. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  355. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  356. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  357. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  358. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  359. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  360. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  361. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  362. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  363. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  364. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  365. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  366. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  367. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  368. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  369. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  370. <p>&nbsp;</p>]
  371. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  372. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  373. "uid":"3607251",
  374. "payType":"1",
  375. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  376. "baseUrl":"https://api.maxpay666.com",
  377. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  378. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  379. }]
  380. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  381. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270703377405]
  382. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  383. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  384. 07:03:37.245 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  385. 07:03:37.247 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309270703377405_9057131,加密字符串为:money=35000&orderId=PD202309270703377405_9057131&payType=1&uid=3607251&uniqueCode=407&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:a6fe8cc6338ec744372aa6132bfbfc15
  386. 07:03:37.359 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"407","money":"35000","payType":"1","orderId":"PD202309270703377405_9057131","signature":"a6fe8cc6338ec744372aa6132bfbfc15"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=E7rpgbalXOs4LTRmFHYclLXmhZOnHNwLWKGhYj19VaHgzT0Ej0LOmA6Cp90gcw5uUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  387. 07:03:37.359 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309270703377405_9057131,请求url:https://syt.pwmch.com/created/?data=E7rpgbalXOs4LTRmFHYclLXmhZOnHNwLWKGhYj19VaHgzT0Ej0LOmA6Cp90gcw5uUrI9BGNKcO6AM1EaNebJTw%3D%3D
  388. 07:03:37.359 [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=?
  389. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [183.200.67.158]
  390. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 07:03:37 AST 2023]
  391. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [407]
  392. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  393. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  394. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  395. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  396. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  397. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  398. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  399. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  400. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  401. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20121]
  402. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  403. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  404. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  405. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500430]
  406. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  407. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  408. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  409. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  410. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  411. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [407]
  412. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  413. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  414. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  415. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  416. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 17:03:37 AST 2023]
  417. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=E7rpgbalXOs4LTRmFHYclLXmhZOnHNwLWKGhYj19VaHgzT0Ej0LOmA6Cp90gcw5uUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  418. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057131]
  419. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  420. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [杨 栗]
  421. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  422. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  423. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  424. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  425. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  426. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  427. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  428. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  429. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  430. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  431. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  432. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  433. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  434. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  435. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  436. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  437. <p>&nbsp;</p>]
  438. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  439. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  440. "uid":"3607251",
  441. "payType":"1",
  442. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  443. "baseUrl":"https://api.maxpay666.com",
  444. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  445. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  446. }]
  447. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  448. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270703377405]
  449. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  450. 07:03:37.360 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  451. 07:03:37.361 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  452. 07:03:37.361 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1009]
  453. 07:05:38.405 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  454. 07:10:38.413 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  455. 07:15:38.421 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  456. 07:20:38.430 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  457. 07:25:38.438 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  458. 07:30:38.445 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  459. 07:35:38.453 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  460. 07:40:38.460 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  461. 07:45:38.469 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  462. 07:50:38.477 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  463. 07:55:38.486 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  464. 08:00:38.495 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  465. 08:05:38.503 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  466. 08:10:38.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  467. 08:15:38.520 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  468. 08:20:38.528 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  469. 08:25:38.537 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  470. 08:30:38.545 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  471. 08:35:38.553 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  472. 08:40:38.561 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  473. 08:45:38.569 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  474. 08:49:33.999 [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
  475. 08:49:34.003 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  476. 08:49:34.005 [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 (? , ?)
  477. 08:49:34.005 [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
  478. 08:49:34.005 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  479. 08:49:34.005 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  480. 08:49:34.005 [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=?
  481. 08:49:34.006 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  482. 08:49:34.006 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  483. 08:49:34.006 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  484. 08:49:34.008 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  485. 08:49:34.008 [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 (? , ?)
  486. 08:49:34.009 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  487. 08:49:34.009 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  488. 08:49:34.009 [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=?
  489. 08:49:34.009 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  490. 08:49:34.009 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  491. 08:49:34.009 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  492. 08:49:52.471 [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=? and sysremitta0_.valid=? limit ?
  493. 08:49:52.472 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  494. 08:49:52.472 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  495. 08:49:52.474 [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 (? , ?)
  496. 08:49:52.475 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  497. 08:49:52.475 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  498. 08:49:52.477 [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 ?
  499. 08:49:52.478 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  500. 08:49:52.480 [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 ?
  501. 08:49:52.481 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  502. 08:49:52.481 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057250]
  503. 08:49:52.481 [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=?
  504. 08:49:52.482 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  505. 08:49:52.482 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  506. 08:49:52.482 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  507. 08:49:52.484 [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=?
  508. 08:49:52.484 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  509. 08:49:52.484 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  510. 08:49:52.484 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  511. 08:49:52.484 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  512. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  513. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 08:49:52 AST 2023]
  514. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  515. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  516. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  517. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  518. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  519. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  520. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  521. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  522. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  523. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  524. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  525. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  526. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  527. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  528. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  529. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  530. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  531. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  532. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  533. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  534. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  535. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  536. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  537. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  538. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  539. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 18:49:52 AST 2023]
  540. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  541. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  542. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  543. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  544. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  545. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  546. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  547. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  548. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  549. 08:49:52.485 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  550. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  551. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  552. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  553. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  554. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  555. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  556. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  557. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  558. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  559. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  560. <p>&nbsp;</p>]
  561. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  562. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  563. "uid":"3607251",
  564. "payType":"1",
  565. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  566. "baseUrl":"https://api.maxpay666.com",
  567. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  568. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  569. }]
  570. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  571. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270849527659]
  572. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  573. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  574. 08:49:52.486 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  575. 08:49:52.489 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309270849527659_9057250,加密字符串为:money=35000&orderId=PD202309270849527659_9057250&payType=1&uid=3607251&uniqueCode=430&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:f3399db54378088260d037b30c2f4257
  576. 08:49:52.592 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"430","money":"35000","payType":"1","orderId":"PD202309270849527659_9057250","signature":"f3399db54378088260d037b30c2f4257"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=iZjDtEUz0dwZxoi2FlAcNUmzKiwbVJbFjxEo2yHPHJ82KSzQnqWSh9ca%2FYFTXxg3UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  577. 08:49:52.593 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309270849527659_9057250,请求url:https://syt.pwmch.com/created/?data=iZjDtEUz0dwZxoi2FlAcNUmzKiwbVJbFjxEo2yHPHJ82KSzQnqWSh9ca%2FYFTXxg3UrI9BGNKcO6AM1EaNebJTw%3D%3D
  578. 08:49:52.593 [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=?
  579. 08:49:52.593 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  580. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 08:49:52 AST 2023]
  581. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  582. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  583. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  584. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  585. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  586. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  587. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  588. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  589. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  590. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  591. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  592. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  593. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  594. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  595. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  596. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  597. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  598. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  599. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  600. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  601. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  602. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  603. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  604. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  605. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  606. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 18:49:52 AST 2023]
  607. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=iZjDtEUz0dwZxoi2FlAcNUmzKiwbVJbFjxEo2yHPHJ82KSzQnqWSh9ca%2FYFTXxg3UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  608. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  609. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  610. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  611. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  612. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  613. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  614. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  615. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  616. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  617. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  618. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  619. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  620. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  621. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  622. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  623. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  624. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  625. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  626. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  627. <p>&nbsp;</p>]
  628. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  629. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  630. "uid":"3607251",
  631. "payType":"1",
  632. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  633. "baseUrl":"https://api.maxpay666.com",
  634. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  635. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  636. }]
  637. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  638. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270849527659]
  639. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  640. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  641. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  642. 08:49:52.594 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1010]
  643. 08:50:38.577 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  644. 08:52:47.542 [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=?
  645. 08:52:47.543 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  646. 08:52:48.244 [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=?
  647. 08:52:48.245 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  648. 08:55:38.585 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  649. 08:59:24.304 [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
  650. 08:59:24.306 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  651. 08:59:24.307 [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 (? , ?)
  652. 08:59:24.307 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  653. 08:59:24.307 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  654. 08:59:24.308 [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=?
  655. 08:59:24.308 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  656. 08:59:24.308 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  657. 08:59:24.308 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  658. 08:59:24.321 [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
  659. 08:59:24.322 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  660. 08:59:24.323 [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 (? , ?)
  661. 08:59:24.324 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  662. 08:59:24.324 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  663. 08:59:24.324 [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=?
  664. 08:59:24.324 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  665. 08:59:24.324 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  666. 08:59:24.324 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  667. 08:59:39.523 [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=? and sysremitta0_.valid=? limit ?
  668. 08:59:39.524 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  669. 08:59:39.524 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  670. 08:59:39.526 [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 (? , ?)
  671. 08:59:39.526 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  672. 08:59:39.526 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  673. 08:59:39.529 [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 ?
  674. 08:59:39.530 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  675. 08:59:39.531 [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 ?
  676. 08:59:39.532 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  677. 08:59:39.532 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057250]
  678. 08:59:39.533 [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=?
  679. 08:59:39.533 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  680. 08:59:39.533 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  681. 08:59:39.533 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  682. 08:59:39.534 [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=?
  683. 08:59:39.534 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  684. 08:59:39.535 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  685. 08:59:39.535 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  686. 08:59:39.535 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  687. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  688. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 08:59:39 AST 2023]
  689. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  690. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  691. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  692. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  693. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  694. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  695. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  696. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  697. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  698. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  699. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  700. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  701. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  702. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  703. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  704. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  705. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  706. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  707. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  708. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  709. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  710. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  711. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  712. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  713. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  714. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 18:59:39 AST 2023]
  715. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  716. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  717. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  718. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  719. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  720. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  721. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  722. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  723. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  724. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  725. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  726. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  727. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  728. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  729. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  730. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  731. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  732. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  733. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  734. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  735. <p>&nbsp;</p>]
  736. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  737. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  738. "uid":"3607251",
  739. "payType":"1",
  740. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  741. "baseUrl":"https://api.maxpay666.com",
  742. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  743. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  744. }]
  745. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  746. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270859392102]
  747. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  748. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  749. 08:59:39.536 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  750. 08:59:39.538 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309270859392102_9057250,加密字符串为:money=35000&orderId=PD202309270859392102_9057250&payType=1&uid=3607251&uniqueCode=430&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:a6be72dee3cf061274e05a9a1f4f0ef1
  751. 08:59:39.630 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"430","money":"35000","payType":"1","orderId":"PD202309270859392102_9057250","signature":"a6be72dee3cf061274e05a9a1f4f0ef1"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=rt3zpPUCRL8tuH%2F5hZXC5K950GegWD1QCELRQobC87us37f9GckRQvt1JGyxtL%2B1UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  752. 08:59:39.630 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309270859392102_9057250,请求url:https://syt.pwmch.com/created/?data=rt3zpPUCRL8tuH%2F5hZXC5K950GegWD1QCELRQobC87us37f9GckRQvt1JGyxtL%2B1UrI9BGNKcO6AM1EaNebJTw%3D%3D
  753. 08:59:39.630 [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=?
  754. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  755. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 08:59:39 AST 2023]
  756. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  757. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  758. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  759. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  760. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  761. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  762. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  763. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  764. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  765. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  766. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  767. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  768. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  769. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  770. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  771. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  772. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  773. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  774. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  775. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  776. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  777. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  778. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  779. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  780. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  781. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 18:59:39 AST 2023]
  782. 08:59:39.631 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=rt3zpPUCRL8tuH%2F5hZXC5K950GegWD1QCELRQobC87us37f9GckRQvt1JGyxtL%2B1UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  783. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  784. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  785. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  786. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  787. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  788. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  789. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  790. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  791. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  792. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  793. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  794. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  795. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  796. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  797. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  798. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  799. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  800. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  801. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  802. <p>&nbsp;</p>]
  803. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  804. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  805. "uid":"3607251",
  806. "payType":"1",
  807. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  808. "baseUrl":"https://api.maxpay666.com",
  809. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  810. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  811. }]
  812. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  813. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270859392102]
  814. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  815. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  816. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  817. 08:59:39.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1011]
  818. 09:00:38.593 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  819. 09:05:38.601 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  820. 09:05:49.711 [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=?
  821. 09:05:49.712 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  822. 09:10:38.610 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  823. 09:15:38.618 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  824. 09:20:38.626 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  825. 09:21:15.408 [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
  826. 09:21:15.409 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  827. 09:21:15.411 [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 (? , ?)
  828. 09:21:15.411 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  829. 09:21:15.411 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  830. 09:21:15.411 [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=?
  831. 09:21:15.412 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  832. 09:21:15.412 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  833. 09:21:15.412 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  834. 09:21:20.776 [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
  835. 09:21:20.777 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  836. 09:21:20.778 [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 (? , ?)
  837. 09:21:20.779 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  838. 09:21:20.779 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  839. 09:21:20.779 [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=?
  840. 09:21:20.780 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  841. 09:21:20.780 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  842. 09:21:20.780 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  843. 09:21:28.229 [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=? and sysremitta0_.valid=? limit ?
  844. 09:21:28.230 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  845. 09:21:28.230 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  846. 09:21:28.232 [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 (? , ?)
  847. 09:21:28.232 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  848. 09:21:28.232 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  849. 09:21:28.235 [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 ?
  850. 09:21:28.236 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  851. 09:21:28.238 [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 ?
  852. 09:21:28.238 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  853. 09:21:28.238 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057250]
  854. 09:21:28.239 [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=?
  855. 09:21:28.239 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  856. 09:21:28.239 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  857. 09:21:28.239 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  858. 09:21:28.240 [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=?
  859. 09:21:28.240 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  860. 09:21:28.240 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  861. 09:21:28.240 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  862. 09:21:28.240 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  863. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  864. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 09:21:28 AST 2023]
  865. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  866. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  867. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  868. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  869. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  870. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  871. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  872. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  873. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  874. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  875. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  876. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  877. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  878. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  879. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  880. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  881. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  882. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  883. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  884. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  885. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  886. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  887. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  888. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  889. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  890. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 19:21:28 AST 2023]
  891. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  892. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  893. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  894. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  895. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  896. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  897. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  898. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  899. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  900. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  901. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  902. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  903. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  904. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  905. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  906. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  907. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  908. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  909. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  910. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  911. <p>&nbsp;</p>]
  912. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  913. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  914. "uid":"3607251",
  915. "payType":"1",
  916. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  917. "baseUrl":"https://api.maxpay666.com",
  918. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  919. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  920. }]
  921. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  922. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270921280602]
  923. 09:21:28.241 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  924. 09:21:28.242 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  925. 09:21:28.242 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  926. 09:21:28.243 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:money=35000&orderId=PD202309270921280602_9057250&payType=1&uid=3607251&uniqueCode=430&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:772f0ba7739ca39292e5aeeec7bcdee1
  927. 09:21:28.347 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"430","money":"35000","payType":"1","orderId":"PD202309270921280602_9057250","signature":"772f0ba7739ca39292e5aeeec7bcdee1"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=%2FE%2FW%2BUOJMVggBb8qYLnyO155%2Bnomu8MS3jHuKKbk6nbMGcHSDwJ2kGLiSuhRCJ9bUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  928. 09:21:28.347 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309270921280602_9057250,请求url:https://syt.pwmch.com/created/?data=%2FE%2FW%2BUOJMVggBb8qYLnyO155%2Bnomu8MS3jHuKKbk6nbMGcHSDwJ2kGLiSuhRCJ9bUrI9BGNKcO6AM1EaNebJTw%3D%3D
  929. 09:21:28.347 [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=?
  930. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  931. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 09:21:28 AST 2023]
  932. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  933. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  934. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  935. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  936. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  937. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  938. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  939. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  940. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  941. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  942. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  943. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000]
  944. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  945. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  946. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  947. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  948. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  949. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  950. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000.0000000000]
  951. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  952. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  953. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000]
  954. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  955. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  956. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  957. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Wed Sep 27 19:21:28 AST 2023]
  958. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=%2FE%2FW%2BUOJMVggBb8qYLnyO155%2Bnomu8MS3jHuKKbk6nbMGcHSDwJ2kGLiSuhRCJ9bUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  959. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  960. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  961. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  962. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  963. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  964. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  965. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  966. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  967. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  968. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  969. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  970. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  971. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  972. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  973. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  974. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  975. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  976. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  977. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  978. <p>&nbsp;</p>]
  979. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  980. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  981. "uid":"3607251",
  982. "payType":"1",
  983. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  984. "baseUrl":"https://api.maxpay666.com",
  985. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  986. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  987. }]
  988. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  989. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270921280602]
  990. 09:21:28.348 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000.0000000000]
  991. 09:21:28.349 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  992. 09:21:28.349 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  993. 09:21:28.349 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1012]
  994. 09:24:57.491 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - callback orderNo:PD202309270921280602_9057250,callback data:{"apiOrderNo":"PD202309270921280602_9057250","money":"35000","signature":"aafe68f60d7a94adbda7ddff110509a5","tradeId":"585588589579542528","tradeStatus":"1","uniqueCode":"430"}
  995. 09:24:57.491 [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=? and sysremitta0_.valid=? limit ?
  996. 09:24:57.492 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  997. 09:24:57.492 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  998. 09:24:57.494 [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 (? , ?)
  999. 09:24:57.494 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1000. 09:24:57.494 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1001. 09:24:57.495 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 回调结果加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:apiOrderNo=PD202309270921280602_9057250&money=35000&tradeId=585588589579542528&tradeStatus=1&uniqueCode=430&key=pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g,加密结果sign:aafe68f60d7a94adbda7ddff110509a5
  1002. 09:24:57.495 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - order no:PD202309270921280602_9057250,callback result sign compare--callback sign:aafe68f60d7a94adbda7ddff110509a5, encryption sign result:aafe68f60d7a94adbda7ddff110509a5
  1003. 09:24:57.495 [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
  1004. 09:24:57.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202309270921280602]
  1005. 09:24:57.629 [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=?
  1006. 09:24:57.629 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_EMAIL_NOTICE]
  1007. 09:24:57.631 [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 ?
  1008. 09:24:57.632 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [430]
  1009. 09:24:57.634 [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 ?
  1010. 09:24:57.635 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [20118]
  1011. 09:24:57.636 [http-nio-8004-exec-10] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"16.163.81.111","addTime":1695795897636,"addUser":null,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_DEPOSIT_NOTICE","imageFilesMap":null,"map":{"V_SERIAL_V":"PD202309270921280602","V_DATE_TIME_V":"2023-09-27 09:24:57","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"0126","V_APPLY_TIME_V":"2023-09-27 09:21:28","V_CHANNEL_NAME_V":"银联","V_CHANNEL_SERIAL_V":"585588589579542528","V_DEPOSIT_TRANSFORM_CURRENCY_V":"CNY","V_SUCCESS_TIME_V":"2023-09-27 09:24:57","V_LOGIN_V":"9057250","V_TRANSFORM_AMOUNT_V":"35000.00","V_CURRENCY_TYPE_V":"USD","V_DEPOSIT_AMOUNT_V":"5000.00"},"note":null,"sendDate":null,"subject":"CWG DEPOSIT","templateName":"FINANCE_DEPOSIT_NOTICE_NAME","users":"mic_partnership@126.com"}
  1012. 09:24:57.641 [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=?
  1013. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [122.4.122.64]
  1014. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [2023-09-27 09:21:28.0]
  1015. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [430]
  1016. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1017. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [Wed Sep 27 09:24:57 AST 2023]
  1018. 09:24:57.641 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1019. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1020. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1021. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1022. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1023. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1024. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1025. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20118]
  1026. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [5000.0000000000]
  1027. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1028. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1029. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500457]
  1030. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [1]
  1031. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [Wed Sep 27 09:24:57 AST 2023]
  1032. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [585588589579542528]
  1033. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [35000]
  1034. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1035. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [430]
  1036. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [5000.0000000000]
  1037. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1038. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1039. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1040. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [2023-09-27 19:21:28.0]
  1041. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=%2FE%2FW%2BUOJMVggBb8qYLnyO155%2Bnomu8MS3jHuKKbk6nbMGcHSDwJ2kGLiSuhRCJ9bUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  1042. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057250]
  1043. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1044. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [辛研 王]
  1045. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1046. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1047. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1048. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1049. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1050. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1051. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1052. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1053. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1054. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1055. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1056. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1057. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1058. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1059. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1060. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1061. <p>&nbsp;</p>]
  1062. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1063. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1064. "uid":"3607251",
  1065. "payType":"1",
  1066. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1067. "baseUrl":"https://api.maxpay666.com",
  1068. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1069. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1070. }]
  1071. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1072. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309270921280602]
  1073. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [35000]
  1074. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1075. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1076. 09:24:57.642 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1012]
  1077. 09:24:57.646 [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=?
  1078. 09:24:57.646 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1079. 09:24:57.708 [http-nio-8004-exec-7] INFO c.c.p.s.impl.BifutongPayServiceImpl - callback orderNo:PD202309270921280602_9057250,callback data:{"apiOrderNo":"PD202309270921280602_9057250","money":"35000","signature":"aafe68f60d7a94adbda7ddff110509a5","tradeId":"585588589579542528","tradeStatus":"1","uniqueCode":"430"}
  1080. 09:24:57.708 [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=? and sysremitta0_.valid=? limit ?
  1081. 09:24:57.709 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1082. 09:24:57.709 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1083. 09:24:57.711 [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 (? , ?)
  1084. 09:24:57.712 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1085. 09:24:57.712 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1086. 09:24:57.712 [http-nio-8004-exec-7] INFO c.c.p.s.impl.BifutongPayServiceImpl - 回调结果加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:apiOrderNo=PD202309270921280602_9057250&money=35000&tradeId=585588589579542528&tradeStatus=1&uniqueCode=430&key=pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g,加密结果sign:aafe68f60d7a94adbda7ddff110509a5
  1087. 09:24:57.712 [http-nio-8004-exec-7] INFO c.c.p.s.impl.BifutongPayServiceImpl - order no:PD202309270921280602_9057250,callback result sign compare--callback sign:aafe68f60d7a94adbda7ddff110509a5, encryption sign result:aafe68f60d7a94adbda7ddff110509a5
  1088. 09:24:57.712 [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
  1089. 09:24:57.714 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202309270921280602]
  1090. 09:24:57.859 [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=?
  1091. 09:24:57.860 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1092. 09:24:57.923 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - callback orderNo:PD202309270921280602_9057250,callback data:{"apiOrderNo":"PD202309270921280602_9057250","money":"35000","signature":"aafe68f60d7a94adbda7ddff110509a5","tradeId":"585588589579542528","tradeStatus":"1","uniqueCode":"430"}
  1093. 09:24:57.923 [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=? and sysremitta0_.valid=? limit ?
  1094. 09:24:57.924 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1095. 09:24:57.924 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1096. 09:24:57.926 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1097. 09:24:57.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1098. 09:24:57.926 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1099. 09:24:57.927 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - 回调结果加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:apiOrderNo=PD202309270921280602_9057250&money=35000&tradeId=585588589579542528&tradeStatus=1&uniqueCode=430&key=pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g,加密结果sign:aafe68f60d7a94adbda7ddff110509a5
  1100. 09:24:57.927 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - order no:PD202309270921280602_9057250,callback result sign compare--callback sign:aafe68f60d7a94adbda7ddff110509a5, encryption sign result:aafe68f60d7a94adbda7ddff110509a5
  1101. 09:24:57.927 [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
  1102. 09:24:57.929 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202309270921280602]
  1103. 09:24:58.038 [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=?
  1104. 09:24:58.039 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1105. 09:24:58.103 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - callback orderNo:PD202309270921280602_9057250,callback data:{"apiOrderNo":"PD202309270921280602_9057250","money":"35000","signature":"aafe68f60d7a94adbda7ddff110509a5","tradeId":"585588589579542528","tradeStatus":"1","uniqueCode":"430"}
  1106. 09:24:58.103 [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=? and sysremitta0_.valid=? limit ?
  1107. 09:24:58.104 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1108. 09:24:58.104 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1109. 09:24:58.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 (? , ?)
  1110. 09:24:58.107 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1111. 09:24:58.107 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1112. 09:24:58.107 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - 回调结果加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:apiOrderNo=PD202309270921280602_9057250&money=35000&tradeId=585588589579542528&tradeStatus=1&uniqueCode=430&key=pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g,加密结果sign:aafe68f60d7a94adbda7ddff110509a5
  1113. 09:24:58.107 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - order no:PD202309270921280602_9057250,callback result sign compare--callback sign:aafe68f60d7a94adbda7ddff110509a5, encryption sign result:aafe68f60d7a94adbda7ddff110509a5
  1114. 09:24:58.107 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select financedep0_.id as id1_48_, financedep0_.add_ip as add_ip2_48_, financedep0_.add_time as add_time3_48_, financedep0_.add_user as add_user4_48_, financedep0_.modify_ip as modify_i5_48_, financedep0_.modify_time as modify_t6_48_, financedep0_.modify_user as modify_u7_48_, financedep0_.note as note8_48_, financedep0_.approve_desc as approve_9_48_, financedep0_.approve_time as approve10_48_, financedep0_.approve_user as approve11_48_, financedep0_.status as status12_48_, financedep0_.activity_deposit as activit13_48_, financedep0_.agent_id as agent_i14_48_, financedep0_.amount as amount15_48_, financedep0_.bank_code as bank_co16_48_, financedep0_.bank_msg as bank_ms17_48_, financedep0_.c_id as c_id18_48_, financedep0_.callback_status as callbac19_48_, financedep0_.callback_time as callbac20_48_, financedep0_.channel_serial as channel21_48_, financedep0_.cny as cny22_48_, financedep0_.currency as currenc23_48_, financedep0_.custom_id as custom_24_48_, financedep0_.deposit_amount as deposit25_48_, financedep0_.deposit_currency as deposit26_48_, financedep0_.deposit_status as deposit27_48_, financedep0_.deposit_ticket as deposit28_48_, financedep0_.expire_time as expire_29_48_, financedep0_.form_url as form_ur30_48_, financedep0_.login as login31_48_, financedep0_.login_type as login_t32_48_, financedep0_.name as name33_48_, financedep0_.operation_type as operati34_48_, financedep0_.pay_type as pay_typ35_48_, financedep0_.platform as platfor36_48_, financedep0_.promo_code as promo_c37_48_, financedep0_.rate as rate38_48_, financedep0_.remittance_channel_code as remitta39_48_, financedep0_.remittance_channel_currency as remitta40_48_, financedep0_.remittance_channel_en_icon as remitta41_48_, financedep0_.remittance_channel_en_introduce as remitta42_48_, financedep0_.remittance_channel_en_name as remitta43_48_, financedep0_.remittance_channel_icon as remitta44_48_, financedep0_.remittance_channel_introduce as remitta45_48_, financedep0_.remittance_channel_name as remitta46_48_, financedep0_.remittance_channel_property as remitta47_48_, financedep0_.remittance_channel_request_url as remitta48_48_, financedep0_.serial as serial49_48_, financedep0_.transform_amount as transfo50_48_, financedep0_.transform_currency as transfo51_48_, financedep0_.voucher_url as voucher52_48_ from finance_deposit financedep0_ where financedep0_.serial=? limit ? for update
  1115. 09:24:58.109 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202309270921280602]
  1116. 09:24:58.244 [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=?
  1117. 09:24:58.244 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1118. 09:24:58.315 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - callback orderNo:PD202309270921280602_9057250,callback data:{"apiOrderNo":"PD202309270921280602_9057250","money":"35000","signature":"aafe68f60d7a94adbda7ddff110509a5","tradeId":"585588589579542528","tradeStatus":"1","uniqueCode":"430"}
  1119. 09:24:58.315 [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=? and sysremitta0_.valid=? limit ?
  1120. 09:24:58.316 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1121. 09:24:58.316 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1122. 09:24:58.318 [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 (? , ?)
  1123. 09:24:58.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1124. 09:24:58.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1125. 09:24:58.319 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 回调结果加密处理--请求orderNo:PD202309270921280602_9057250,加密字符串为:apiOrderNo=PD202309270921280602_9057250&money=35000&tradeId=585588589579542528&tradeStatus=1&uniqueCode=430&key=pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g,加密结果sign:aafe68f60d7a94adbda7ddff110509a5
  1126. 09:24:58.319 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - order no:PD202309270921280602_9057250,callback result sign compare--callback sign:aafe68f60d7a94adbda7ddff110509a5, encryption sign result:aafe68f60d7a94adbda7ddff110509a5
  1127. 09:24:58.319 [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
  1128. 09:24:58.321 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [PD202309270921280602]
  1129. 09:24:58.455 [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=?
  1130. 09:24:58.455 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1131. 09:25:00.024 [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=?
  1132. 09:25:00.025 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1133. 09:25:38.635 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1134. 09:30:38.643 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1135. 09:35:38.651 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1136. 09:40:03.241 [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 (? , ?)
  1137. 09:40:03.242 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1138. 09:40:03.242 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1139. 09:40:06.079 [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 (? , ?)
  1140. 09:40:06.080 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1141. 09:40:06.080 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1142. 09:40:38.658 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1143. 09:41:05.045 [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. 09:41:05.045 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_TRANSFER_MAX]
  1145. 09:41:05.045 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_TRANSFER_MIN]
  1146. 09:41:41.517 [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
  1147. 09:41:41.517 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1148. 09:41:41.519 [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 (? , ?)
  1149. 09:41:41.520 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1150. 09:41:41.520 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1151. 09:41:41.520 [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=?
  1152. 09:41:41.520 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1153. 09:41:41.520 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1154. 09:41:41.520 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1155. 09:41:51.313 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1156. 09:41:51.314 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1157. 09:41:51.315 [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 (? , ?)
  1158. 09:41:51.316 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1159. 09:41:51.316 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1160. 09:41:51.316 [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=?
  1161. 09:41:51.316 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1162. 09:41:51.316 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1163. 09:41:51.316 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1164. 09:41:51.317 [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=?
  1165. 09:41:51.318 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1166. 09:41:51.318 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1167. 09:41:51.318 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1168. 09:44:09.850 [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
  1169. 09:44:09.851 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1170. 09:44:09.853 [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 (? , ?)
  1171. 09:44:09.853 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1172. 09:44:09.853 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1173. 09:44:09.854 [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=?
  1174. 09:44:09.854 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1175. 09:44:09.854 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1176. 09:44:09.854 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1177. 09:44:09.855 [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=?
  1178. 09:44:09.856 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1179. 09:44:09.856 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1180. 09:44:09.856 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1181. 09:45:38.667 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1182. 09:50:38.675 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1183. 09:55:38.683 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1184. 10:00:38.691 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1185. 10:05:38.700 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1186. 10:10:38.708 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1187. 10:15:38.717 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1188. 10:20:38.724 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1189. 10:25:38.732 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1190. 10:30:38.740 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1191. 10:35:38.749 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1192. 10:40:38.757 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1193. 10:45:38.766 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1194. 10:50:38.774 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1195. 10:55:38.782 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1196. 11:00:38.790 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1197. 11:05:38.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1198. 11:10:38.806 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1199. 11:15:38.815 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1200. 11:20:38.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1201. 11:25:38.831 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1202. 11:30:38.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1203. 11:35:38.848 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1204. 11:40:38.856 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1205. 11:45:38.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1206. 11:50:38.872 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1207. 11:55:38.881 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1208. 12:00:38.889 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1209. 12:05:38.896 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1210. 12:10:38.904 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1211. 12:15:38.913 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1212. 12:20:38.922 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1213. 12:25:38.930 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1214. 12:30:38.938 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1215. 12:35:38.946 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1216. 12:38:17.895 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1217. 12:38:17.899 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1218. 12:38:17.901 [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 (? , ?)
  1219. 12:38:17.901 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1220. 12:38:17.901 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1221. 12:38:17.903 [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=?
  1222. 12:38:17.903 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1223. 12:38:17.903 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1224. 12:38:17.903 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1225. 12:38:17.904 [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=?
  1226. 12:38:17.905 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1227. 12:38:17.905 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1228. 12:38:17.905 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1229. 12:38:17.907 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1230. 12:38:17.910 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1231. 12:38:17.911 [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 (? , ?)
  1232. 12:38:17.911 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1233. 12:38:17.911 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1234. 12:38:17.911 [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=?
  1235. 12:38:17.912 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1236. 12:38:17.912 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1237. 12:38:17.912 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1238. 12:38:17.912 [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=?
  1239. 12:38:17.913 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1240. 12:38:17.913 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1241. 12:38:17.913 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1242. 12:38:26.646 [http-nio-8004-exec-6] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1243. 12:38:26.647 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1244. 12:38:26.648 [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 (? , ?)
  1245. 12:38:26.649 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1246. 12:38:26.649 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1247. 12:38:26.649 [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=?
  1248. 12:38:26.650 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1249. 12:38:26.650 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1250. 12:38:26.650 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1251. 12:38:26.651 [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=?
  1252. 12:38:26.651 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1253. 12:38:26.651 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1254. 12:38:26.651 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1255. 12:38:38.959 [http-nio-8004-exec-7] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1256. 12:38:38.959 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1257. 12:38:38.961 [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 (? , ?)
  1258. 12:38:38.961 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1259. 12:38:38.961 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1260. 12:38:38.962 [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=?
  1261. 12:38:38.962 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1262. 12:38:38.962 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1263. 12:38:38.962 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1264. 12:38:38.963 [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=?
  1265. 12:38:38.964 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1266. 12:38:38.964 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1267. 12:38:38.964 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1268. 12:38:39.228 [http-nio-8004-exec-3] DEBUG org.hibernate.SQL - select sysremitch0_.id as id1_86_, sysremitch0_.add_ip as add_ip2_86_, sysremitch0_.add_time as add_time3_86_, sysremitch0_.add_user as add_user4_86_, sysremitch0_.modify_ip as modify_i5_86_, sysremitch0_.modify_time as modify_t6_86_, sysremitch0_.modify_user as modify_u7_86_, sysremitch0_.note as note8_86_, sysremitch0_.bank_valid as bank_val9_86_, sysremitch0_.code as code10_86_, sysremitch0_.currency as currenc11_86_, sysremitch0_.en_icon as en_icon12_86_, sysremitch0_.en_introduce as en_intr13_86_, sysremitch0_.en_name as en_name14_86_, sysremitch0_.free as free15_86_, sysremitch0_.funding_time as funding16_86_, sysremitch0_.icon as icon17_86_, sysremitch0_.introduce as introdu18_86_, sysremitch0_.max_amount as max_amo19_86_, sysremitch0_.min_amount as min_amo20_86_, sysremitch0_.name as name21_86_, sysremitch0_.request_url as request22_86_, sysremitch0_.sub_index as sub_ind23_86_, sysremitch0_.transform_currency as transfo24_86_, sysremitch0_.type as type25_86_, sysremitch0_.valid as valid26_86_ from sys_remit_channel sysremitch0_ where sysremitch0_.valid=? order by sysremitch0_.sub_index asc
  1269. 12:38:39.229 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1270. 12:38:39.229 [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 (? , ?)
  1271. 12:38:39.230 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1272. 12:38:39.230 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1273. 12:38:39.230 [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=?
  1274. 12:38:39.230 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1275. 12:38:39.230 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1276. 12:38:39.231 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1277. 12:38:39.231 [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=?
  1278. 12:38:39.231 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1279. 12:38:39.231 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1280. 12:38:39.231 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1281. 12:40:01.416 [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_.code=? and sysremitch0_.valid=? limit ?
  1282. 12:40:01.417 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [UNION_PAY_REMIT]
  1283. 12:40:01.417 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1284. 12:40:01.418 [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 (? , ?)
  1285. 12:40:01.419 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1286. 12:40:01.419 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1287. 12:40:01.420 [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 ?
  1288. 12:40:01.421 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [304]
  1289. 12:40:01.423 [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 ?
  1290. 12:40:01.424 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [304]
  1291. 12:40:01.424 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057365]
  1292. 12:40:01.424 [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=?
  1293. 12:40:01.425 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1294. 12:40:01.425 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1295. 12:40:01.425 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1296. 12:40:01.426 [http-nio-8004-exec-1] 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1297. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [39.144.82.15]
  1298. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 12:40:01 AST 2023]
  1299. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [304]
  1300. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1301. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1302. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1303. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1304. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1305. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1306. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1307. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1308. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [VARCHAR] - [null]
  1309. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1310. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [1000]
  1311. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [null]
  1312. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1313. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [VARCHAR] - [南乐支行]
  1314. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [VARCHAR] - [6217002530007838327]
  1315. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [VARCHAR] - [UNION_PAY_REMIT]
  1316. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [/file/304/bank/8a3e72eb55cb4811a6a32ab73e17ad43.jpeg]
  1317. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [VARCHAR] - [中国建设银行-CBC]
  1318. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [栋 潘]
  1319. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [500319]
  1320. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [INTEGER] - [0]
  1321. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [null]
  1322. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [VARCHAR] - [USD]
  1323. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1324. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [BIGINT] - [304]
  1325. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [BIGINT] - [9057365]
  1326. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [1]
  1327. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [VARCHAR] - [null]
  1328. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [栋 潘]
  1329. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1330. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [UNION_PAY_REMIT]
  1331. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1332. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [NUMERIC] - [6.8000000000]
  1333. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [VARCHAR] - [UNION_PAY_REMIT]
  1334. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [USD]
  1335. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [/icon/UnionPay.png]
  1336. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - [<p style="line-height: 2;"><strong>Notes for withdrawal:</strong></p>
  1337. <p style="line-height: 2;"><span style="font-size: 10pt;">1. Please note that third party payments will not be processed.</span></p>
  1338. <p style="line-height: 2;"><span style="font-size: 10pt;">2. The minimum withdrawal amount is 50USD.</span></p>
  1339. <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>
  1340. <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>
  1341. <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>
  1342. <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>
  1343. <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>
  1344. <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>
  1345. <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>]
  1346. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - [China UnionPay]
  1347. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [/file//remit/channel/2062b08967e14373b9dd9fa7aa1dba10.png]
  1348. 12:40:01.427 [http-nio-8004-exec-1] 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>
  1349. <p style="line-height: 2;"><span style="font-size: 10pt;">1. 请注意,资金只能返回到交易帐户持有人的银行帐户。</span></p>
  1350. <p style="line-height: 2;"><span style="font-size: 10pt;">2. 最低取款金额是50USD。</span></p>
  1351. <p style="line-height: 2;"><span style="font-size: 10pt;">3. 汇率根据中国银行的CNY 对 USD的汇率。</span></p>
  1352. <p style="line-height: 2;"><span style="font-size: 10pt;">4. 请保持您的防病毒软件为最新版本,在使用任何支付系统之前请检查您的计算机是否有病毒。</span></p>
  1353. <p style="line-height: 2;"><span style="font-size: 10pt;">5. 使用该服务,用户同意并理解在线支付系统可能出现故障,延误和/或中断。</span></p>
  1354. <p style="line-height: 2;"><span style="font-size: 10pt;">6. 使用该服务的用户接受,在任何情况下MIC都不对于任何延迟,故障和/或支付系统的中断及/或延迟,故障和/或中断的结果承担责任。</span></p>
  1355. <p style="line-height: 2;"><span style="font-size: 10pt;">7. BRC有权要求额外的文件和/或拒绝取款,以保护客户的资产和付款可能出现的问题。</span></p>
  1356. <p style="line-height: 2;"><span style="font-size: 13.3333px;">8. 出金手续费:每个账户当月首次出金免手续费,第二次及以上出金将收取每次5<span style="font-size: 13.3333px;">USD</span>。</span></p>
  1357. <p style="line-height: 2;"><span style="font-size: 13.3333px;">9<span style="font-size: 13.3333px;">. </span>出金受理时效为1-3个工作日。</span></p>]
  1358. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [中国银联]
  1359. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [/withdraw/apply/bank]
  1360. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [BANK]
  1361. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [PW202309271240011884]
  1362. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [null]
  1363. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [6800.0000000000]
  1364. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1365. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [NUMERIC] - [1000]
  1366. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [VARCHAR] - [USD]
  1367. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [53] as [INTEGER] - [0]
  1368. 12:40:01.427 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [54] as [VARCHAR] - [null]
  1369. 12:40:01.431 [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=?
  1370. 12:40:01.431 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_EMAIL_NOTICE]
  1371. 12:40:01.431 [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 ?
  1372. 12:40:01.433 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [304]
  1373. 12:40:01.433 [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 is null limit ?
  1374. 12:40:01.436 [http-nio-8004-exec-1] INFO c.c.r.b.s.impl.MqSendServiceImpl - 发送MQ延时消息:getQueueName=EMAIL.NEW,msg={"addIp":"39.144.82.15","addTime":1695807601436,"addUser":304,"attachContentsList":null,"callbackMq":null,"content":null,"emailConfigId":null,"emailSendEnum":"FINANCE_WITHDRAW_NOTICE","imageFilesMap":null,"map":{"V_BANK_UNAME_V":"栋 潘","V_SERIAL_V":"PW202309271240011884","V_DATE_TIME_V":"2023-09-27 12:40:01","V_PLATFORM_V":"MT4","V_P_IB_NO_V":"--","V_APPLY_TIME_V":"2023-09-27 12:40:01","V_BANK_CARD_NUM_V":"6217002530007838327","V_LOGIN_V":"9057365","V_TRANSFORM_AMOUNT_V":"6800.00","V_BANK_BRANCH_NAME_V":"南乐支行","V_WITHDRAW_AMOUNT_V":"1000.00","V_CURRENCY_TYPE_V":"USD","V_BANK_NAME_V":"中国建设银行-CBC"},"note":null,"sendDate":null,"subject":"CWG WITHDRAW","templateName":"FINANCE_WITHDRAW_BANK_NOTICE_NAME","users":"mic_partnership@126.com"}
  1375. 12:40:13.768 [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
  1376. 12:40:13.769 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1377. 12:40:13.771 [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 (? , ?)
  1378. 12:40:13.772 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_WITHDRAW_MAX]
  1379. 12:40:13.772 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_WITHDRAW_MIN]
  1380. 12:40:13.772 [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=?
  1381. 12:40:13.772 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1382. 12:40:13.773 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1383. 12:40:13.773 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1384. 12:40:13.774 [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=?
  1385. 12:40:13.774 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1386. 12:40:13.774 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1387. 12:40:13.774 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1388. 12:40:38.953 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1389. 12:45:38.962 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1390. 12:50:38.970 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1391. 12:55:38.979 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1392. 13:00:38.988 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1393. 13:05:38.996 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1394. 13:10:39.004 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1395. 13:15:39.012 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1396. 13:20:39.020 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1397. 13:25:39.029 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1398. 13:30:39.037 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1399. 13:35:39.045 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1400. 13:40:39.053 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1401. 13:45:39.062 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1402. 13:48:46.840 [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=?
  1403. 13:48:46.844 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [WEB_MY_URE_CONFIG]
  1404. 13:50:39.070 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1405. 13:55:39.077 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1406. 14:00:39.085 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1407. 14:05:39.093 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1408. 14:10:39.102 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1409. 14:15:39.110 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1410. 14:20:39.119 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1411. 14:25:39.127 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1412. 14:30:39.135 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1413. 14:35:39.144 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1414. 14:40:39.152 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1415. 14:45:39.160 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1416. 14:48:22.993 [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
  1417. 14:48:22.996 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1418. 14:48:22.998 [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 (? , ?)
  1419. 14:48:22.998 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1420. 14:48:22.998 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1421. 14:48:22.999 [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=?
  1422. 14:48:22.999 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1423. 14:48:22.999 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1424. 14:48:22.999 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1425. 14:48:23.004 [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
  1426. 14:48:23.008 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1427. 14:48:23.009 [http-nio-8004-exec-10] DEBUG org.hibernate.SQL - select sysconfigt0_.id as id1_74_, sysconfigt0_.add_ip as add_ip2_74_, sysconfigt0_.add_time as add_time3_74_, sysconfigt0_.add_user as add_user4_74_, sysconfigt0_.modify_ip as modify_i5_74_, sysconfigt0_.modify_time as modify_t6_74_, sysconfigt0_.modify_user as modify_u7_74_, sysconfigt0_.note as note8_74_, sysconfigt0_.code as code9_74_, sysconfigt0_.value as value10_74_ from sys_config sysconfigt0_ where sysconfigt0_.code in (? , ?)
  1428. 14:48:23.009 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1429. 14:48:23.009 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1430. 14:48:23.009 [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=?
  1431. 14:48:23.010 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1432. 14:48:23.010 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1433. 14:48:23.010 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1434. 14:48:34.571 [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=? and sysremitta0_.valid=? limit ?
  1435. 14:48:34.572 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1436. 14:48:34.572 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1437. 14:48:34.574 [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 (? , ?)
  1438. 14:48:34.575 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1439. 14:48:34.575 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1440. 14:48:34.577 [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 ?
  1441. 14:48:34.578 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1442. 14:48:34.580 [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 ?
  1443. 14:48:34.581 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1444. 14:48:34.581 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  1445. 14:48:34.581 [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=?
  1446. 14:48:34.581 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1447. 14:48:34.581 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1448. 14:48:34.581 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1449. 14:48:34.583 [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=?
  1450. 14:48:34.583 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1451. 14:48:34.583 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1452. 14:48:34.583 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1453. 14:48:34.583 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1454. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1455. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:48:34 AST 2023]
  1456. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1457. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1458. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1459. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1460. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1461. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1462. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1463. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1464. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1465. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1466. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1467. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1468. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1469. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1470. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1471. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1472. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1473. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1474. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1475. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1476. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1477. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1478. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1479. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1480. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1481. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:48:34 AST 2023]
  1482. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1483. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1484. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1485. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1486. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1487. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1488. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1489. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1490. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1491. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1492. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1493. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1494. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1495. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1496. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1497. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1498. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1499. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1500. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1501. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1502. <p>&nbsp;</p>]
  1503. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1504. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1505. "uid":"3607251",
  1506. "payType":"1",
  1507. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1508. "baseUrl":"https://api.maxpay666.com",
  1509. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1510. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1511. }]
  1512. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1513. 14:48:34.584 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271448346724]
  1514. 14:48:34.585 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1515. 14:48:34.585 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1516. 14:48:34.585 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1517. 14:48:34.586 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271448346724_9057224,加密字符串为:money=49000&orderId=PD202309271448346724_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:68e5e01d4e928241d15cade4a715e1f7
  1518. 14:48:34.691 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271448346724_9057224","signature":"68e5e01d4e928241d15cade4a715e1f7"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=dZIjW6vYS4k4SE25u00lORojLX6g5wlSormpb2SbwX3IA3aiStjild6QBVjeUH00UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  1519. 14:48:34.691 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271448346724_9057224,请求url:https://syt.pwmch.com/created/?data=dZIjW6vYS4k4SE25u00lORojLX6g5wlSormpb2SbwX3IA3aiStjild6QBVjeUH00UrI9BGNKcO6AM1EaNebJTw%3D%3D
  1520. 14:48:34.691 [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=?
  1521. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1522. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:48:34 AST 2023]
  1523. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1524. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1525. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1526. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1527. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1528. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1529. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1530. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1531. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1532. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1533. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1534. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1535. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1536. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1537. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1538. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1539. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1540. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1541. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1542. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1543. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1544. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1545. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1546. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1547. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1548. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:48:34 AST 2023]
  1549. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=dZIjW6vYS4k4SE25u00lORojLX6g5wlSormpb2SbwX3IA3aiStjild6QBVjeUH00UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  1550. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1551. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1552. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1553. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1554. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1555. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1556. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1557. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1558. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1559. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1560. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1561. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1562. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1563. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1564. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1565. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1566. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1567. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1568. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1569. <p>&nbsp;</p>]
  1570. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1571. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1572. "uid":"3607251",
  1573. "payType":"1",
  1574. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1575. "baseUrl":"https://api.maxpay666.com",
  1576. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1577. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1578. }]
  1579. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1580. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271448346724]
  1581. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1582. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1583. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1584. 14:48:34.692 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1013]
  1585. 14:49:00.150 [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
  1586. 14:49:00.151 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1587. 14:49:00.152 [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 (? , ?)
  1588. 14:49:00.153 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1589. 14:49:00.153 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1590. 14:49:00.153 [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=?
  1591. 14:49:00.154 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1592. 14:49:00.154 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1593. 14:49:00.154 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1594. 14:49:05.637 [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
  1595. 14:49:05.637 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1596. 14:49:05.639 [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 (? , ?)
  1597. 14:49:05.639 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1598. 14:49:05.639 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1599. 14:49:05.640 [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=?
  1600. 14:49:05.640 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1601. 14:49:05.640 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1602. 14:49:05.640 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1603. 14:49:14.979 [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=? and sysremitta0_.valid=? limit ?
  1604. 14:49:14.980 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1605. 14:49:14.980 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1606. 14:49:14.982 [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 (? , ?)
  1607. 14:49:14.982 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1608. 14:49:14.982 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1609. 14:49:14.989 [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 ?
  1610. 14:49:14.991 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1611. 14:49:14.992 [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 ?
  1612. 14:49:14.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1613. 14:49:14.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  1614. 14:49:14.994 [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=?
  1615. 14:49:14.994 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1616. 14:49:14.994 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1617. 14:49:14.994 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1618. 14:49:14.995 [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=?
  1619. 14:49:14.995 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1620. 14:49:14.995 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1621. 14:49:14.995 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1622. 14:49:14.996 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1623. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1624. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:49:14 AST 2023]
  1625. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1626. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1627. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1628. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1629. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1630. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1631. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1632. 14:49:14.996 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1633. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1634. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1635. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1636. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1637. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1638. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1639. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1640. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1641. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1642. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1643. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1644. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1645. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1646. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1647. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1648. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1649. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1650. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:49:14 AST 2023]
  1651. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1652. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1653. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1654. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1655. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1656. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1657. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1658. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1659. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1660. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1661. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1662. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1663. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1664. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1665. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1666. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1667. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1668. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1669. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1670. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1671. <p>&nbsp;</p>]
  1672. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1673. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1674. "uid":"3607251",
  1675. "payType":"1",
  1676. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1677. "baseUrl":"https://api.maxpay666.com",
  1678. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1679. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1680. }]
  1681. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1682. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271449146192]
  1683. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1684. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1685. 14:49:14.997 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1686. 14:49:14.998 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271449146192_9057224,加密字符串为:money=49000&orderId=PD202309271449146192_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:8f7486f0fb35e2f34942853d9d6cbee7
  1687. 14:49:15.087 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271449146192_9057224","signature":"8f7486f0fb35e2f34942853d9d6cbee7"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=OysJb75RWdVtiXMha4MCHqlE%2FXW2McRzjC7KlM0I6qN3w1VJi%2FtHFYG6YSOW9oTcUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  1688. 14:49:15.087 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271449146192_9057224,请求url:https://syt.pwmch.com/created/?data=OysJb75RWdVtiXMha4MCHqlE%2FXW2McRzjC7KlM0I6qN3w1VJi%2FtHFYG6YSOW9oTcUrI9BGNKcO6AM1EaNebJTw%3D%3D
  1689. 14:49:15.088 [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=?
  1690. 14:49:15.088 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1691. 14:49:15.088 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:49:14 AST 2023]
  1692. 14:49:15.088 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1693. 14:49:15.088 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1694. 14:49:15.088 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1695. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1696. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1697. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1698. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1699. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1700. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1701. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1702. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1703. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1704. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1705. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1706. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1707. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1708. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1709. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1710. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1711. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1712. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1713. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1714. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1715. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1716. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1717. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:49:14 AST 2023]
  1718. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=OysJb75RWdVtiXMha4MCHqlE%2FXW2McRzjC7KlM0I6qN3w1VJi%2FtHFYG6YSOW9oTcUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  1719. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1720. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1721. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1722. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1723. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1724. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1725. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1726. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1727. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1728. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1729. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1730. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1731. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1732. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1733. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1734. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1735. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1736. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1737. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1738. <p>&nbsp;</p>]
  1739. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1740. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1741. "uid":"3607251",
  1742. "payType":"1",
  1743. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1744. "baseUrl":"https://api.maxpay666.com",
  1745. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1746. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1747. }]
  1748. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1749. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271449146192]
  1750. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1751. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1752. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1753. 14:49:15.089 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1014]
  1754. 14:49:36.237 [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
  1755. 14:49:36.238 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1756. 14:49:36.240 [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 (? , ?)
  1757. 14:49:36.240 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1758. 14:49:36.240 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1759. 14:49:36.240 [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=?
  1760. 14:49:36.241 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1761. 14:49:36.241 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1762. 14:49:36.241 [http-nio-8004-exec-7] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1763. 14:49:43.392 [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
  1764. 14:49:43.393 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1765. 14:49:43.394 [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 (? , ?)
  1766. 14:49:43.395 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1767. 14:49:43.395 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1768. 14:49:43.395 [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=?
  1769. 14:49:43.396 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1770. 14:49:43.396 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1771. 14:49:43.396 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1772. 14:49:52.271 [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=? and sysremitta0_.valid=? limit ?
  1773. 14:49:52.271 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1774. 14:49:52.271 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1775. 14:49:52.273 [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 (? , ?)
  1776. 14:49:52.274 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1777. 14:49:52.274 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1778. 14:49:52.277 [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 ?
  1779. 14:49:52.278 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1780. 14:49:52.280 [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 ?
  1781. 14:49:52.280 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1782. 14:49:52.280 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  1783. 14:49:52.280 [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=?
  1784. 14:49:52.281 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1785. 14:49:52.281 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1786. 14:49:52.281 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1787. 14:49:52.282 [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=?
  1788. 14:49:52.282 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1789. 14:49:52.282 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1790. 14:49:52.282 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1791. 14:49:52.283 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1792. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1793. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:49:52 AST 2023]
  1794. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1795. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1796. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1797. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1798. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1799. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1800. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1801. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1802. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1803. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1804. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1805. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1806. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1807. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1808. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1809. 14:49:52.283 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1810. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1811. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1812. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1813. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1814. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1815. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1816. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1817. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1818. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1819. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:49:52 AST 2023]
  1820. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  1821. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1822. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1823. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1824. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1825. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1826. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1827. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1828. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1829. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1830. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1831. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1832. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1833. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1834. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1835. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1836. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1837. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1838. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1839. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1840. <p>&nbsp;</p>]
  1841. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1842. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1843. "uid":"3607251",
  1844. "payType":"1",
  1845. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1846. "baseUrl":"https://api.maxpay666.com",
  1847. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1848. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1849. }]
  1850. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1851. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271449523696]
  1852. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1853. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1854. 14:49:52.284 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1855. 14:49:52.285 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271449523696_9057224,加密字符串为:money=49000&orderId=PD202309271449523696_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:ad278f675c8e4186855693c9b8bfde7c
  1856. 14:49:52.384 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271449523696_9057224","signature":"ad278f675c8e4186855693c9b8bfde7c"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=MghURYbId4UEdYWD9L4aoF%2FzIl%2BWfAtEFBOeNg6NdHOPhUjnrq67hBnNudC3%2BHfCUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  1857. 14:49:52.384 [http-nio-8004-exec-6] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271449523696_9057224,请求url:https://syt.pwmch.com/created/?data=MghURYbId4UEdYWD9L4aoF%2FzIl%2BWfAtEFBOeNg6NdHOPhUjnrq67hBnNudC3%2BHfCUrI9BGNKcO6AM1EaNebJTw%3D%3D
  1858. 14:49:52.384 [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=?
  1859. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1860. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:49:52 AST 2023]
  1861. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1862. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1863. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1864. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1865. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1866. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1867. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1868. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1869. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1870. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1871. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1872. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1873. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1874. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1875. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1876. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1877. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1878. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1879. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1880. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1881. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1882. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1883. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1884. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1885. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1886. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:49:52 AST 2023]
  1887. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=MghURYbId4UEdYWD9L4aoF%2FzIl%2BWfAtEFBOeNg6NdHOPhUjnrq67hBnNudC3%2BHfCUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  1888. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  1889. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  1890. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  1891. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  1892. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1893. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  1894. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  1895. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  1896. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1897. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  1898. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  1899. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  1900. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  1901. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  1902. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  1903. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  1904. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  1905. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  1906. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  1907. <p>&nbsp;</p>]
  1908. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  1909. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  1910. "uid":"3607251",
  1911. "payType":"1",
  1912. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  1913. "baseUrl":"https://api.maxpay666.com",
  1914. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  1915. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  1916. }]
  1917. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  1918. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271449523696]
  1919. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  1920. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  1921. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  1922. 14:49:52.385 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1015]
  1923. 14:50:12.336 [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
  1924. 14:50:12.337 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1925. 14:50:12.340 [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 (? , ?)
  1926. 14:50:12.340 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1927. 14:50:12.340 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1928. 14:50:12.341 [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=?
  1929. 14:50:12.341 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1930. 14:50:12.341 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1931. 14:50:12.341 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1932. 14:50:39.169 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  1933. 14:52:19.376 [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
  1934. 14:52:19.376 [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
  1935. 14:52:19.377 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1936. 14:52:19.378 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  1937. 14:52:19.379 [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 (? , ?)
  1938. 14:52:19.379 [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 (? , ?)
  1939. 14:52:19.379 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1940. 14:52:19.379 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1941. 14:52:19.380 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1942. 14:52:19.380 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1943. 14:52:19.380 [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=?
  1944. 14:52:19.380 [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=?
  1945. 14:52:19.380 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1946. 14:52:19.380 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1947. 14:52:19.380 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1948. 14:52:19.381 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1949. 14:52:19.381 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1950. 14:52:19.381 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1951. 14:52:28.709 [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=? and sysremitta0_.valid=? limit ?
  1952. 14:52:28.709 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1953. 14:52:28.709 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  1954. 14:52:28.711 [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 (? , ?)
  1955. 14:52:28.712 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  1956. 14:52:28.712 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  1957. 14:52:28.714 [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 ?
  1958. 14:52:28.715 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1959. 14:52:28.717 [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 ?
  1960. 14:52:28.718 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  1961. 14:52:28.718 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  1962. 14:52:28.718 [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=?
  1963. 14:52:28.718 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1964. 14:52:28.718 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1965. 14:52:28.718 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1966. 14:52:28.719 [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=?
  1967. 14:52:28.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  1968. 14:52:28.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  1969. 14:52:28.720 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  1970. 14:52:28.720 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  1971. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  1972. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:52:28 AST 2023]
  1973. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  1974. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  1975. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  1976. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  1977. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  1978. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  1979. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  1980. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  1981. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  1982. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  1983. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  1984. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  1985. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  1986. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  1987. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  1988. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  1989. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  1990. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  1991. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  1992. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  1993. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  1994. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  1995. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  1996. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  1997. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  1998. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:52:28 AST 2023]
  1999. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2000. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2001. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2002. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2003. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2004. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2005. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2006. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2007. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2008. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2009. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2010. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2011. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2012. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2013. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2014. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2015. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2016. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2017. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2018. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2019. <p>&nbsp;</p>]
  2020. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2021. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2022. "uid":"3607251",
  2023. "payType":"1",
  2024. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2025. "baseUrl":"https://api.maxpay666.com",
  2026. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2027. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2028. }]
  2029. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2030. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271452280415]
  2031. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2032. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2033. 14:52:28.721 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2034. 14:52:28.723 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271452280415_9057224,加密字符串为:money=49000&orderId=PD202309271452280415_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:c3a208b0df97838bdd0bae27bc6bef4e
  2035. 14:52:28.823 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271452280415_9057224","signature":"c3a208b0df97838bdd0bae27bc6bef4e"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=xGdWmlIu6vPhnXkzltxWs7W6vjz4fY1vjplHOi9dirvl0RH0CbpJZRBREeB0%2BcjMUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2036. 14:52:28.823 [http-nio-8004-exec-3] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271452280415_9057224,请求url:https://syt.pwmch.com/created/?data=xGdWmlIu6vPhnXkzltxWs7W6vjz4fY1vjplHOi9dirvl0RH0CbpJZRBREeB0%2BcjMUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2037. 14:52:28.823 [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=?
  2038. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2039. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:52:28 AST 2023]
  2040. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2041. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2042. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2043. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2044. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2045. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2046. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2047. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2048. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2049. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2050. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2051. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2052. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2053. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2054. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2055. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2056. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2057. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2058. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2059. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2060. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2061. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2062. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2063. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2064. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2065. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:52:28 AST 2023]
  2066. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=xGdWmlIu6vPhnXkzltxWs7W6vjz4fY1vjplHOi9dirvl0RH0CbpJZRBREeB0%2BcjMUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2067. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2068. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2069. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2070. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2071. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2072. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2073. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2074. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2075. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2076. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2077. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2078. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2079. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2080. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2081. 14:52:28.824 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2082. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2083. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2084. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2085. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2086. <p>&nbsp;</p>]
  2087. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2088. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2089. "uid":"3607251",
  2090. "payType":"1",
  2091. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2092. "baseUrl":"https://api.maxpay666.com",
  2093. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2094. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2095. }]
  2096. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2097. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271452280415]
  2098. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2099. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2100. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2101. 14:52:28.825 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1016]
  2102. 14:54:49.510 [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
  2103. 14:54:49.511 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2104. 14:54:49.513 [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. 14:54:49.513 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2106. 14:54:49.513 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2107. 14:54:49.515 [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=?
  2108. 14:54:49.515 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2109. 14:54:49.515 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2110. 14:54:49.515 [http-nio-8004-exec-6] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2111. 14:54:53.653 [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
  2112. 14:54:53.654 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2113. 14:54:53.655 [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 (? , ?)
  2114. 14:54:53.655 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2115. 14:54:53.655 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2116. 14:54:53.655 [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=?
  2117. 14:54:53.656 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2118. 14:54:53.656 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2119. 14:54:53.656 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2120. 14:55:02.886 [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=? and sysremitta0_.valid=? limit ?
  2121. 14:55:02.887 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2122. 14:55:02.887 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2123. 14:55:02.889 [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 (? , ?)
  2124. 14:55:02.889 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2125. 14:55:02.889 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2126. 14:55:02.891 [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 ?
  2127. 14:55:02.892 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2128. 14:55:02.894 [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 ?
  2129. 14:55:02.895 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2130. 14:55:02.895 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  2131. 14:55:02.895 [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=?
  2132. 14:55:02.896 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2133. 14:55:02.896 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2134. 14:55:02.896 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2135. 14:55:02.897 [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=?
  2136. 14:55:02.897 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2137. 14:55:02.897 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2138. 14:55:02.897 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2139. 14:55:02.898 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2140. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2141. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:55:02 AST 2023]
  2142. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2143. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2144. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2145. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2146. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2147. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2148. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2149. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2150. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2151. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2152. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2153. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2154. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2155. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2156. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2157. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2158. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2159. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2160. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2161. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2162. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2163. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2164. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2165. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2166. 14:55:02.898 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2167. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:55:02 AST 2023]
  2168. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2169. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2170. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2171. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2172. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2173. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2174. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2175. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2176. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2177. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2178. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2179. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2180. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2181. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2182. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2183. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2184. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2185. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2186. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2187. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2188. <p>&nbsp;</p>]
  2189. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2190. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2191. "uid":"3607251",
  2192. "payType":"1",
  2193. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2194. "baseUrl":"https://api.maxpay666.com",
  2195. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2196. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2197. }]
  2198. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2199. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271455022154]
  2200. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2201. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2202. 14:55:02.899 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2203. 14:55:02.901 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271455022154_9057224,加密字符串为:money=49000&orderId=PD202309271455022154_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:d92799babb8b777eb6d07c853556124d
  2204. 14:55:02.992 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271455022154_9057224","signature":"d92799babb8b777eb6d07c853556124d"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=DETb1PuJX7PzDB5rb0JQD9wbFLh%2FV6iE3vjMxZx05GOUm9V4Tb6iRbU2NayBLXtIUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2205. 14:55:02.992 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271455022154_9057224,请求url:https://syt.pwmch.com/created/?data=DETb1PuJX7PzDB5rb0JQD9wbFLh%2FV6iE3vjMxZx05GOUm9V4Tb6iRbU2NayBLXtIUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2206. 14:55:02.992 [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=?
  2207. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2208. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:55:02 AST 2023]
  2209. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2210. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2211. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2212. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2213. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2214. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2215. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2216. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2217. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2218. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2219. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2220. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2221. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2222. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2223. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2224. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2225. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2226. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2227. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2228. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2229. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2230. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2231. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2232. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2233. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2234. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:55:02 AST 2023]
  2235. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=DETb1PuJX7PzDB5rb0JQD9wbFLh%2FV6iE3vjMxZx05GOUm9V4Tb6iRbU2NayBLXtIUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2236. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2237. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2238. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2239. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2240. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2241. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2242. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2243. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2244. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2245. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2246. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2247. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2248. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2249. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2250. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2251. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2252. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2253. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2254. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2255. <p>&nbsp;</p>]
  2256. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2257. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2258. "uid":"3607251",
  2259. "payType":"1",
  2260. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2261. "baseUrl":"https://api.maxpay666.com",
  2262. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2263. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2264. }]
  2265. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2266. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271455022154]
  2267. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2268. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2269. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2270. 14:55:02.993 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1017]
  2271. 14:55:39.177 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2272. 14:55:49.544 [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
  2273. 14:55:49.545 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2274. 14:55:49.547 [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 (? , ?)
  2275. 14:55:49.547 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2276. 14:55:49.547 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2277. 14:55:49.547 [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=?
  2278. 14:55:49.548 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2279. 14:55:49.548 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2280. 14:55:49.548 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2281. 14:56:31.962 [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
  2282. 14:56:31.963 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2283. 14:56:31.964 [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 (? , ?)
  2284. 14:56:31.964 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2285. 14:56:31.964 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2286. 14:56:31.966 [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=?
  2287. 14:56:31.966 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2288. 14:56:31.967 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2289. 14:56:31.967 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2290. 14:56:31.973 [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
  2291. 14:56:31.974 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2292. 14:56:31.975 [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 (? , ?)
  2293. 14:56:31.975 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2294. 14:56:31.975 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2295. 14:56:31.975 [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=?
  2296. 14:56:31.976 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2297. 14:56:31.976 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2298. 14:56:31.976 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2299. 14:56:42.203 [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=? and sysremitta0_.valid=? limit ?
  2300. 14:56:42.203 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2301. 14:56:42.203 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2302. 14:56:42.205 [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 (? , ?)
  2303. 14:56:42.206 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2304. 14:56:42.206 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2305. 14:56:42.209 [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 ?
  2306. 14:56:42.210 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2307. 14:56:42.212 [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 ?
  2308. 14:56:42.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2309. 14:56:42.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  2310. 14:56:42.213 [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=?
  2311. 14:56:42.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2312. 14:56:42.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2313. 14:56:42.213 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2314. 14:56:42.215 [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=?
  2315. 14:56:42.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2316. 14:56:42.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2317. 14:56:42.216 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2318. 14:56:42.216 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2319. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2320. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:56:42 AST 2023]
  2321. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2322. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2323. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2324. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2325. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2326. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2327. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2328. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2329. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2330. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2331. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2332. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [3000]
  2333. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2334. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2335. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2336. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2337. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2338. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2339. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [21000.0000000000]
  2340. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2341. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2342. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [3000]
  2343. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2344. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2345. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2346. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:56:42 AST 2023]
  2347. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2348. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2349. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2350. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2351. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2352. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2353. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2354. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2355. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2356. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2357. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2358. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2359. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2360. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2361. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2362. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2363. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2364. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2365. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2366. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2367. <p>&nbsp;</p>]
  2368. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2369. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2370. "uid":"3607251",
  2371. "payType":"1",
  2372. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2373. "baseUrl":"https://api.maxpay666.com",
  2374. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2375. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2376. }]
  2377. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2378. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271456421293]
  2379. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [21000.0000000000]
  2380. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2381. 14:56:42.217 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2382. 14:56:42.219 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271456421293_9057224,加密字符串为:money=21000&orderId=PD202309271456421293_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:e6089e0defb09edb9cd0b8b68e156e52
  2383. 14:56:42.324 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"21000","payType":"1","orderId":"PD202309271456421293_9057224","signature":"e6089e0defb09edb9cd0b8b68e156e52"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=9o1156bWqASywP4BWVUU74POwDUmgkH9cvUqyuSZn9j4KcP34USl3I4A7IpNvdCqUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2384. 14:56:42.324 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271456421293_9057224,请求url:https://syt.pwmch.com/created/?data=9o1156bWqASywP4BWVUU74POwDUmgkH9cvUqyuSZn9j4KcP34USl3I4A7IpNvdCqUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2385. 14:56:42.324 [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=?
  2386. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2387. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:56:42 AST 2023]
  2388. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2389. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2390. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2391. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2392. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2393. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2394. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2395. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2396. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2397. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2398. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2399. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [3000]
  2400. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2401. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2402. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2403. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2404. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2405. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2406. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [21000.0000000000]
  2407. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2408. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2409. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [3000]
  2410. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2411. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2412. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2413. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:56:42 AST 2023]
  2414. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=9o1156bWqASywP4BWVUU74POwDUmgkH9cvUqyuSZn9j4KcP34USl3I4A7IpNvdCqUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2415. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2416. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2417. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2418. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2419. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2420. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2421. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2422. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2423. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2424. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2425. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2426. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2427. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2428. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2429. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2430. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2431. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2432. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2433. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2434. <p>&nbsp;</p>]
  2435. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2436. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2437. "uid":"3607251",
  2438. "payType":"1",
  2439. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2440. "baseUrl":"https://api.maxpay666.com",
  2441. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2442. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2443. }]
  2444. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2445. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271456421293]
  2446. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [21000.0000000000]
  2447. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2448. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2449. 14:56:42.325 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1018]
  2450. 14:56:56.556 [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
  2451. 14:56:56.557 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2452. 14:56:56.558 [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 (? , ?)
  2453. 14:56:56.558 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2454. 14:56:56.559 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2455. 14:56:56.559 [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=?
  2456. 14:56:56.559 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2457. 14:56:56.559 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2458. 14:56:56.559 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2459. 14:56:59.544 [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
  2460. 14:56:59.545 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2461. 14:56:59.547 [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 (? , ?)
  2462. 14:56:59.547 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2463. 14:56:59.547 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2464. 14:56:59.548 [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=?
  2465. 14:56:59.548 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2466. 14:56:59.548 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2467. 14:56:59.548 [http-nio-8004-exec-3] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2468. 14:57:07.074 [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=? and sysremitta0_.valid=? limit ?
  2469. 14:57:07.075 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2470. 14:57:07.075 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2471. 14:57:07.077 [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 (? , ?)
  2472. 14:57:07.077 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2473. 14:57:07.077 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2474. 14:57:07.084 [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 ?
  2475. 14:57:07.085 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2476. 14:57:07.087 [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 ?
  2477. 14:57:07.087 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2478. 14:57:07.087 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  2479. 14:57:07.088 [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=?
  2480. 14:57:07.088 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2481. 14:57:07.088 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2482. 14:57:07.088 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2483. 14:57:07.089 [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=?
  2484. 14:57:07.090 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2485. 14:57:07.090 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2486. 14:57:07.090 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2487. 14:57:07.090 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2488. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2489. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:57:07 AST 2023]
  2490. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2491. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2492. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2493. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2494. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2495. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2496. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2497. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2498. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2499. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2500. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2501. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  2502. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2503. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2504. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2505. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2506. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2507. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2508. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14000.0000000000]
  2509. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2510. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2511. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  2512. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2513. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2514. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2515. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:57:07 AST 2023]
  2516. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2517. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2518. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2519. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2520. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2521. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2522. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2523. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2524. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2525. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2526. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2527. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2528. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2529. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2530. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2531. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2532. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2533. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2534. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2535. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2536. <p>&nbsp;</p>]
  2537. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2538. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2539. "uid":"3607251",
  2540. "payType":"1",
  2541. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2542. "baseUrl":"https://api.maxpay666.com",
  2543. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2544. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2545. }]
  2546. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2547. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271457071093]
  2548. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [14000.0000000000]
  2549. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2550. 14:57:07.091 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2551. 14:57:07.093 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271457071093_9057224,加密字符串为:money=14000&orderId=PD202309271457071093_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:bb4f526cb9fe36eeed559f6f03ca556d
  2552. 14:57:07.190 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"14000","payType":"1","orderId":"PD202309271457071093_9057224","signature":"bb4f526cb9fe36eeed559f6f03ca556d"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=q681%2Fpw2UqILBiYY4fK3noV%2B3Qx1hpIs0Al1F1J5gjah6uFVVBpELap9e17VFxyFUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2553. 14:57:07.190 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271457071093_9057224,请求url:https://syt.pwmch.com/created/?data=q681%2Fpw2UqILBiYY4fK3noV%2B3Qx1hpIs0Al1F1J5gjah6uFVVBpELap9e17VFxyFUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2554. 14:57:07.191 [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=?
  2555. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2556. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 14:57:07 AST 2023]
  2557. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2558. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2559. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2560. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2561. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2562. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2563. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2564. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2565. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2566. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2567. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2568. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [2000]
  2569. 14:57:07.191 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2570. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2571. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2572. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2573. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2574. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2575. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [14000.0000000000]
  2576. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2577. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2578. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [2000]
  2579. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2580. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2581. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2582. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 00:57:07 AST 2023]
  2583. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=q681%2Fpw2UqILBiYY4fK3noV%2B3Qx1hpIs0Al1F1J5gjah6uFVVBpELap9e17VFxyFUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2584. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2585. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2586. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2587. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2588. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2589. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2590. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2591. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2592. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2593. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2594. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2595. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2596. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2597. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2598. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2599. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2600. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2601. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2602. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2603. <p>&nbsp;</p>]
  2604. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2605. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2606. "uid":"3607251",
  2607. "payType":"1",
  2608. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2609. "baseUrl":"https://api.maxpay666.com",
  2610. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2611. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2612. }]
  2613. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2614. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271457071093]
  2615. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [14000.0000000000]
  2616. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2617. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2618. 14:57:07.192 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1019]
  2619. 14:58:07.825 [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
  2620. 14:58:07.826 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2621. 14:58:07.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 (? , ?)
  2622. 14:58:07.828 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2623. 14:58:07.828 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2624. 14:58:07.829 [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=?
  2625. 14:58:07.829 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2626. 14:58:07.829 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2627. 14:58:07.829 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2628. 15:00:39.185 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2629. 15:03:34.358 [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
  2630. 15:03:34.359 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2631. 15:03:34.360 [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 (? , ?)
  2632. 15:03:34.361 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2633. 15:03:34.361 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2634. 15:03:34.361 [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=?
  2635. 15:03:34.362 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2636. 15:03:34.362 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2637. 15:03:34.362 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2638. 15:03:34.369 [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
  2639. 15:03:34.370 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2640. 15:03:34.370 [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 (? , ?)
  2641. 15:03:34.371 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2642. 15:03:34.371 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2643. 15:03:34.371 [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=?
  2644. 15:03:34.371 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2645. 15:03:34.371 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2646. 15:03:34.371 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2647. 15:03:43.337 [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=? and sysremitta0_.valid=? limit ?
  2648. 15:03:43.338 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2649. 15:03:43.338 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2650. 15:03:43.339 [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 (? , ?)
  2651. 15:03:43.340 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2652. 15:03:43.340 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2653. 15:03:43.342 [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 ?
  2654. 15:03:43.343 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2655. 15:03:43.345 [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 ?
  2656. 15:03:43.346 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2657. 15:03:43.346 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  2658. 15:03:43.346 [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=?
  2659. 15:03:43.346 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2660. 15:03:43.346 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2661. 15:03:43.346 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2662. 15:03:43.348 [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=?
  2663. 15:03:43.348 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2664. 15:03:43.348 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2665. 15:03:43.348 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2666. 15:03:43.348 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2667. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2668. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:03:43 AST 2023]
  2669. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2670. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2671. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2672. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2673. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2674. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2675. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2676. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2677. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2678. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2679. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2680. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2681. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2682. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2683. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2684. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2685. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2686. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2687. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2688. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2689. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2690. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2691. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2692. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2693. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2694. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:03:43 AST 2023]
  2695. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2696. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2697. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2698. 15:03:43.349 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2699. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2700. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2701. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2702. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2703. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2704. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2705. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2706. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2707. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2708. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2709. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2710. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2711. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2712. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2713. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2714. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2715. <p>&nbsp;</p>]
  2716. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2717. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2718. "uid":"3607251",
  2719. "payType":"1",
  2720. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2721. "baseUrl":"https://api.maxpay666.com",
  2722. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2723. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2724. }]
  2725. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2726. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271503430959]
  2727. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2728. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2729. 15:03:43.350 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2730. 15:03:43.351 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271503430959_9057224,加密字符串为:money=49000&orderId=PD202309271503430959_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:0e1cce3ad8b9d904646509e022d72219
  2731. 15:03:43.453 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271503430959_9057224","signature":"0e1cce3ad8b9d904646509e022d72219"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=ELkZw9daDXzel4UFt4Otsc8lf2SXVbyTZZQLOW4D%2Bm%2FVD%2FEWlsO4CDTGnYBF1JdGUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2732. 15:03:43.453 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271503430959_9057224,请求url:https://syt.pwmch.com/created/?data=ELkZw9daDXzel4UFt4Otsc8lf2SXVbyTZZQLOW4D%2Bm%2FVD%2FEWlsO4CDTGnYBF1JdGUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2733. 15:03:43.454 [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=?
  2734. 15:03:43.454 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2735. 15:03:43.454 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:03:43 AST 2023]
  2736. 15:03:43.454 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2737. 15:03:43.454 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2738. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2739. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2740. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2741. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2742. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2743. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2744. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2745. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2746. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2747. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2748. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2749. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2750. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2751. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2752. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2753. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2754. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2755. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2756. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2757. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2758. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2759. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2760. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2761. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:03:43 AST 2023]
  2762. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=ELkZw9daDXzel4UFt4Otsc8lf2SXVbyTZZQLOW4D%2Bm%2FVD%2FEWlsO4CDTGnYBF1JdGUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2763. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2764. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2765. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2766. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2767. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2768. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2769. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2770. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2771. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2772. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2773. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2774. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2775. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2776. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2777. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2778. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2779. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2780. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2781. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2782. <p>&nbsp;</p>]
  2783. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2784. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2785. "uid":"3607251",
  2786. "payType":"1",
  2787. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2788. "baseUrl":"https://api.maxpay666.com",
  2789. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2790. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2791. }]
  2792. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2793. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271503430959]
  2794. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2795. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2796. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2797. 15:03:43.455 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1020]
  2798. 15:04:01.959 [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
  2799. 15:04:01.960 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2800. 15:04:01.961 [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 (? , ?)
  2801. 15:04:01.962 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2802. 15:04:01.962 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2803. 15:04:01.962 [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=?
  2804. 15:04:01.962 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2805. 15:04:01.962 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2806. 15:04:01.962 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2807. 15:05:39.193 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2808. 15:10:39.202 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2809. 15:14:15.803 [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
  2810. 15:14:15.804 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2811. 15:14:15.805 [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 (? , ?)
  2812. 15:14:15.806 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2813. 15:14:15.806 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2814. 15:14:15.806 [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=?
  2815. 15:14:15.807 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2816. 15:14:15.807 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2817. 15:14:15.807 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2818. 15:14:15.899 [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
  2819. 15:14:15.900 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2820. 15:14:15.900 [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 (? , ?)
  2821. 15:14:15.901 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2822. 15:14:15.901 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2823. 15:14:15.901 [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=?
  2824. 15:14:15.902 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2825. 15:14:15.902 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2826. 15:14:15.902 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2827. 15:14:24.910 [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=? and sysremitta0_.valid=? limit ?
  2828. 15:14:24.911 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2829. 15:14:24.911 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  2830. 15:14:24.912 [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 (? , ?)
  2831. 15:14:24.913 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2832. 15:14:24.913 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2833. 15:14:24.915 [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 ?
  2834. 15:14:24.916 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2835. 15:14:24.918 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  2836. 15:14:24.919 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  2837. 15:14:24.919 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  2838. 15:14:24.919 [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=?
  2839. 15:14:24.919 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2840. 15:14:24.919 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2841. 15:14:24.920 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2842. 15:14:24.921 [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=?
  2843. 15:14:24.921 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2844. 15:14:24.921 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2845. 15:14:24.921 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2846. 15:14:24.921 [http-nio-8004-exec-4] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  2847. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2848. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:14:24 AST 2023]
  2849. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2850. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2851. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2852. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2853. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2854. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2855. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2856. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2857. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2858. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2859. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2860. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2861. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2862. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2863. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2864. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2865. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2866. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2867. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2868. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2869. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2870. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2871. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2872. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2873. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2874. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:14:24 AST 2023]
  2875. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  2876. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2877. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2878. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2879. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2880. 15:14:24.922 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2881. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2882. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2883. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2884. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2885. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2886. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2887. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2888. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2889. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2890. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2891. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2892. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2893. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2894. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2895. <p>&nbsp;</p>]
  2896. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2897. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2898. "uid":"3607251",
  2899. "payType":"1",
  2900. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2901. "baseUrl":"https://api.maxpay666.com",
  2902. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2903. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2904. }]
  2905. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2906. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271514243188]
  2907. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2908. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2909. 15:14:24.923 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2910. 15:14:24.924 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271514243188_9057224,加密字符串为:money=49000&orderId=PD202309271514243188_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:fd48edc251e671de9f4e47d2e673a073
  2911. 15:14:25.048 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271514243188_9057224","signature":"fd48edc251e671de9f4e47d2e673a073"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=AFF1ozcVVfMWQ0%2F81PqavlPTwMEHvjlliBaw2d1GXBZS0l%2FAp8Mez8Df0cujkSaAUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  2912. 15:14:25.048 [http-nio-8004-exec-4] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271514243188_9057224,请求url:https://syt.pwmch.com/created/?data=AFF1ozcVVfMWQ0%2F81PqavlPTwMEHvjlliBaw2d1GXBZS0l%2FAp8Mez8Df0cujkSaAUrI9BGNKcO6AM1EaNebJTw%3D%3D
  2913. 15:14:25.048 [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=?
  2914. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  2915. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:14:24 AST 2023]
  2916. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  2917. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  2918. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  2919. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  2920. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  2921. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  2922. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  2923. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  2924. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  2925. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  2926. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  2927. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  2928. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2929. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  2930. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  2931. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  2932. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  2933. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  2934. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  2935. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  2936. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  2937. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  2938. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  2939. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  2940. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  2941. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:14:24 AST 2023]
  2942. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=AFF1ozcVVfMWQ0%2F81PqavlPTwMEHvjlliBaw2d1GXBZS0l%2FAp8Mez8Df0cujkSaAUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  2943. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  2944. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  2945. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  2946. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  2947. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2948. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  2949. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  2950. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  2951. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  2952. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  2953. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  2954. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  2955. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  2956. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  2957. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  2958. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  2959. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  2960. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  2961. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  2962. <p>&nbsp;</p>]
  2963. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  2964. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  2965. "uid":"3607251",
  2966. "payType":"1",
  2967. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  2968. "baseUrl":"https://api.maxpay666.com",
  2969. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  2970. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  2971. }]
  2972. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  2973. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271514243188]
  2974. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  2975. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  2976. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  2977. 15:14:25.049 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1021]
  2978. 15:14:53.418 [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
  2979. 15:14:53.419 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2980. 15:14:53.420 [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 (? , ?)
  2981. 15:14:53.421 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2982. 15:14:53.421 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2983. 15:14:53.421 [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=?
  2984. 15:14:53.421 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2985. 15:14:53.422 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2986. 15:14:53.422 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2987. 15:15:00.021 [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
  2988. 15:15:00.022 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  2989. 15:15:00.024 [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 (? , ?)
  2990. 15:15:00.024 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  2991. 15:15:00.024 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  2992. 15:15:00.026 [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=?
  2993. 15:15:00.026 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  2994. 15:15:00.026 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  2995. 15:15:00.026 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  2996. 15:15:39.210 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2997. 15:20:39.218 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2998. 15:25:39.227 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  2999. 15:30:39.235 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3000. 15:35:22.751 [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
  3001. 15:35:22.753 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3002. 15:35:22.754 [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 (? , ?)
  3003. 15:35:22.755 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3004. 15:35:22.755 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3005. 15:35:22.756 [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=?
  3006. 15:35:22.757 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3007. 15:35:22.757 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3008. 15:35:22.757 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3009. 15:35:39.244 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3010. 15:36:09.907 [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=? and sysremitta0_.valid=? limit ?
  3011. 15:36:09.908 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3012. 15:36:09.908 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3013. 15:36:09.910 [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 (? , ?)
  3014. 15:36:09.910 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3015. 15:36:09.910 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3016. 15:36:09.913 [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 ?
  3017. 15:36:09.914 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [186]
  3018. 15:36:09.915 [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 ?
  3019. 15:36:09.916 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [186]
  3020. 15:36:09.916 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057035]
  3021. 15:36:09.917 [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=?
  3022. 15:36:09.917 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3023. 15:36:09.917 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3024. 15:36:09.917 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3025. 15:36:09.918 [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=?
  3026. 15:36:09.918 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3027. 15:36:09.918 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3028. 15:36:09.919 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3029. 15:36:09.919 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3030. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.32.102.188]
  3031. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:36:09 AST 2023]
  3032. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [186]
  3033. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3034. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3035. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3036. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3037. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3038. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3039. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3040. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3041. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3042. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  3043. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  3044. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3045. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3046. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500195]
  3047. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3048. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3049. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3050. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  3051. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3052. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [186]
  3053. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  3054. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3055. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3056. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3057. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:36:09 AST 2023]
  3058. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3059. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057035]
  3060. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3061. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [凡博 孟]
  3062. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3063. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3064. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3065. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3066. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3067. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3068. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3069. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3070. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3071. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3072. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3073. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3074. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3075. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3076. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3077. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3078. <p>&nbsp;</p>]
  3079. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3080. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3081. "uid":"3607251",
  3082. "payType":"1",
  3083. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3084. "baseUrl":"https://api.maxpay666.com",
  3085. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3086. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3087. }]
  3088. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3089. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271536097688]
  3090. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  3091. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3092. 15:36:09.920 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3093. 15:36:09.922 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271536097688_9057035,加密字符串为:money=3500&orderId=PD202309271536097688_9057035&payType=1&uid=3607251&uniqueCode=186&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:910ac1c86b6859365b514caef8028763
  3094. 15:36:10.033 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"186","money":"3500","payType":"1","orderId":"PD202309271536097688_9057035","signature":"910ac1c86b6859365b514caef8028763"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=x%2FuqS4kEAbbTo6TpuJDipKT2honC87luauXDBX30EijYExiJ3Hq4NeItRHNX5X1Pj0rRPmushoNB7CxsHjq4pw%3D%3D","success":true}
  3095. 15:36:10.034 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271536097688_9057035,请求url:https://syt.pwmch.com/created/?data=x%2FuqS4kEAbbTo6TpuJDipKT2honC87luauXDBX30EijYExiJ3Hq4NeItRHNX5X1Pj0rRPmushoNB7CxsHjq4pw%3D%3D
  3096. 15:36:10.034 [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=?
  3097. 15:36:10.034 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.32.102.188]
  3098. 15:36:10.034 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 15:36:09 AST 2023]
  3099. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [186]
  3100. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3101. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3102. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3103. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3104. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3105. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3106. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3107. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3108. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3109. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20099]
  3110. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [500]
  3111. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3112. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3113. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500195]
  3114. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3115. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3116. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3117. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [3500.0000000000]
  3118. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3119. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [186]
  3120. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [500]
  3121. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3122. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3123. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3124. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 01:36:09 AST 2023]
  3125. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=x%2FuqS4kEAbbTo6TpuJDipKT2honC87luauXDBX30EijYExiJ3Hq4NeItRHNX5X1Pj0rRPmushoNB7CxsHjq4pw%3D%3D]
  3126. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057035]
  3127. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3128. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [凡博 孟]
  3129. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3130. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3131. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3132. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3133. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3134. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3135. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3136. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3137. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3138. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3139. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3140. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3141. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3142. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3143. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3144. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3145. <p>&nbsp;</p>]
  3146. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3147. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3148. "uid":"3607251",
  3149. "payType":"1",
  3150. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3151. "baseUrl":"https://api.maxpay666.com",
  3152. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3153. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3154. }]
  3155. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3156. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271536097688]
  3157. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [3500.0000000000]
  3158. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3159. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3160. 15:36:10.035 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1022]
  3161. 15:40:39.252 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3162. 15:45:39.260 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3163. 15:50:39.268 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3164. 15:55:39.276 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3165. 16:00:39.284 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3166. 16:05:39.292 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3167. 16:10:39.299 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3168. 16:15:39.307 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3169. 16:20:39.315 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3170. 16:25:39.324 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3171. 16:30:39.333 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3172. 16:33:05.478 [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=? and sysremitta0_.valid=? limit ?
  3173. 16:33:05.479 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3174. 16:33:05.479 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3175. 16:33:05.481 [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 (? , ?)
  3176. 16:33:05.481 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3177. 16:33:05.481 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3178. 16:33:05.489 [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 ?
  3179. 16:33:05.490 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3180. 16:33:05.492 [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 ?
  3181. 16:33:05.492 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3182. 16:33:05.492 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  3183. 16:33:05.493 [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=?
  3184. 16:33:05.493 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3185. 16:33:05.493 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3186. 16:33:05.493 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3187. 16:33:05.494 [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=?
  3188. 16:33:05.495 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3189. 16:33:05.495 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3190. 16:33:05.495 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3191. 16:33:05.495 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3192. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3193. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:33:05 AST 2023]
  3194. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3195. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3196. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3197. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3198. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3199. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3200. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3201. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3202. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3203. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3204. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3205. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3206. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3207. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3208. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3209. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3210. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3211. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3212. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3213. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3214. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3215. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3216. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3217. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3218. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3219. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:33:05 AST 2023]
  3220. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3221. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3222. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3223. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3224. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3225. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3226. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3227. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3228. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3229. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3230. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3231. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3232. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3233. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3234. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3235. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3236. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3237. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3238. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3239. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3240. <p>&nbsp;</p>]
  3241. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3242. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3243. "uid":"3607251",
  3244. "payType":"1",
  3245. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3246. "baseUrl":"https://api.maxpay666.com",
  3247. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3248. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3249. }]
  3250. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3251. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271633056491]
  3252. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3253. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3254. 16:33:05.496 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3255. 16:33:05.498 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271633056491_9057224,加密字符串为:money=49000&orderId=PD202309271633056491_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:c9287fb124fe1cc5bca0560922737090
  3256. 16:33:05.600 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271633056491_9057224","signature":"c9287fb124fe1cc5bca0560922737090"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=SzeO9UeBX1F%2BUmo32qVRdJudE0HBUotA9yqtxIxpbZGNeSDC%2FOSkj3RAsegQgvbIUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  3257. 16:33:05.600 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271633056491_9057224,请求url:https://syt.pwmch.com/created/?data=SzeO9UeBX1F%2BUmo32qVRdJudE0HBUotA9yqtxIxpbZGNeSDC%2FOSkj3RAsegQgvbIUrI9BGNKcO6AM1EaNebJTw%3D%3D
  3258. 16:33:05.600 [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=?
  3259. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3260. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:33:05 AST 2023]
  3261. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3262. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3263. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3264. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3265. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3266. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3267. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3268. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3269. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3270. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3271. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3272. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3273. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3274. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3275. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3276. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3277. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3278. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3279. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3280. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3281. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3282. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3283. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3284. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3285. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3286. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:33:05 AST 2023]
  3287. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=SzeO9UeBX1F%2BUmo32qVRdJudE0HBUotA9yqtxIxpbZGNeSDC%2FOSkj3RAsegQgvbIUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  3288. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3289. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3290. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3291. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3292. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3293. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3294. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3295. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3296. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3297. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3298. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3299. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3300. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3301. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3302. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3303. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3304. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3305. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3306. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3307. <p>&nbsp;</p>]
  3308. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3309. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3310. "uid":"3607251",
  3311. "payType":"1",
  3312. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3313. "baseUrl":"https://api.maxpay666.com",
  3314. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3315. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3316. }]
  3317. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3318. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271633056491]
  3319. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3320. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3321. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3322. 16:33:05.601 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1023]
  3323. 16:35:39.341 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3324. 16:40:39.350 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3325. 16:44:08.248 [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
  3326. 16:44:08.249 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3327. 16:44:08.251 [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 (? , ?)
  3328. 16:44:08.251 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3329. 16:44:08.251 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3330. 16:44:08.251 [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=?
  3331. 16:44:08.252 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3332. 16:44:08.252 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3333. 16:44:08.252 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3334. 16:44:09.867 [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
  3335. 16:44:09.868 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3336. 16:44:09.869 [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 (? , ?)
  3337. 16:44:09.869 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3338. 16:44:09.869 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3339. 16:44:09.870 [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=?
  3340. 16:44:09.870 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3341. 16:44:09.870 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3342. 16:44:09.870 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3343. 16:44:23.013 [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=? and sysremitta0_.valid=? limit ?
  3344. 16:44:23.014 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3345. 16:44:23.014 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3346. 16:44:23.016 [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 (? , ?)
  3347. 16:44:23.016 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3348. 16:44:23.016 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3349. 16:44:23.018 [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 ?
  3350. 16:44:23.020 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3351. 16:44:23.021 [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 ?
  3352. 16:44:23.022 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3353. 16:44:23.022 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  3354. 16:44:23.022 [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=?
  3355. 16:44:23.023 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3356. 16:44:23.023 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3357. 16:44:23.023 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3358. 16:44:23.024 [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=?
  3359. 16:44:23.024 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3360. 16:44:23.024 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3361. 16:44:23.024 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3362. 16:44:23.025 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3363. 16:44:23.025 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3364. 16:44:23.025 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:44:23 AST 2023]
  3365. 16:44:23.025 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3366. 16:44:23.025 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3367. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3368. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3369. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3370. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3371. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3372. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3373. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3374. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3375. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3376. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3377. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3378. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3379. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3380. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3381. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3382. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3383. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3384. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3385. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3386. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3387. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3388. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3389. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3390. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:44:23 AST 2023]
  3391. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3392. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3393. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3394. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3395. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3396. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3397. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3398. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3399. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3400. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3401. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3402. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3403. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3404. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3405. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3406. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3407. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3408. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3409. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3410. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3411. <p>&nbsp;</p>]
  3412. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3413. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3414. "uid":"3607251",
  3415. "payType":"1",
  3416. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3417. "baseUrl":"https://api.maxpay666.com",
  3418. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3419. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3420. }]
  3421. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3422. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271644233078]
  3423. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3424. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3425. 16:44:23.026 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3426. 16:44:23.028 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271644233078_9057224,加密字符串为:money=49000&orderId=PD202309271644233078_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:22e5963123b8bdead5a5da85c6832bc3
  3427. 16:44:23.136 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271644233078_9057224","signature":"22e5963123b8bdead5a5da85c6832bc3"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=zgbbgpSAQGh5OzgSkzihURo50h5gKePDz0yMH5WDs29DeAxBhFjnDRj6lrV9TbVTUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  3428. 16:44:23.137 [http-nio-8004-exec-10] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271644233078_9057224,请求url:https://syt.pwmch.com/created/?data=zgbbgpSAQGh5OzgSkzihURo50h5gKePDz0yMH5WDs29DeAxBhFjnDRj6lrV9TbVTUrI9BGNKcO6AM1EaNebJTw%3D%3D
  3429. 16:44:23.137 [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=?
  3430. 16:44:23.137 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3431. 16:44:23.137 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:44:23 AST 2023]
  3432. 16:44:23.137 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3433. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3434. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3435. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3436. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3437. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3438. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3439. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3440. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3441. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3442. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3443. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3444. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3445. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3446. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3447. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3448. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3449. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3450. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3451. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3452. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3453. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3454. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3455. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3456. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3457. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:44:23 AST 2023]
  3458. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=zgbbgpSAQGh5OzgSkzihURo50h5gKePDz0yMH5WDs29DeAxBhFjnDRj6lrV9TbVTUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  3459. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3460. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3461. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3462. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3463. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3464. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3465. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3466. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3467. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3468. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3469. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3470. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3471. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3472. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3473. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3474. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3475. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3476. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3477. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3478. <p>&nbsp;</p>]
  3479. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3480. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3481. "uid":"3607251",
  3482. "payType":"1",
  3483. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3484. "baseUrl":"https://api.maxpay666.com",
  3485. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3486. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3487. }]
  3488. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3489. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271644233078]
  3490. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3491. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3492. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3493. 16:44:23.138 [http-nio-8004-exec-10] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1024]
  3494. 16:44:37.892 [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
  3495. 16:44:37.894 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3496. 16:44:37.895 [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 (? , ?)
  3497. 16:44:37.895 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3498. 16:44:37.895 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3499. 16:44:37.896 [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=?
  3500. 16:44:37.896 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3501. 16:44:37.896 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3502. 16:44:37.896 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3503. 16:44:37.977 [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
  3504. 16:44:37.978 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3505. 16:44:37.978 [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 (? , ?)
  3506. 16:44:37.979 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3507. 16:44:37.979 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3508. 16:44:37.979 [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=?
  3509. 16:44:37.979 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3510. 16:44:37.979 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3511. 16:44:37.980 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3512. 16:45:01.849 [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=? and sysremitta0_.valid=? limit ?
  3513. 16:45:01.850 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3514. 16:45:01.850 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3515. 16:45:01.852 [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 (? , ?)
  3516. 16:45:01.852 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3517. 16:45:01.852 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3518. 16:45:01.860 [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 ?
  3519. 16:45:01.861 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3520. 16:45:01.863 [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 ?
  3521. 16:45:01.864 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3522. 16:45:01.864 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  3523. 16:45:01.864 [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=?
  3524. 16:45:01.865 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3525. 16:45:01.865 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3526. 16:45:01.865 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3527. 16:45:01.866 [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=?
  3528. 16:45:01.867 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3529. 16:45:01.867 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3530. 16:45:01.867 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3531. 16:45:01.867 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3532. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3533. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:45:01 AST 2023]
  3534. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3535. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3536. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3537. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3538. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3539. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3540. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3541. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3542. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3543. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3544. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3545. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3546. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3547. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3548. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3549. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3550. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3551. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3552. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3553. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3554. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3555. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3556. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3557. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3558. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3559. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:45:01 AST 2023]
  3560. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3561. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3562. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3563. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3564. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3565. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3566. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3567. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3568. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3569. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3570. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3571. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3572. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3573. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3574. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3575. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3576. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3577. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3578. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3579. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3580. <p>&nbsp;</p>]
  3581. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3582. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3583. "uid":"3607251",
  3584. "payType":"1",
  3585. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3586. "baseUrl":"https://api.maxpay666.com",
  3587. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3588. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3589. }]
  3590. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3591. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271645014306]
  3592. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3593. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3594. 16:45:01.868 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3595. 16:45:01.870 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271645014306_9057224,加密字符串为:money=49000&orderId=PD202309271645014306_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:e6a9916790005e2b862aa5966f916baf
  3596. 16:45:01.960 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271645014306_9057224","signature":"e6a9916790005e2b862aa5966f916baf"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=WUWcNmVGilYRzUldhtd7NNbMFccCFHmeFu8AgH704Iksdoc6n3Kxq6GrboVyRMAZUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  3597. 16:45:01.960 [http-nio-8004-exec-2] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271645014306_9057224,请求url:https://syt.pwmch.com/created/?data=WUWcNmVGilYRzUldhtd7NNbMFccCFHmeFu8AgH704Iksdoc6n3Kxq6GrboVyRMAZUrI9BGNKcO6AM1EaNebJTw%3D%3D
  3598. 16:45:01.960 [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=?
  3599. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3600. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:45:01 AST 2023]
  3601. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3602. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3603. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3604. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3605. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3606. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3607. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3608. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3609. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3610. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3611. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3612. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3613. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3614. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3615. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3616. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3617. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3618. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3619. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3620. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3621. 16:45:01.961 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3622. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3623. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3624. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3625. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3626. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:45:01 AST 2023]
  3627. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=WUWcNmVGilYRzUldhtd7NNbMFccCFHmeFu8AgH704Iksdoc6n3Kxq6GrboVyRMAZUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  3628. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3629. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3630. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3631. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3632. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3633. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3634. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3635. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3636. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3637. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3638. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3639. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3640. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3641. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3642. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3643. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3644. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3645. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3646. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3647. <p>&nbsp;</p>]
  3648. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3649. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3650. "uid":"3607251",
  3651. "payType":"1",
  3652. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3653. "baseUrl":"https://api.maxpay666.com",
  3654. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3655. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3656. }]
  3657. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3658. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271645014306]
  3659. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3660. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3661. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3662. 16:45:01.962 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1025]
  3663. 16:45:39.358 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3664. 16:47:36.909 [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
  3665. 16:47:36.910 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3666. 16:47:36.911 [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 (? , ?)
  3667. 16:47:36.912 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3668. 16:47:36.912 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3669. 16:47:36.912 [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=?
  3670. 16:47:36.913 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3671. 16:47:36.913 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3672. 16:47:36.913 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3673. 16:47:36.921 [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
  3674. 16:47:36.924 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3675. 16:47:36.926 [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 (? , ?)
  3676. 16:47:36.926 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3677. 16:47:36.926 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3678. 16:47:36.927 [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=?
  3679. 16:47:36.927 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3680. 16:47:36.927 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3681. 16:47:36.927 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3682. 16:47:46.025 [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=? and sysremitta0_.valid=? limit ?
  3683. 16:47:46.026 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3684. 16:47:46.026 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3685. 16:47:46.028 [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 (? , ?)
  3686. 16:47:46.029 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3687. 16:47:46.029 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3688. 16:47:46.031 [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 ?
  3689. 16:47:46.032 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3690. 16:47:46.034 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  3691. 16:47:46.035 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3692. 16:47:46.035 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  3693. 16:47:46.035 [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=?
  3694. 16:47:46.036 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3695. 16:47:46.036 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3696. 16:47:46.036 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3697. 16:47:46.037 [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=?
  3698. 16:47:46.038 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3699. 16:47:46.038 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3700. 16:47:46.038 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3701. 16:47:46.038 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3702. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3703. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:47:46 AST 2023]
  3704. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3705. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3706. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3707. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3708. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3709. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3710. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3711. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3712. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3713. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3714. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3715. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3716. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3717. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3718. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3719. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3720. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3721. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3722. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3723. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3724. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3725. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3726. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3727. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3728. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3729. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:47:46 AST 2023]
  3730. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3731. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3732. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3733. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3734. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3735. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3736. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3737. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3738. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3739. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3740. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3741. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3742. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3743. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3744. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3745. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3746. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3747. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3748. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3749. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3750. <p>&nbsp;</p>]
  3751. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3752. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3753. "uid":"3607251",
  3754. "payType":"1",
  3755. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3756. "baseUrl":"https://api.maxpay666.com",
  3757. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3758. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3759. }]
  3760. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3761. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271647465033]
  3762. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3763. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3764. 16:47:46.039 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3765. 16:47:46.041 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271647465033_9057224,加密字符串为:money=49000&orderId=PD202309271647465033_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:7b3516e5a77434fd2a1a3709b432e1de
  3766. 16:47:46.141 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271647465033_9057224","signature":"7b3516e5a77434fd2a1a3709b432e1de"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=JfI18FtW9Eo43hyofGWQA7QVDWPuM%2BpHcka1AguNdC8cH1hvX59OYE1l8C5l3nw2UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  3767. 16:47:46.141 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271647465033_9057224,请求url:https://syt.pwmch.com/created/?data=JfI18FtW9Eo43hyofGWQA7QVDWPuM%2BpHcka1AguNdC8cH1hvX59OYE1l8C5l3nw2UrI9BGNKcO6AM1EaNebJTw%3D%3D
  3768. 16:47:46.141 [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=?
  3769. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3770. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:47:46 AST 2023]
  3771. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3772. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3773. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3774. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3775. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3776. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3777. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3778. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3779. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3780. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3781. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3782. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3783. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3784. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3785. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3786. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3787. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3788. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3789. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3790. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3791. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3792. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3793. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3794. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3795. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3796. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:47:46 AST 2023]
  3797. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=JfI18FtW9Eo43hyofGWQA7QVDWPuM%2BpHcka1AguNdC8cH1hvX59OYE1l8C5l3nw2UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  3798. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3799. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3800. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3801. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3802. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3803. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3804. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3805. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3806. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3807. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3808. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3809. 16:47:46.142 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3810. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3811. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3812. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3813. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3814. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3815. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3816. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3817. <p>&nbsp;</p>]
  3818. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3819. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3820. "uid":"3607251",
  3821. "payType":"1",
  3822. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3823. "baseUrl":"https://api.maxpay666.com",
  3824. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3825. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3826. }]
  3827. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3828. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271647465033]
  3829. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3830. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3831. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3832. 16:47:46.143 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1026]
  3833. 16:48:07.366 [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
  3834. 16:48:07.367 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3835. 16:48:07.368 [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 (? , ?)
  3836. 16:48:07.369 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3837. 16:48:07.369 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3838. 16:48:07.369 [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=?
  3839. 16:48:07.370 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3840. 16:48:07.370 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3841. 16:48:07.370 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3842. 16:50:39.366 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  3843. 16:50:45.439 [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
  3844. 16:50:45.440 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  3845. 16:50:45.442 [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 (? , ?)
  3846. 16:50:45.442 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3847. 16:50:45.442 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3848. 16:50:45.443 [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=?
  3849. 16:50:45.443 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3850. 16:50:45.443 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3851. 16:50:45.443 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3852. 16:51:36.562 [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=? and sysremitta0_.valid=? limit ?
  3853. 16:51:36.563 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3854. 16:51:36.563 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  3855. 16:51:36.565 [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 (? , ?)
  3856. 16:51:36.565 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  3857. 16:51:36.566 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  3858. 16:51:36.572 [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 ?
  3859. 16:51:36.573 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3860. 16:51:36.575 [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 ?
  3861. 16:51:36.576 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  3862. 16:51:36.576 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  3863. 16:51:36.577 [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=?
  3864. 16:51:36.577 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3865. 16:51:36.577 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3866. 16:51:36.577 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3867. 16:51:36.578 [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=?
  3868. 16:51:36.579 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  3869. 16:51:36.579 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  3870. 16:51:36.579 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  3871. 16:51:36.579 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  3872. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3873. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:51:36 AST 2023]
  3874. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3875. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3876. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3877. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3878. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3879. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3880. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3881. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3882. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3883. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3884. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3885. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3886. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3887. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3888. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3889. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3890. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3891. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3892. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3893. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3894. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3895. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3896. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3897. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3898. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3899. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:51:36 AST 2023]
  3900. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  3901. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3902. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3903. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3904. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3905. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3906. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3907. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3908. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3909. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3910. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3911. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3912. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3913. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3914. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3915. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3916. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3917. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3918. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3919. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3920. <p>&nbsp;</p>]
  3921. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3922. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3923. "uid":"3607251",
  3924. "payType":"1",
  3925. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3926. "baseUrl":"https://api.maxpay666.com",
  3927. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3928. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3929. }]
  3930. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3931. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271651364683]
  3932. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  3933. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  3934. 16:51:36.580 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  3935. 16:51:36.583 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271651364683_9057224,加密字符串为:money=49000&orderId=PD202309271651364683_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:70c1f5612c986292a76aa797bb15e28b
  3936. 16:51:36.680 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271651364683_9057224","signature":"70c1f5612c986292a76aa797bb15e28b"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=68ahqq%2BCbXEm%2Fimq0RShMq6tBqSKGxWGUJ3oh6xNytkr2RooiC96rMdtBqkooUX1UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  3937. 16:51:36.680 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271651364683_9057224,请求url:https://syt.pwmch.com/created/?data=68ahqq%2BCbXEm%2Fimq0RShMq6tBqSKGxWGUJ3oh6xNytkr2RooiC96rMdtBqkooUX1UrI9BGNKcO6AM1EaNebJTw%3D%3D
  3938. 16:51:36.680 [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=?
  3939. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  3940. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 16:51:36 AST 2023]
  3941. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  3942. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  3943. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  3944. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  3945. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  3946. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  3947. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  3948. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  3949. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  3950. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  3951. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  3952. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  3953. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3954. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  3955. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  3956. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  3957. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  3958. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  3959. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  3960. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  3961. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  3962. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  3963. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  3964. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  3965. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  3966. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 02:51:36 AST 2023]
  3967. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=68ahqq%2BCbXEm%2Fimq0RShMq6tBqSKGxWGUJ3oh6xNytkr2RooiC96rMdtBqkooUX1UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  3968. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  3969. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  3970. 16:51:36.681 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  3971. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  3972. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3973. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  3974. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  3975. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  3976. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  3977. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  3978. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  3979. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  3980. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  3981. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  3982. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  3983. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  3984. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  3985. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  3986. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  3987. <p>&nbsp;</p>]
  3988. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  3989. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  3990. "uid":"3607251",
  3991. "payType":"1",
  3992. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  3993. "baseUrl":"https://api.maxpay666.com",
  3994. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  3995. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  3996. }]
  3997. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  3998. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271651364683]
  3999. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  4000. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  4001. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  4002. 16:51:36.682 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1027]
  4003. 16:55:39.375 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4004. 17:00:39.382 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4005. 17:05:39.390 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4006. 17:10:39.399 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4007. 17:15:39.407 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4008. 17:20:39.415 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4009. 17:25:39.423 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4010. 17:30:39.431 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4011. 17:32:47.783 [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
  4012. 17:32:47.787 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4013. 17:32:47.789 [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 (? , ?)
  4014. 17:32:47.789 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4015. 17:32:47.789 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4016. 17:32:47.789 [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=?
  4017. 17:32:47.790 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4018. 17:32:47.790 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4019. 17:32:47.790 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4020. 17:33:32.117 [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
  4021. 17:33:32.118 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4022. 17:33:32.119 [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 (? , ?)
  4023. 17:33:32.120 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4024. 17:33:32.120 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4025. 17:33:32.120 [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=?
  4026. 17:33:32.121 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4027. 17:33:32.121 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4028. 17:33:32.121 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4029. 17:33:32.208 [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
  4030. 17:33:32.209 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4031. 17:33:32.209 [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 (? , ?)
  4032. 17:33:32.210 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4033. 17:33:32.210 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4034. 17:33:32.210 [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=?
  4035. 17:33:32.210 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4036. 17:33:32.211 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4037. 17:33:32.211 [http-nio-8004-exec-4] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4038. 17:33:45.306 [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=? and sysremitta0_.valid=? limit ?
  4039. 17:33:45.307 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4040. 17:33:45.307 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  4041. 17:33:45.309 [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 (? , ?)
  4042. 17:33:45.309 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4043. 17:33:45.309 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4044. 17:33:45.311 [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 ?
  4045. 17:33:45.313 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  4046. 17:33:45.315 [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 ?
  4047. 17:33:45.315 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  4048. 17:33:45.315 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  4049. 17:33:45.316 [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=?
  4050. 17:33:45.316 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4051. 17:33:45.316 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4052. 17:33:45.316 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4053. 17:33:45.317 [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=?
  4054. 17:33:45.318 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4055. 17:33:45.318 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4056. 17:33:45.318 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4057. 17:33:45.318 [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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  4058. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  4059. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 17:33:45 AST 2023]
  4060. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  4061. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  4062. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  4063. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  4064. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  4065. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  4066. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  4067. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  4068. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  4069. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  4070. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  4071. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  4072. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4073. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  4074. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  4075. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  4076. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  4077. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  4078. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  4079. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  4080. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  4081. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  4082. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  4083. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  4084. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  4085. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 03:33:45 AST 2023]
  4086. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  4087. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  4088. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  4089. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  4090. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  4091. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4092. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  4093. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  4094. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  4095. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4096. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  4097. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  4098. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  4099. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  4100. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  4101. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  4102. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  4103. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  4104. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  4105. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  4106. <p>&nbsp;</p>]
  4107. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  4108. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  4109. "uid":"3607251",
  4110. "payType":"1",
  4111. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  4112. "baseUrl":"https://api.maxpay666.com",
  4113. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  4114. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  4115. }]
  4116. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  4117. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271733451761]
  4118. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  4119. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  4120. 17:33:45.319 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  4121. 17:33:45.321 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309271733451761_9057224,加密字符串为:money=49000&orderId=PD202309271733451761_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:ecbf32dd0e895c4b7d55d3bb3ef6adaa
  4122. 17:33:45.427 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309271733451761_9057224","signature":"ecbf32dd0e895c4b7d55d3bb3ef6adaa"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=TeYPy7ENxA9PTncCVxdVYG%2F6CyiAUgcMgPW2DGIkJ53KY9%2BMHS2VNcSGzS0WIEHHUrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  4123. 17:33:45.427 [http-nio-8004-exec-1] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309271733451761_9057224,请求url:https://syt.pwmch.com/created/?data=TeYPy7ENxA9PTncCVxdVYG%2F6CyiAUgcMgPW2DGIkJ53KY9%2BMHS2VNcSGzS0WIEHHUrI9BGNKcO6AM1EaNebJTw%3D%3D
  4124. 17:33:45.427 [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=?
  4125. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  4126. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 17:33:45 AST 2023]
  4127. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  4128. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  4129. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  4130. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  4131. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  4132. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  4133. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  4134. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  4135. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  4136. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  4137. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  4138. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  4139. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4140. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  4141. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  4142. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  4143. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  4144. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  4145. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  4146. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  4147. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  4148. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  4149. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  4150. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  4151. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  4152. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 03:33:45 AST 2023]
  4153. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=TeYPy7ENxA9PTncCVxdVYG%2F6CyiAUgcMgPW2DGIkJ53KY9%2BMHS2VNcSGzS0WIEHHUrI9BGNKcO6AM1EaNebJTw%3D%3D]
  4154. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  4155. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  4156. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  4157. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  4158. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4159. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  4160. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  4161. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  4162. 17:33:45.428 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4163. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  4164. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  4165. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  4166. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  4167. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  4168. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  4169. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  4170. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  4171. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  4172. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  4173. <p>&nbsp;</p>]
  4174. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  4175. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  4176. "uid":"3607251",
  4177. "payType":"1",
  4178. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  4179. "baseUrl":"https://api.maxpay666.com",
  4180. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  4181. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  4182. }]
  4183. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  4184. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309271733451761]
  4185. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  4186. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  4187. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  4188. 17:33:45.429 [http-nio-8004-exec-1] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1028]
  4189. 17:33:57.856 [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
  4190. 17:33:57.857 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4191. 17:33:57.858 [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 (? , ?)
  4192. 17:33:57.858 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4193. 17:33:57.858 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4194. 17:33:57.859 [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=?
  4195. 17:33:57.859 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4196. 17:33:57.859 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4197. 17:33:57.859 [http-nio-8004-exec-8] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4198. 17:35:39.439 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4199. 17:40:39.447 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4200. 17:45:39.455 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4201. 17:50:39.463 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4202. 17:55:39.471 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4203. 18:00:39.480 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4204. 18:05:39.487 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4205. 18:10:39.494 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4206. 18:15:39.502 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4207. 18:20:39.511 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4208. 18:25:39.519 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4209. 18:30:39.526 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4210. 18:35:39.535 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4211. 18:40:39.543 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4212. 18:45:39.551 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4213. 18:50:39.560 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4214. 18:55:39.568 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4215. 19:00:39.576 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4216. 19:05:39.584 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4217. 19:10:39.592 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4218. 19:15:39.600 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4219. 19:20:39.608 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4220. 19:25:39.615 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4221. 19:30:39.624 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4222. 19:35:39.632 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4223. 19:40:39.640 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4224. 19:45:39.648 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4225. 19:50:39.656 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4226. 19:55:39.664 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4227. 20:00:39.673 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4228. 20:05:39.681 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4229. 20:10:39.689 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4230. 20:15:39.698 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4231. 20:20:39.706 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4232. 20:25:39.715 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4233. 20:30:39.722 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4234. 20:35:39.730 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4235. 20:40:39.738 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4236. 20:45:39.747 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4237. 20:50:39.755 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4238. 20:55:39.763 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4239. 21:00:39.772 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4240. 21:05:39.780 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4241. 21:10:39.789 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4242. 21:14:30.357 [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
  4243. 21:14:30.360 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4244. 21:14:30.360 [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
  4245. 21:14:30.362 [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 (? , ?)
  4246. 21:14:30.363 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4247. 21:14:30.363 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4248. 21:14:30.363 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [1]
  4249. 21:14:30.364 [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=?
  4250. 21:14:30.364 [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 (? , ?)
  4251. 21:14:30.364 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4252. 21:14:30.364 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4253. 21:14:30.364 [http-nio-8004-exec-2] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4254. 21:14:30.365 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4255. 21:14:30.365 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4256. 21:14:30.365 [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=?
  4257. 21:14:30.365 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4258. 21:14:30.365 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4259. 21:14:30.365 [http-nio-8004-exec-9] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4260. 21:14:52.391 [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=? and sysremitta0_.valid=? limit ?
  4261. 21:14:52.392 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4262. 21:14:52.392 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [INTEGER] - [1]
  4263. 21:14:52.394 [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 (? , ?)
  4264. 21:14:52.395 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [FINANCE_DEPOSIT_MAX]
  4265. 21:14:52.395 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [FINANCE_DEPOSIT_MIN]
  4266. 21:14:52.397 [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 ?
  4267. 21:14:52.398 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  4268. 21:14:52.400 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - select customlogi0_.id as id1_37_, customlogi0_.add_ip as add_ip2_37_, customlogi0_.add_time as add_time3_37_, customlogi0_.add_user as add_user4_37_, customlogi0_.modify_ip as modify_i5_37_, customlogi0_.modify_time as modify_t6_37_, customlogi0_.modify_user as modify_u7_37_, customlogi0_.note as note8_37_, customlogi0_.agent_id as agent_id9_37_, customlogi0_.c_id as c_id10_37_, customlogi0_.close_functions as close_f11_37_, customlogi0_.com_point as com_poi12_37_, customlogi0_.comment as comment13_37_, customlogi0_.currency as currenc14_37_, customlogi0_.custom_id as custom_15_37_, customlogi0_.group_code as group_c16_37_, customlogi0_.group_type as group_t17_37_, customlogi0_.hide as hide18_37_, customlogi0_.leverage as leverag19_37_, customlogi0_.login as login20_37_, customlogi0_.login_status as login_s21_37_, customlogi0_.login_status_number as login_s22_37_, customlogi0_.platform as platfor23_37_, customlogi0_.pos as pos24_37_, customlogi0_.`type` as type25_37_, customlogi0_.valid as valid26_37_ from custom_login customlogi0_ where customlogi0_.custom_id=? and customlogi0_.login=? limit ?
  4269. 21:14:52.400 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [BIGINT] - [328]
  4270. 21:14:52.400 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [BIGINT] - [9057224]
  4271. 21:14:52.401 [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=?
  4272. 21:14:52.401 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4273. 21:14:52.401 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4274. 21:14:52.401 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4275. 21:14:52.402 [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=?
  4276. 21:14:52.403 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [INTEGER] - [0]
  4277. 21:14:52.403 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [VARCHAR] - [CNY]
  4278. 21:14:52.403 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [VARCHAR] - [USD]
  4279. 21:14:52.403 [http-nio-8004-exec-5] DEBUG org.hibernate.SQL - insert into finance_deposit (add_ip, add_time, add_user, modify_ip, modify_time, modify_user, note, approve_desc, approve_time, approve_user, status, activity_deposit, agent_id, amount, bank_code, bank_msg, c_id, callback_status, callback_time, channel_serial, cny, currency, custom_id, deposit_amount, deposit_currency, deposit_status, deposit_ticket, expire_time, form_url, login, login_type, name, operation_type, pay_type, platform, promo_code, rate, remittance_channel_code, remittance_channel_currency, remittance_channel_en_icon, remittance_channel_en_introduce, remittance_channel_en_name, remittance_channel_icon, remittance_channel_introduce, remittance_channel_name, remittance_channel_property, remittance_channel_request_url, serial, transform_amount, transform_currency, voucher_url) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  4280. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  4281. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 21:14:52 AST 2023]
  4282. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  4283. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  4284. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  4285. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  4286. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  4287. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  4288. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  4289. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  4290. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  4291. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  4292. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  4293. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  4294. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4295. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  4296. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  4297. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  4298. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  4299. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  4300. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  4301. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  4302. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  4303. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  4304. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  4305. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  4306. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  4307. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 07:14:52 AST 2023]
  4308. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [null]
  4309. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  4310. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  4311. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  4312. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  4313. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4314. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  4315. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  4316. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  4317. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4318. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  4319. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  4320. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  4321. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  4322. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  4323. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  4324. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  4325. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  4326. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  4327. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  4328. <p>&nbsp;</p>]
  4329. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  4330. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  4331. "uid":"3607251",
  4332. "payType":"1",
  4333. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  4334. "baseUrl":"https://api.maxpay666.com",
  4335. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  4336. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  4337. }]
  4338. 21:14:52.404 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  4339. 21:14:52.405 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309272114523034]
  4340. 21:14:52.405 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  4341. 21:14:52.405 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  4342. 21:14:52.405 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  4343. 21:14:52.406 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求加密处理--请求orderNo:PD202309272114523034_9057224,加密字符串为:money=49000&orderId=PD202309272114523034_9057224&payType=1&uid=3607251&uniqueCode=328&key=r6lEo73takTEO7MAoax64QXSai9ldysu,加密结果sign:79d5800f87415efd2db8fa5ecbae7a8c
  4344. 21:14:52.515 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - url:https://api.maxpay666.com/coin/pay/order/pay/checkout/counter,json:{"uid":"3607251","uniqueCode":"328","money":"49000","payType":"1","orderId":"PD202309272114523034_9057224","signature":"79d5800f87415efd2db8fa5ecbae7a8c"},body:{"code":1,"message":"成功","data":"https://syt.pwmch.com/created/?data=Yj0aDtU1vnyl3U0QgMAiRFWRAQTqaknwwYlzKW0m0kvc%2BNezloKGVrdBPM9hEya3UrI9BGNKcO6AM1EaNebJTw%3D%3D","success":true}
  4345. 21:14:52.515 [http-nio-8004-exec-5] INFO c.c.p.s.impl.BifutongPayServiceImpl - 支付请求,请求orderNo:PD202309272114523034_9057224,请求url:https://syt.pwmch.com/created/?data=Yj0aDtU1vnyl3U0QgMAiRFWRAQTqaknwwYlzKW0m0kvc%2BNezloKGVrdBPM9hEya3UrI9BGNKcO6AM1EaNebJTw%3D%3D
  4346. 21:14:52.515 [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=?
  4347. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [1] as [VARCHAR] - [111.33.225.241]
  4348. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [2] as [TIMESTAMP] - [Wed Sep 27 21:14:52 AST 2023]
  4349. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [3] as [BIGINT] - [328]
  4350. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [4] as [VARCHAR] - [null]
  4351. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [5] as [TIMESTAMP] - [null]
  4352. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [6] as [BIGINT] - [null]
  4353. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - [null]
  4354. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [8] as [VARCHAR] - [null]
  4355. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [9] as [TIMESTAMP] - [null]
  4356. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [10] as [BIGINT] - [null]
  4357. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [11] as [INTEGER] - [1]
  4358. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [12] as [INTEGER] - [0]
  4359. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [13] as [BIGINT] - [20095]
  4360. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [14] as [NUMERIC] - [7000]
  4361. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [15] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4362. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [16] as [VARCHAR] - [null]
  4363. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [17] as [BIGINT] - [500343]
  4364. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [18] as [INTEGER] - [0]
  4365. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [19] as [TIMESTAMP] - [null]
  4366. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [20] as [VARCHAR] - [null]
  4367. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [21] as [NUMERIC] - [49000.0000000000]
  4368. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [22] as [VARCHAR] - [USD]
  4369. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [23] as [BIGINT] - [328]
  4370. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [24] as [NUMERIC] - [7000]
  4371. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [25] as [VARCHAR] - [USD]
  4372. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [26] as [INTEGER] - [0]
  4373. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [27] as [VARCHAR] - [null]
  4374. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [28] as [TIMESTAMP] - [Thu Sep 28 07:14:52 AST 2023]
  4375. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [29] as [VARCHAR] - [https://syt.pwmch.com/created/?data=Yj0aDtU1vnyl3U0QgMAiRFWRAQTqaknwwYlzKW0m0kvc%2BNezloKGVrdBPM9hEya3UrI9BGNKcO6AM1EaNebJTw%3D%3D]
  4376. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [30] as [BIGINT] - [9057224]
  4377. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [31] as [BIGINT] - [1]
  4378. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [32] as [VARCHAR] - [shuo lv]
  4379. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [33] as [INTEGER] - [null]
  4380. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [34] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4381. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [35] as [VARCHAR] - [MT4]
  4382. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [36] as [VARCHAR] - [null]
  4383. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [37] as [NUMERIC] - [7.0000000000]
  4384. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [38] as [VARCHAR] - [BIFUTONG_PAY_KEY]
  4385. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [39] as [VARCHAR] - [USD]
  4386. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [40] as [VARCHAR] - []
  4387. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [41] as [VARCHAR] - []
  4388. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [42] as [VARCHAR] - [UnionPay]
  4389. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [43] as [VARCHAR] - [/file//remittance/channel/0b1c6ac84c1943e1a1ab5d1a84c14579.png]
  4390. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [44] as [VARCHAR] - [<p>入金注意事项:</p>
  4391. <p>我们目前新的银联入金系统需要您转账到个人银行账户,以下行为可能会导致入金无法到账,请在入金前仔细阅读:&nbsp;</p>
  4392. <p>1. 收转账的银行账户会随时变更。请在每次入金时,登陆客户专区的入金页面索取新的收款银行信息并进行转账。请勿使用以前保存的银行信息直接进行转账,否则这将导致款项丢失而无法找回;</p>
  4393. <p>2.&nbsp; 转账金额需与入金的金额一致,并且,禁止转账存款时使用第三者银行账户汇款,禁止汇款时添加任何备注信息,否则入金无法成功到账,并且难以追溯返回;</p>
  4394. <p>3.如若入金没到账, 请在24小时内使用注册邮箱发邮件到 mic_partnership@126.com 联系我们并提供支付凭证。</p>
  4395. <p>&nbsp;</p>]
  4396. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [45] as [VARCHAR] - [银联]
  4397. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [46] as [VARCHAR] - [{
  4398. "uid":"3607251",
  4399. "payType":"1",
  4400. "accessKey":"r6lEo73takTEO7MAoax64QXSai9ldysu",
  4401. "baseUrl":"https://api.maxpay666.com",
  4402. "callbackKey":"pzMQ4GELhoS5ajX7EkRGKd8SjGPuNO2g",
  4403. "cnyPayUrl":"/coin/pay/order/pay/checkout/counter"
  4404. }]
  4405. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [47] as [VARCHAR] - [/bifutong/pay]
  4406. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [48] as [VARCHAR] - [PD202309272114523034]
  4407. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [49] as [NUMERIC] - [49000.0000000000]
  4408. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [50] as [VARCHAR] - [CNY]
  4409. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [51] as [VARCHAR] - [null]
  4410. 21:14:52.516 [http-nio-8004-exec-5] TRACE o.h.type.descriptor.sql.BasicBinder - binding parameter [52] as [BIGINT] - [1029]
  4411. 21:15:39.798 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4412. 21:20:39.806 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4413. 21:25:39.815 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4414. 21:30:39.823 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4415. 21:35:39.832 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4416. 21:40:39.840 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4417. 21:45:39.848 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4418. 21:50:39.857 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4419. 21:55:39.865 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4420. 22:00:39.874 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4421. 22:05:39.882 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4422. 22:10:39.891 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4423. 22:15:39.899 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4424. 22:20:39.908 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4425. 22:25:39.916 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4426. 22:30:39.925 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4427. 22:35:39.934 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4428. 22:40:39.942 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4429. 22:45:39.950 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4430. 22:50:39.959 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4431. 22:55:39.967 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4432. 23:00:39.975 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4433. 23:05:39.983 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4434. 23:10:39.991 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4435. 23:15:40.000 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4436. 23:20:40.008 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4437. 23:25:40.016 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4438. 23:30:40.023 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4439. 23:35:40.032 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4440. 23:40:40.040 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4441. 23:45:40.047 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4442. 23:50:40.055 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration
  4443. 23:55:40.064 [AsyncResolver-bootstrap-executor-0] INFO c.n.d.s.r.aws.ConfigClusterResolver - Resolving eureka endpoints via configuration